-
Notifications
You must be signed in to change notification settings - Fork 4
/
test.js
146 lines (109 loc) · 2.85 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
const classList = require('./')
const test = require('tape')
class Element {
constructor (className = '') {
this.className = className
}
}
test('ClassList constructor', function (t) {
let el = new Element('a')
const ClassList = classList
let list = new ClassList(el) // class style
t.equal(list.length, 1)
t.equal(list[0], 'a')
list = classList(el) // function style
t.equal(list.length, 1)
t.equal(list[0], 'a')
el = new Element('')
list = classList(el)
t.equal(list.length, 0)
t.equal(list[0], undefined)
el = new Element('\t a b \n ')
list = classList(el)
t.equal(list.length, 2)
t.equal(list[0], 'a')
t.equal(list[1], 'b')
t.end()
})
test('ClassList#item', function (t) {
let el = new Element('a b c')
let list = classList(el)
t.equal(list.item(3), null)
t.equal(list.item(0), 'a')
t.equal(list.item(1), 'b')
t.equal(list.item(2), 'c')
t.end()
})
test('ClassList#add', function (t) {
let el = new Element('')
let list = classList(el)
t.equal(list.add('a'), undefined)
t.equal(list.length, 1)
t.equal(list[0], 'a')
t.equal(el.className, 'a')
t.equal(list.add('b', 'c'), undefined)
t.equal(list.length, 3)
t.equal(list[0], 'a')
t.equal(list[1], 'b')
t.equal(list[2], 'c')
t.equal(el.className, 'a b c')
t.end()
})
test('ClassList#remove', function (t) {
let el = new Element('a b c d')
let list = classList(el)
t.equal(list.remove('b'), undefined)
t.equal(list.length, 3)
t.equal(list[0], 'a')
t.equal(list[1], 'c')
t.equal(list[2], 'd')
t.equal(el.className, 'a c d')
t.equal(list.remove('c', 'd'), undefined)
t.equal(list.length, 1)
t.equal(list[0], 'a')
t.equal(list[1], undefined)
t.equal(el.className, 'a')
t.end()
})
test('ClassList#contains', function (t) {
let el = new Element('a b c')
let list = classList(el)
t.equal(list.length, 3)
t.ok(list.contains('a'))
t.notOk(list.contains('x'))
t.end()
})
test('ClassList#toggle', function (t) {
let el = new Element('a b c')
let list = classList(el)
t.ok(list.toggle('d'))
t.equal(list.length, 4)
t.equal(el.className, 'a b c d')
t.notOk(list.toggle('b'))
t.equal(list.length, 3)
t.equal(el.className, 'a c d')
t.notOk(list.toggle('a', false))
t.equal(list.length, 2)
t.equal(el.className, 'c d')
t.ok(list.toggle('a', true))
t.equal(list.length, 3)
t.equal(el.className, 'c d a')
t.notOk(list.toggle('b', false))
t.equal(list.length, 3)
t.equal(el.className, 'c d a')
t.ok(list.toggle('a', true))
t.equal(list.length, 3)
t.equal(el.className, 'c d a')
t.end()
})
test('ClassList#replace', function (t) {
let el = new Element('a b c')
let list = classList(el)
t.ok(list.replace('b', 'd'))
t.equal(list.length, 3)
t.equal(el.className, 'a d c')
t.notOk(list.replace('x', 'y'))
t.equal(list.length, 3)
t.equal(el.className, 'a d c')
t.end()
})