-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.js
183 lines (150 loc) · 5.59 KB
/
test.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
import assert from 'node:assert/strict'
import test from 'node:test'
import {h, s} from 'hastscript'
import {fromSelector} from 'hast-util-from-selector'
test('fromSelector', async function (t) {
await t.test('should expose the public api', async function () {
assert.deepEqual(
Object.keys(await import('hast-util-from-selector')).sort(),
['fromSelector']
)
})
await t.test('should throw w/ invalid selector', async function () {
assert.throws(function () {
fromSelector('@supports (transform-origin: 5% 5%) {}')
}, /Expected rule but "@" found/)
})
await t.test('should throw w/ multiple selector', async function () {
assert.throws(function () {
fromSelector('a, b')
}, /Cannot handle selector list/)
})
await t.test(
'should throw w/ next-sibling combinator at root',
async function () {
assert.throws(function () {
fromSelector('a + b')
}, /Cannot handle sibling combinator `\+` at root/)
}
)
await t.test(
'should throw w/ subsequent-sibling combinator at root',
async function () {
assert.throws(function () {
fromSelector('a ~ b')
}, /Cannot handle sibling combinator `~` at root/)
}
)
await t.test('should throw w/ attribute modifiers', async function () {
assert.throws(function () {
fromSelector('[foo%=bar]')
}, /Expected a valid attribute selector operator/)
})
await t.test('should throw w/ attribute modifiers', async function () {
assert.throws(function () {
fromSelector('[foo~=bar]')
}, /Cannot handle attribute equality modifier `~=`/)
})
await t.test('should throw on pseudo classes', async function () {
assert.throws(function () {
fromSelector(':active')
}, /Cannot handle pseudo class `active`/)
})
await t.test('should throw on pseudo class “functions”', async function () {
assert.throws(function () {
fromSelector(':nth-foo(2n+1)')
}, /Unknown pseudo-class/)
})
await t.test('should throw on invalid pseudo elements', async function () {
assert.throws(function () {
fromSelector('::before')
}, /Cannot handle pseudo element `before`/)
})
await t.test('should support no selector', async function () {
assert.deepEqual(fromSelector(), h(''))
})
await t.test('should support the empty string', async function () {
assert.deepEqual(fromSelector(''), h(''))
})
await t.test('should support the universal selector', async function () {
assert.deepEqual(fromSelector('*'), h(''))
})
await t.test('should support the descendant combinator', async function () {
assert.deepEqual(fromSelector('p i s'), h('p', h('i', h('s'))))
})
await t.test('should support the child combinator', async function () {
assert.deepEqual(fromSelector('p > i > s'), h('p', h('i', h('s'))))
})
await t.test('should support the next-sibling combinator', async function () {
assert.deepEqual(fromSelector('p i + s'), h('p', [h('i'), h('s')]))
})
await t.test(
'should support the subsequent-sibling combinator',
async function () {
assert.deepEqual(fromSelector('p i ~ s'), h('p', [h('i'), h('s')]))
}
)
await t.test('should support a tag name', async function () {
assert.deepEqual(fromSelector('a'), h('a'))
})
await t.test('should support a class', async function () {
assert.deepEqual(fromSelector('.a'), h('.a'))
})
await t.test('should support a tag and a class', async function () {
assert.deepEqual(fromSelector('a.b'), h('a.b'))
})
await t.test('should support an id', async function () {
assert.deepEqual(fromSelector('#b'), h('#b'))
})
await t.test('should support a tag and an id', async function () {
assert.deepEqual(fromSelector('a#b'), h('a#b'))
})
await t.test('should support all together', async function () {
assert.deepEqual(fromSelector('a#b.c.d'), h('a#b.c.d'))
})
await t.test('should use the last id', async function () {
assert.deepEqual(fromSelector('a#b#c'), h('a#c'))
})
await t.test('should normalize casing', async function () {
assert.equal(fromSelector('A').tagName, 'a')
})
await t.test('should support attributes (#1)', async function () {
assert.deepEqual(fromSelector('[a]'), h('', {a: true}))
})
await t.test('should support attributes (#2)', async function () {
assert.deepEqual(fromSelector('[a=b]'), h('', {a: 'b'}))
})
await t.test('should support class and class attributes', async function () {
assert.deepEqual(fromSelector('.a.b[class=c]'), h('.a.b.c'))
})
await t.test('should support space (#1)', async function () {
assert.equal(fromSelector('altGlyph').tagName, 'altglyph')
})
await t.test('should support space (#2)', async function () {
assert.equal(fromSelector('altGlyph', {space: 'svg'}).tagName, 'altGlyph')
})
await t.test('should support space (#3)', async function () {
const result = fromSelector('svg altGlyph')
const child = result.children[0]
assert(child.type === 'element')
assert.equal(child.tagName, 'altGlyph')
})
await t.test('should support space (#4)', async function () {
const result = fromSelector('div svg + altGlyph')
const child = result.children[1]
assert(child.type === 'element')
assert.equal(child.tagName, 'altglyph')
})
await t.test('should support space (#5)', async function () {
assert.deepEqual(
fromSelector(
'p svg[viewbox="0 0 10 10"] circle[cx="10"][cy="10"][r="10"] altGlyph'
),
h('p', [
s('svg', {viewBox: '0 0 10 10'}, [
s('circle', {cx: '10', cy: '10', r: '10'}, [s('altGlyph')])
])
])
)
})
})