-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathxml-prolog-tests.js
80 lines (72 loc) · 1.81 KB
/
xml-prolog-tests.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
var should = require('should');
var helpers = require('./helpers');
describe('XML Prologs', function() {
it('at beginning of document', function() {
var prologCount = 0, attributeCount = 0;
helpers.parseString('<?xml version="1.0" ?>', {
xmlProlog: function() {
prologCount++;
},
attribute: function(name, value, quote) {
name.should.equal('version');
value.should.equal('1.0');
attributeCount++;
}
});
prologCount.should.equal(1);
attributeCount.should.equal(1);
});
it('without attributes', function() {
var prologCount = 0, attributeCount = 0;
helpers.parseString('<?xml?>', {
xmlProlog: function() {
prologCount++;
},
attribute: function(name, value) {
attributeCount++;
}
});
prologCount.should.equal(1);
attributeCount.should.equal(0);
});
it('are case sensitive', function() {
var prologCount = 0, textCount = 0;
helpers.parseString('<?XML ?>', {
xmlProlog: function() {
prologCount++;
},
text: function(value) {
value.should.equal('<?XML ?>');
textCount++;
}
});
prologCount.should.equal(0);
textCount.should.equal(1);
});
it('in middle of document', function() {
var prologCount = 0, attributeCount = 0, openCount = 0, closeCount = 0;
helpers.parseString('<foo><?xml version="1.0" ?></foo>', {
xmlProlog: function() {
prologCount++;
},
openElement: function(name) {
name.should.equal('foo');
openCount++;
},
closeElement: function(name) {
name.should.equal('foo');
closeCount++;
},
attribute: function(name, value, quote) {
openCount.should.equal(1);
closeCount.should.equal(0);
name.should.equal('version');
value.should.equal('1.0');
attributeCount++;
}
});
prologCount.should.equal(1);
openCount.should.equal(1);
closeCount.should.equal(1);
});
});