This repository was archived by the owner on Dec 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxml-transformer-tests.js
113 lines (88 loc) · 3.78 KB
/
xml-transformer-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
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
'use strict';
var assert = require('assert');
var runner = require('./lib/runner');
var test = runner.test.bind(runner);
var createXMLTransformer = require('../src/xml-transformer');
runner.subject('createXMLTransformer');
var root;
runner.beforeEach(function() {
root = createXMLTransformer({ string: [
'<root>\n',
'\t<entry rel-src="/foo.html">\n\t\t<title><![CDATA[foo]]></title>\n\t</entry>\n',
'\t<entry rel-src="/bar.html">\n\t\t<title><![CDATA[bar]]></title>\n\t</entry>\n',
'\t<entry rel-src="/baz.html">\n\t\t<title><![CDATA[baz]]></title>\n\t</entry>\n',
'</root>\n',
].join('') });
root.findNext = function() {
this.next();
return this.find.apply(this, arguments);
};
});
runner.subject('#find');
test('returns first tag content by tag name', function() {
var title = root.find('title');
assert.equal(title , '<![CDATA[foo]]>', 'returns correct tag content');
assert.equal(root.content() , title, '#content returns same content');
});
test('returns first attribute content by tag, attribute names', function() {
var entry = root.find('entry');
var relSrc = root.find('entry', 'rel-src');
assert.equal(relSrc , '/foo.html', 'returns correct attribute content');
assert.equal(root.content() , entry, '#content returns tag transformer');
});
test('returns child transformer if content is another tag', function() {
var entry = root.find('entry');
assert.equal(entry.creator, createXMLTransformer, 'returns transformer');
assert.equal(root.content(), entry, '#content returns same instance');
assert.equal(root.find('entry'), entry, 're-find returns same instance');
});
runner.subject('#next');
test('updates internal cursor to end of current match', function() {
var oldCursor = root.cursor;
root.find('title');
assert(root.next(), 'returns bool for success');
assert(root.cursor > oldCursor, 'shifts cursor');
});
test('fails when end of string is reached', function() {
assert.equal(root.find('title'), '<![CDATA[foo]]>');
assert.equal(root.findNext('title'), '<![CDATA[bar]]>');
assert.equal(root.findNext('title'), '<![CDATA[baz]]>');
assert(root.next(), 'moves to end of string');
var oldCursor = root.cursor;
assert(!root.next(), 'returns bool for failure');
assert.equal(root.cursor, oldCursor, 'cursor stays still');
});
runner.subject('#skip');
test('removes current match from string', function() {
root.find('entry');
root.skip();
assert.equal(root.find('title'), '<![CDATA[bar]]>', 'now starts with second entry');
});
test('skips successive posts reliably', function() {
root.find('entry');
root.skip();
root.find('entry');
root.skip();
assert.equal(root.find('title'), '<![CDATA[baz]]>', 'now starts with third entry');
});
runner.subject('#transformContent');
test("transforms tag content based on 'from' and 'to' patterns", function() {
root.transformContent('title', { from: /f(oo)/, to: 'b$1' });
assert.equal(root.find('title'), '<![CDATA[boo]]>', 'partially replaces content');
root.transformContent('title', { to: 'boo' });
root.transformContent('title', { to: '$& boo' });
assert.equal(root.find('title'), 'boo boo', "defaults 'from' to full content");
});
test('transforms content of successive tags reliably', function() {
root.transformContent('title', { from: /foo/, to: '$& (foo)' }).next();
root.transformContent('title', { from: /bar/, to: '$& (bar)' }).next();
root.transformContent('title', { from: /baz/, to: '$& (baz)' });
root.cursor = 0;
assert.equal(root.find('title'), '<![CDATA[foo (foo)]]>', 'content remains as intended');
});
test('causes parent tag(s) to sync and update their strings', function() {
var entry = root.find('entry');
entry.transformContent('title', { to: 'new' });
assert.equal(root.find('title'), 'new', 'parent transformer updates');
});
runner.report();