-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
75 lines (65 loc) · 1.73 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
/*!
* mich-parse-selector <https://github.com/tunnckoCore/mich-parse-selector>
*
* Copyright (c) Charlike Mike Reagent <@tunnckoCore> (https://i.am.charlike.online)
* Released under the MIT license.
*/
/* jshint asi:true */
'use strict'
const test = require('mukla')
const michParseSelector = require('./index')
const expected = (obj) => Object.assign({
type: 'element',
tagName: 'div',
properties: {},
children: []
}, obj || {})
test('should return a div node without selector', (done) => {
const node = michParseSelector()
test.deepStrictEqual(node, expected())
done()
})
test('should return an element with a tag name when given a tag name', (done) => {
const node = michParseSelector('foo')
test.deepStrictEqual(node, expected({
tagName: 'foo'
}))
done()
})
test('should return a div with a class', (done) => {
test.deepStrictEqual(michParseSelector('.quxie'), expected({
tagName: 'div',
properties: { className: ['quxie'] }
}))
done()
})
test('should return a section element with an id', (done) => {
const section = michParseSelector('section#hero')
test.deepStrictEqual(section, expected({
properties: { id: 'hero' },
tagName: 'section'
}))
done()
})
test('should support to define multiple classes', (done) => {
const paragraph = michParseSelector('p.foo#header.btn-large.btn')
test.deepStrictEqual(paragraph, expected({
tagName: 'p',
properties: {
id: 'header',
className: ['foo', 'btn-large', 'btn']
}
}))
done()
})
test('should only respect last defined id', (done) => {
const node = expected({
tagName: 'div',
properties: {
id: 'qux'
}
})
const link = michParseSelector('#a#bar#qux')
test.deepStrictEqual(link, node)
done()
})