deno.land / x / urlcat@v3.1.0 / test / subst.ts

نووسراو ببینە
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
import { subst } from '../src';
describe('subst', () => {
it('Returns empty string if the template is empty and there are no params', () => { const expected = ''; const actual = subst('', {}); expect(actual).toBe(expected); });
it('Returns empty string if the template is empty but a param is passed', () => { const expected = ''; const actual = subst('', { p: 1 }); expect(actual).toBe(expected); });
it('Substitutes all params present in the object passed', () => { const expected = '/1/a/false'; const actual = subst('/:p/:q/:r', { p: 1, q: 'a', r: false }); expect(actual).toBe(expected); });
it('Allows parameters at the beginning of the template', () => { const expected = '42'; const actual = subst(':p', { p: 42 }); expect(actual).toBe(expected); });
it('Renders boolean (true) params', () => { const expected = 'true'; const actual = subst(':p', { p: true }); expect(actual).toBe(expected); });
it('Renders boolean (false) params', () => { const expected = 'false'; const actual = subst(':p', { p: false }); expect(actual).toBe(expected); });
it('Renders string params', () => { const expected = 'test'; const actual = subst(':p', { p: 'test' }); expect(actual).toBe(expected); });
it('Renders number params', () => { const expected = '234'; const actual = subst(':p', { p: 234 }); expect(actual).toBe(expected); });
it('Throws if a param is an array', () => { expect(() => subst(':p', { p: [] })) .toThrowError('Path parameter p cannot be of type object. Allowed types are: boolean, string, number.'); });
it('Throws if a param is an object', () => { expect(() => subst(':p', { p: {} })) .toThrowError('Path parameter p cannot be of type object. Allowed types are: boolean, string, number.'); });
it('Throws if a param is a symbol', () => { expect(() => subst(':p', { p: Symbol() })) .toThrowError('Path parameter p cannot be of type symbol. Allowed types are: boolean, string, number.'); });
it('Throws if a param is missing', () => { expect(() => subst(':p', {})).toThrow(); });});
urlcat

Version Info

Tagged at
a year ago