-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlayer.spec.js
196 lines (184 loc) · 3.78 KB
/
layer.spec.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
import { test } from 'uvu'
import * as assert from 'uvu/assert'
import { layer_tree } from '../src/index.js'
test('single anonymous layer without body', () => {
let actual = layer_tree('@layer;')
let expected = [
{
name: '__anonymous-1__',
children: [],
locations: [{ line: 1, column: 1, start: 0, end: 7 }]
},
]
assert.equal(actual, expected)
})
test('single anonymous layer with body', () => {
let actual = layer_tree('@layer {}')
let expected = [
{
name: '__anonymous-1__',
children: [],
locations: [{ line: 1, column: 1, start: 0, end: 9 }]
},
]
assert.equal(actual, expected)
})
test('single named layer without body', () => {
let actual = layer_tree('@layer first;')
let expected = [
{
name: 'first',
children: [],
locations: [{ line: 1, column: 1, start: 0, end: 13 }]
},
]
assert.equal(actual, expected)
})
test('single named layer with body', () => {
let actual = layer_tree('@layer first {}')
let expected = [
{
name: 'first',
children: [],
locations: [{ line: 1, column: 1, start: 0, end: 15 }]
},
]
assert.equal(actual, expected)
})
test('multiple named layers in one line', () => {
let actual = layer_tree(`@layer first, second;`)
let expected = [
{
name: 'first',
children: [],
locations: [{ line: 1, column: 1, start: 0, end: 21 }]
},
{
name: 'second',
children: [],
locations: [{ line: 1, column: 1, start: 0, end: 21 }]
},
]
assert.equal(actual, expected)
})
test('repeated use of the same layer name', () => {
let actual = layer_tree(`
@layer first {}
@layer first {}
`)
let expected = [
{
name: 'first',
children: [],
locations: [
{ line: 2, column: 3, start: 3, end: 18 },
{ line: 3, column: 3, start: 21, end: 36 }
]
},
]
assert.equal(actual, expected)
})
test('nested layers', () => {
let actual = layer_tree(`
@layer first {
@layer second {
@layer third {}
@media all {}
@layer fourth {}
}
}
`)
let expected = [
{
name: 'first',
locations: [{ line: 2, column: 3, start: 3, end: 104 }],
children: [
{
name: 'second',
locations: [{ line: 3, column: 4, start: 21, end: 100 }],
children: [
{
name: 'third',
locations: [{ line: 4, column: 5, start: 41, end: 56 }],
children: [],
},
{
name: 'fourth',
locations: [{ line: 6, column: 5, start: 79, end: 95 }],
children: [],
},
],
},
],
},
]
assert.equal(actual, expected)
})
test('nested layers with anonymous layers', () => {
let actual = layer_tree(`
@layer {
@layer {}
}
`)
let expected = [
{
name: '__anonymous-1__',
locations: [{ line: 2, column: 3, start: 3, end: 28 }],
children: [
{
name: '__anonymous-2__',
children: [],
locations: [{ line: 3, column: 4, start: 15, end: 24 }],
},
],
},
]
assert.equal(actual, expected)
})
test('consecutive anonymous layers', () => {
let actual = layer_tree(`
@layer {}
@layer {}
`)
let expected = [
{
name: '__anonymous-1__',
locations: [{ line: 2, column: 3, start: 3, end: 12 }],
children: [],
},
{
name: '__anonymous-2__',
locations: [{ line: 3, column: 3, start: 15, end: 24 }],
children: [],
},
]
assert.equal(actual, expected)
})
test('nested layers with anonymous layers and duplicate names', () => {
let actual = layer_tree(`
@layer {
@layer first {}
}
@layer first {}
`)
let expected = [
{
name: '__anonymous-1__',
locations: [{ line: 2, column: 3, start: 3, end: 34 }],
children: [
{
name: 'first',
children: [],
locations: [{ line: 3, column: 4, start: 15, end: 30 }],
},
]
},
{
name: 'first',
locations: [{ line: 6, column: 3, start: 38, end: 53 }],
children: [],
},
]
assert.equal(actual, expected)
})
test.run()