-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathmalformed-tests.js
80 lines (68 loc) · 1.69 KB
/
malformed-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('Malformed HTML', function() {
it('unescaped < in text should not be an open tag', function() {
var openCount = 0, textCount = 0;
helpers.parseString('5 < 4 == false', {
openElement: function(name) {
openCount++;
},
text: function(value, context) {
value.should.equal('5 < 4 == false');
textCount++;
}
});
openCount.should.equal(0);
textCount.should.equal(1);
});
it('< followed by whitespace is not a tag', function() {
var openCount = 0, textCount = 0;
helpers.parseString('< foo>', {
openElement: function(name) {
openCount++;
},
text: function(value) {
value.should.equal('< foo>');
textCount++;
}
});
openCount.should.equal(0);
textCount.should.equal(1);
});
it('< followed by ! but not cdata or comment should be a text node', function() {
var openCount = 0, textCount = 0, cdataCount = 0, commentCount = 0;
helpers.parseString('<! foo', {
openElement: function(name) {
openCount++;
},
cdata: function(name) {
cdataCount++;
},
comment: function(name) {
commentCount++;
},
text: function(value) {
value.should.equal('<! foo');
textCount++;
}
});
textCount.should.equal(1);
openCount.should.equal(0);
cdataCount.should.equal(0);
commentCount.should.equal(0);
});
it('</ not followed by a letter is text', function() {
var closeCount = 0, textCount = 0;
helpers.parseString('</ foo>', {
closeElement: function(name) {
closeCount++;
},
text: function(value) {
value.should.equal('</ foo>');
textCount++;
}
});
textCount.should.equal(1);
closeCount.should.equal(0);
});
});