-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRewrite.js
258 lines (213 loc) · 8.8 KB
/
Rewrite.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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
'use strict';
require('mocha');
var assert = require('assert');
var Rewriter = require('..');
var rewriter;
describe('Rewriter', function() {
describe('ctor', function() {
beforeEach(function() {
rewriter = new Rewriter();
});
it('should export a function', function() {
assert.equal(typeof Rewriter, 'function');
});
it('should instantiate', function() {
assert(new Rewriter() instanceof Rewriter);
});
it('should expose a static .Rule method', function() {
assert.equal(typeof Rewriter.Rule, 'function');
});
it('should expose a .Rule method on the instance', function() {
assert.equal(typeof rewriter.Rule, 'function');
});
it('should expose a .rule method', function() {
assert.equal(typeof rewriter.rule, 'function');
});
it('should expose a .match method', function() {
assert.equal(typeof rewriter.match, 'function');
});
it('should expose a .rewrite method', function() {
assert.equal(typeof rewriter.rewrite, 'function');
});
});
describe('.rule', function() {
beforeEach(function() {
rewriter = new Rewriter();
});
it('should add a rule to rewriter.rules', function() {
rewriter.rule('a', 'b');
rewriter.rule('c', 'd');
assert.equal(rewriter.rules.length, 2);
});
it('should add rules passed on ctor options to rewriter.rules', function() {
rewriter = new Rewriter({
rules: [
new rewriter.Rule('a', 'b'),
new rewriter.Rule('c', 'd')
]
});
assert.equal(rewriter.rules.length, 2);
});
});
describe('.match', function() {
beforeEach(function() {
rewriter = new Rewriter({strict: true});
});
function isMatch(pattern, structure, filepath, fn) {
var file = rewriter.normalizeFile(filepath, rewriter.options);
return rewriter.match(new rewriter.Rule(pattern, structure, fn), file);
}
it('should return true if a path matches a rule pattern', function() {
assert(isMatch('*', ':stem', 'foo/bar'));
assert(isMatch('foo/*', ':stem', 'foo/bar'));
assert(isMatch('*/*', ':stem', 'foo/bar'));
assert(isMatch(':a/:b', ':stem', 'foo/bar'));
});
it('should return true if a validation function returns true', function() {
assert(isMatch('*', ':stem', 'foo/bar', function() {
return true;
}));
assert(isMatch('foo/*', ':stem', 'foo/bar', function() {
return true;
}));
assert(isMatch('*/*', ':stem', 'foo/bar', function() {
return true;
}));
assert(isMatch(':a/:b', ':stem', 'foo/bar', function() {
return true;
}));
});
it('should return false if a validation function returns false', function() {
assert(!isMatch('*', ':stem', 'foo/bar', function() {
return false;
}));
assert(!isMatch('foo/*', ':stem', 'foo/bar', function() {
return false;
}));
assert(!isMatch('*/*', ':stem', 'foo/bar', function() {
return false;
}));
assert(!isMatch(':a/:b', ':stem', 'foo/bar', function() {
return false;
}));
});
it('should return false if a path does not match a rule pattern', function() {
assert(!isMatch('abc', ':stem', 'foo/bar'));
assert(!isMatch('bar/foo', ':stem', 'foo/bar'));
assert(!isMatch('*/*/', ':stem', 'foo/bar'));
assert(!isMatch(':a/:b/:c', ':stem', 'foo/bar'));
});
});
describe('.rewrite', function() {
beforeEach(function() {
rewriter = new Rewriter({strict: true});
});
it('should rewrite a file.path using a rule with regex', function() {
rewriter.rule(/\/content\/posts/, 'blog/:stem/index.html');
var actual = rewriter.rewrite({path: '/content/posts/first-post.md'});
assert.equal(actual, 'blog/first-post/index.html');
});
it('should expose match params as the second argument', function() {
rewriter.rule('/content/:folder/*', ':folder/:stem/index.html', function(file, params) {
assert.deepEqual(params, {0: 'first-post.md', folder: 'posts'});
file.data = Object.assign({}, file.data, params);
return true;
});
var actual = rewriter.rewrite({path: '/content/posts/first-post.md'});
assert.equal(actual, 'posts/first-post/index.html');
});
it('should expose match params as the second argument', function() {
rewriter.rule('/content/:folder/*/*.md', ':folder/:0/:stem/index.html', function(file, params) {
assert.deepEqual(params, {0: 'abc', 1: 'first-post', folder: 'posts'});
file.data = Object.assign({}, file.data, params);
return true;
});
var actual = rewriter.rewrite({path: '/content/posts/abc/first-post.md'});
assert.equal(actual, 'posts/abc/first-post/index.html');
});
it('should add data to the context in the callback', function() {
rewriter.rule('/content/:folder/*/*.md', ':folder/:foo/:stem/index.html', function(file, params) {
assert.deepEqual(params, {0: 'abc', 1: 'first-post', folder: 'posts'});
params.foo = params[0];
file.data = Object.assign({}, file.data, params);
return true;
});
var actual = rewriter.rewrite({path: '/content/posts/abc/first-post.md'});
assert.equal(actual, 'posts/abc/first-post/index.html');
});
it('should add data to the context in the callback', function() {
rewriter.rule('/content/:folder/*/*.md', ':folder/:foo/:stem/index.html', function(file, params) {
assert.deepEqual(params, {0: 'abc', 1: 'first-post', folder: 'posts'});
params.foo = params[0];
file.data = Object.assign({}, file.data, params);
return true;
});
var actual = rewriter.rewrite({path: '/content/posts/abc/first-post.md'});
assert.equal(actual, 'posts/abc/first-post/index.html');
});
it('should use helpers', function() {
rewriter.data.xyz = 'abc';
rewriter.helper('foo', function(options) {
return this.context.xyz;
});
rewriter.rule('posts/:one/:two.md', ':foo/:stem/index.html', function(file, params) {
assert.deepEqual(params, {one: 'a', two: 'b'});
file.data = Object.assign({}, file.data, params);
return true;
});
var actual = rewriter.rewrite({path: 'posts/a/b.md'});
assert.equal(actual, 'abc/b/index.html');
});
it('should use hash arguments', function() {
rewriter.data.whatever = 'abc';
rewriter.helper('foo', function(options) {
return options.hash.name;
});
rewriter.rule('posts/:one/:two.md', ':foo(name=whatever)/:stem/index.html', function(file, params) {
assert.deepEqual(params, {one: 'a', two: 'b'});
file.data = Object.assign({}, file.data, params);
return true;
});
var actual = rewriter.rewrite({path: 'posts/a/b.md'});
assert.equal(actual, 'abc/b/index.html');
});
it('should rewrite a file.path using match params', function() {
rewriter.rule('/content/:folder/*', ':folder/:stem/index.html', function(file, params) {
file.data = Object.assign({}, file.data, params);
});
var actual = rewriter.rewrite({path: '/content/posts/first-post.md'});
assert.equal(actual, 'posts/first-post/index.html');
});
it('should now rewrite a file.path when the function returns false', function() {
rewriter.rule('/content/:folder/*', ':folder/:stem/index.html', function(file) {
return false;
});
var actual = rewriter.rewrite({path: '/content/posts/first-post.md'});
assert.equal(actual, '/content/posts/first-post.md');
});
it('should rewrite a file.path using a preset', function() {
rewriter.preset('blog', ':folder/:stem/index.html');
rewriter.rule('/content/:folder/*', 'blog', function(file, params) {
file.data = Object.assign({}, file.data, params);
});
var actual = rewriter.rewrite({path: '/content/posts/first-post.md'});
assert.equal(actual, 'posts/first-post/index.html');
});
it('should create params from path segments', function() {
rewriter.preset('blog', ':b/:stem/index.html');
rewriter.rule('/content/:a/:b/:c/*', 'blog', function(file, params) {
file.data = Object.assign({}, file.data, params);
});
var actual = rewriter.rewrite({path: '/content/foo/bar/baz/first-post.md'});
assert.equal(actual, 'bar/first-post/index.html');
});
it('should use the last match when there are duplicate match groups', function() {
rewriter.preset('blog', ':a/:stem/index.html');
rewriter.rule('/content/:a/:a/:a/*', 'blog', function(file, params) {
file.data = Object.assign({}, file.data, params);
});
var actual = rewriter.rewrite({path: '/content/foo/bar/baz/first-post.md'});
assert.equal(actual, 'baz/first-post/index.html');
});
});
});