-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathutils.spec.js
133 lines (121 loc) · 7.56 KB
/
utils.spec.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
describe('utils', function () {
describe('.assign', function () {
it('emulates Object.assign', function () {
expect(yea.utils.assign({})).to.deep.equal({});
expect(yea.utils.assign({}, {})).to.deep.equal({});
expect(yea.utils.assign({ foo: 'bar' }, { yes: 'asd' })).to.deep.equal({ foo: 'bar', yes: 'asd' });
expect(yea.utils.assign({ foo: 'bar' }, { foo: 'asd' })).to.deep.equal({ foo: 'asd' });
});
it('mutates first argument, like Object.assign', function () {
var obj = {};
var assigned = yea.utils.assign(obj, { simple: 'yes' });
expect(assigned).to.equal(obj);
expect(obj).to.deep.equal({ simple: 'yes' });
});
});
describe('.toQueryString', function () {
// Goal is to follow querystring.stringify behaviour:
// @see https://nodejs.org/api/querystring.html#querystring_querystring_stringify_obj_sep_eq_options
// Also useful is the tests in widely popular package query-string:
// @see https://github.com/sindresorhus/query-string/blob/de0536a7be7029a93936d2610f1b08606ac93ce7/test/stringify.js
it('stringifies an object', function () {
expect(yea.utils.toQueryString({})).to.equal('');
expect(yea.utils.toQueryString({ foo: 'bar' })).to.equal('foo=bar');
expect(yea.utils.toQueryString({ foo: 'bar', baz: 'xyz' })).to.equal('foo=bar&baz=xyz');
});
it('encodes keys and values', function () {
expect(yea.utils.toQueryString({ foo: 'bar xyz' })).to.equal('foo=bar%20xyz');
expect(yea.utils.toQueryString({ foo: 'bar&xyz' })).to.equal('foo=bar%26xyz');
expect(yea.utils.toQueryString({ foo: 'bar\'xyz' })).to.equal('foo=bar\'xyz');
expect(yea.utils.toQueryString({ 'bar xyz': 'bar' })).to.equal('bar%20xyz=bar');
expect(yea.utils.toQueryString({ 'bar&xyz': 'bar' })).to.equal('bar%26xyz=bar');
expect(yea.utils.toQueryString({ 'bar\'xyz': 'bar' })).to.equal('bar\'xyz=bar');
});
it('stringifies array values', function () {
expect(yea.utils.toQueryString({ foo: [] })).to.equal('');
expect(yea.utils.toQueryString({ foo: ['one', 'two'] })).to.equal('foo=one&foo=two');
expect(yea.utils.toQueryString({ foo: ['two', 'one'] })).to.equal('foo=two&foo=one');
});
it('stringifies objects as values', function () {
expect(yea.utils.toQueryString({ foo: {} })).to.equal('foo=%5Bobject%20Object%5D');
expect(yea.utils.toQueryString({ foo: { bar: 'xyz' } })).to.equal('foo=%5Bobject%20Object%5D');
});
it('regards undefined values as missing', function () {
expect(yea.utils.toQueryString({ foo: undefined })).to.equal('');
expect(yea.utils.toQueryString({ foo: undefined, bar: 'xyz' })).to.equal('bar=xyz');
expect(yea.utils.toQueryString({ foo: [undefined] })).to.equal('');
expect(yea.utils.toQueryString({ foo: ['one', undefined, 'three'] })).to.equal('foo=one&foo=three');
});
it('stringifies null values as ', function () {
expect(yea.utils.toQueryString({ foo: null })).to.equal('foo');
expect(yea.utils.toQueryString({ foo: null, bar: 'xyz' })).to.equal('foo&bar=xyz');
expect(yea.utils.toQueryString({ foo: [null] })).to.equal('foo');
expect(yea.utils.toQueryString({ foo: ['one', null, 'three'] })).to.equal('foo=one&foo&foo=three');
});
});
describe('.replaceUrlParams', function () {
it('replaces param placeholders in URL', function () {
expect(yea.utils.replaceUrlParams('', {})).to.equal('');
expect(yea.utils.replaceUrlParams('http://example.com', {})).to.equal('http://example.com');
expect(yea.utils.replaceUrlParams('/accounts', {})).to.equal('/accounts');
expect(yea.utils.replaceUrlParams('/accounts/:accountId', {})).to.equal('/accounts/:accountId');
expect(yea.utils.replaceUrlParams('/accounts/:accountId', { accountId: 123 })).to.equal('/accounts/123');
expect(yea.utils.replaceUrlParams('/accounts/:accountId/info', { accountId: 123 })).to.equal('/accounts/123/info');
expect(yea.utils.replaceUrlParams('/accounts/:account-id', { 'account-id': 123 })).to.equal('/accounts/123');
expect(yea.utils.replaceUrlParams('/accounts/:AccountId', { 'accountId': 123 })).to.equal('/accounts/:AccountId');
expect(yea.utils.replaceUrlParams('/:repeat/:repeat', { repeat: 123 })).to.equal('/123/123');
});
});
describe('.createUrl', function () {
it('creates URL from baseUrl, path and query', function () {
expect(yea.utils.createUrl('', 'accounts')).to.equal('accounts');
expect(yea.utils.createUrl('', '/accounts')).to.equal('/accounts');
expect(yea.utils.createUrl('', 'https://example.com')).to.equal('https://example.com');
expect(yea.utils.createUrl('https://example.com', 'accounts')).to.equal('https://example.com/accounts');
expect(yea.utils.createUrl('https://example.com/', 'accounts')).to.equal('https://example.com/accounts');
expect(yea.utils.createUrl('https://example.com', '/accounts')).to.equal('https://example.com/accounts');
expect(yea.utils.createUrl('https://example.com/', '/accounts')).to.equal('https://example.com/accounts');
expect(yea.utils.createUrl('https://example.com/nested', 'accounts')).to.equal('https://example.com/nested/accounts');
expect(yea.utils.createUrl('https://example.com/nested', '/accounts')).to.equal('https://example.com/nested/accounts');
expect(yea.utils.createUrl('https://example.com/nested/', 'accounts')).to.equal('https://example.com/nested/accounts');
expect(yea.utils.createUrl('https://example.com/nested/foo', 'accounts')).to.equal('https://example.com/nested/foo/accounts');
expect(yea.utils.createUrl('https://example.com', '')).to.equal('https://example.com');
expect(yea.utils.createUrl('https://example.com', '', 'foo=bar')).to.equal('https://example.com?foo=bar');
expect(yea.utils.createUrl('https://example.com', 'accounts', 'foo=bar')).to.equal('https://example.com/accounts?foo=bar');
expect(yea.utils.createUrl('', 'accounts', 'foo=bar')).to.equal('accounts?foo=bar');
});
});
describe('.parsePropPath', function () {
it('parses path', function () {
// Simple dot notation
expect(yea.utils.parsePropPath('data')).to.deep.equal(['data']);
expect(yea.utils.parsePropPath('headers')).to.deep.equal(['headers']);
expect(yea.utils.parsePropPath('data.accounts')).to.deep.equal(['data', 'accounts']);
// Array indices
expect(yea.utils.parsePropPath('data.accounts[0]')).to.deep.equal(['data', 'accounts', '0']);
expect(yea.utils.parsePropPath('data.accounts[1]')).to.deep.equal(['data', 'accounts', '1']);
});
});
describe('.applyPropPath', function () {
it('picks requested value from object', function () {
var response = {
headers: {
'content-type': 'application/json'
},
data: {
accounts: [
{ name: 'Account 1' },
{ name: 'Account 2' }
]
}
};
expect(yea.utils.applyPropPath(response, [])).to.equal(response);
expect(yea.utils.applyPropPath(response, ['headers'])).to.equal(response.headers);
expect(yea.utils.applyPropPath(response, ['data'])).to.equal(response.data);
expect(yea.utils.applyPropPath(response, ['data', 'accounts'])).to.equal(response.data.accounts);
expect(yea.utils.applyPropPath(response, ['data', 'accounts', '0'])).to.equal(response.data.accounts['0']);
expect(yea.utils.applyPropPath(response, ['data', 'accounts', '1'])).to.equal(response.data.accounts['1']);
expect(yea.utils.applyPropPath(response, ['headers', 'content-type'])).to.equal(response.headers['content-type']);
});
});
});