-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
192 lines (164 loc) · 5.78 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
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
import test from 'ava';
import castArray from './lib/util/cast-array';
import createUrl from './lib/util/create-url';
import {Sitemap, SitemapIndex} from '.';
// ---
// lib/util/cast-array
// ---
test('lib/util/cast-array - with some value', t => {
t.deepEqual(castArray(1), [1]);
t.deepEqual(castArray('2'), ['2']);
t.deepEqual(castArray(1 + '2'), ['12']);
t.deepEqual(castArray(null), [null]);
t.deepEqual(castArray({}), [{}]);
});
test('lib/util/cast-array - with empty array', t => {
t.deepEqual(castArray([]), []);
});
test('lib/util/cast-array - with non-empty array', t => {
t.deepEqual(castArray([1, '2', [3]]), [1, '2', [3]]);
});
test('lib/util/cast-array - no args should cast array with undefined', t => {
t.deepEqual(castArray(), [undefined]);
});
// ---
// lib/util/create-url
// ---
test('lib/util/create-url - string', t => {
const url = 'foo';
t.is(createUrl(url), 'foo');
});
test('lib/util/create-url - string with base', t => {
const url = 'foo';
t.is(createUrl(url, 'http://example.com'), 'http://example.com/foo');
});
test('lib/util/create-url - as array of strings', t => {
const url = ['foo', 'bar'];
t.is(createUrl(url), 'foo/bar');
});
test('lib/util/create-url - as array of strings with base', t => {
const url = ['foo', 'bar'];
t.is(createUrl(url, 'http://example.com'), 'http://example.com/foo/bar');
});
// ---
// Sitemap#constructor
// ---
test('Sitemap#constructor() - without urls or options', t => {
t.deepEqual(new Sitemap().urls, []);
t.deepEqual(new Sitemap().base, '');
});
test('Sitemap#constructor() - with urls', t => {
t.deepEqual(new Sitemap([{loc: 'foo'}]).urls, [{loc: 'foo'}]);
});
test('Sitemap#constructor() - with urls and base option', t => {
const urls = [{loc: 'foo'}];
const options = {base: 'https://example.com'};
const sitemap = new Sitemap(urls, options);
t.deepEqual(sitemap.urls, [{loc: 'foo'}]);
t.is(sitemap.base, 'https://example.com');
});
// ---
// toString
// ---
test('Sitemap#toString() - without urls or options', t => {
const sitemap = new Sitemap();
t.is(
sitemap.toString(),
'<?xml version="1.0" encoding="UTF-8"?>' +
'<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"></urlset>'
);
});
test('Sitemap#toString() - with urls', t => {
const sitemap = new Sitemap([{loc: 'foo'}, {loc: 'bar'}]);
t.is(
sitemap.toString(),
'<?xml version="1.0" encoding="UTF-8"?>' +
'<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">' +
'<url><loc>foo</loc></url><url><loc>bar</loc></url></urlset>'
);
});
test('Sitemap#toString() - with urls as array', t => {
const sitemap = new Sitemap([{loc: ['foo', '/']}, {loc: ['foo', 'bar', '/']}]);
t.is(
sitemap.toString(),
'<?xml version="1.0" encoding="UTF-8"?>' +
'<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">' +
'<url><loc>foo/</loc></url><url><loc>foo/bar/</loc></url></urlset>'
);
});
test('Sitemap#toString() - with urls and base', t => {
const urls = [{loc: ''}, {loc: '/'}, {loc: 'foo'}, {loc: 'bar', priority: 0.5}];
const options = {base: 'https://example.com'};
const sitemap = new Sitemap(urls, options);
t.is(
sitemap.toString(),
'<?xml version="1.0" encoding="UTF-8"?>' +
'<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">' +
'<url><loc>https://example.com</loc></url>' +
'<url><loc>https://example.com/</loc></url>' +
'<url><loc>https://example.com/foo</loc></url>' +
'<url><loc>https://example.com/bar</loc><priority>0.5</priority></url>' +
'</urlset>'
);
});
// ---
// Sitemap#constructor
// ---
test('SitemapIndex#constructor() - without urls or options', t => {
t.deepEqual(new SitemapIndex().sitemaps, []);
t.deepEqual(new SitemapIndex().base, '');
});
test('SitemapIndex#constructor() - with sitemaps', t => {
t.deepEqual(new SitemapIndex([{loc: 'foo'}]).sitemaps, [{loc: 'foo'}]);
});
test('SitemapIndex#constructor() - with sitemaps and base option', t => {
const sitemaps = [{loc: 'foo'}];
const options = {base: 'https://example.com'};
const sitemap = new SitemapIndex(sitemaps, options);
t.deepEqual(sitemap.sitemaps, [{loc: 'foo'}]);
t.is(sitemap.base, 'https://example.com');
});
// ---
// toString
// ---
test('SitemapIndex#toString() - without sitemaps or options', t => {
const sitemap = new SitemapIndex();
t.is(
sitemap.toString(),
'<?xml version="1.0" encoding="UTF-8"?>' +
'<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"></sitemapindex>'
);
});
test('SitemapIndex#toString() - with sitemaps', t => {
const sitemap = new SitemapIndex([{loc: 'foo'}, {loc: 'bar'}]);
t.is(
sitemap.toString(),
'<?xml version="1.0" encoding="UTF-8"?>' +
'<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">' +
'<sitemap><loc>foo</loc></sitemap><sitemap><loc>bar</loc></sitemap></sitemapindex>'
);
});
test('SitemapIndex#toString() - with sitemap urls as array', t => {
const sitemap = new SitemapIndex([{loc: ['foo', '/']}, {loc: ['foo', 'bar', '/']}]);
t.is(
sitemap.toString(),
'<?xml version="1.0" encoding="UTF-8"?>' +
'<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">' +
'<sitemap><loc>foo/</loc></sitemap><sitemap><loc>foo/bar/</loc></sitemap></sitemapindex>'
);
});
test('SitemapIndex#toString() - with sitemaps and base', t => {
const sitemaps = [{loc: ''}, {loc: '/'}, {loc: 'foo'}, {loc: 'bar', lastmod: '1985-10-25'}];
const options = {base: 'https://example.com'};
const sitemap = new SitemapIndex(sitemaps, options);
t.is(
sitemap.toString(),
'<?xml version="1.0" encoding="UTF-8"?>' +
'<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">' +
'<sitemap><loc>https://example.com</loc></sitemap>' +
'<sitemap><loc>https://example.com/</loc></sitemap>' +
'<sitemap><loc>https://example.com/foo</loc></sitemap>' +
'<sitemap><loc>https://example.com/bar</loc><lastmod>1985-10-25</lastmod></sitemap>' +
'</sitemapindex>'
);
});