-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.spec.ts
157 lines (114 loc) · 3.46 KB
/
utils.spec.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
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
import * as utils from '../src/utils/utils'
describe('Utility functions ', () => {
it('should be able to trim trailing slash', () => {
let testString = 'fancy/';
let testString2 = 'fancy';
expect(utils.stripTrailingSlash(testString)).toEqual(testString2);
expect(utils.stripTrailingSlash(testString2)).toEqual(testString2);
});
it('should return complete Url', () => {
let baseUrl = 'www.google.com';
let param = 'id';
expect(utils.urlHelper(baseUrl, param)).toEqual('www.google.com/id');
});
it('should set key,value to localstorage', () => {
let key = 'utilTestKey';
let value = 'utilTestValue';
utils.setLocalStorage(key, value);
expect(window.localStorage.hasOwnProperty('utilTestKey')).toBeTruthy();
expect(window.localStorage.getItem('utilTestKey')).toEqual('utilTestValue');
window.localStorage.removeItem(key);
expect(window.localStorage.hasOwnProperty('utilTestKey')).toBeFalsy();
});
it("should return an extended Url", () => {
let params = {
pageSize: 3,
sort: "DESC"
};
let baseUrl = "mockURL";
let result = utils.queryParamsUrlHelper(baseUrl, params);
expect(result).toBe('mockURL?pageSize=3&sort=DESC');
});
it("should return all Parameters", () => {
let params = {
pageSize: 1,
pageNumber: 1,
filter: "testString",
sort: "ASC",
deep: true,
meta: true
};
let baseUrl = "mockURL";
let result = utils.queryParamsUrlHelper(baseUrl, params);
expect(result).toBe('mockURL?pageSize=1&pageNumber=1&filter=testString&sort=ASC&deep=true&meta=true');
});
it("should ignore 'sort'-Param that is no DESC or ASC", () => {
let params = {
sort: "DUST"
};
let baseUrl = "mockURL";
expect(utils.queryParamsUrlHelper(baseUrl, params)).toBe(baseUrl);
});
it("should ignorepageNumber smaller than one", () => {
let params = {
pageNumber: 0
};
let baseUrl = "mockURL";
expect(utils.queryParamsUrlHelper(baseUrl, params)).toBe(baseUrl);
});
it("should change Pagesize bigger then 100 to 100", () => {
let params = {
pageSize: 99999999
};
let baseUrl = "mockURL";
expect(utils.queryParamsUrlHelper(baseUrl, params)).toBe('mockURL?pageSize=100');
});
it("should ignore pageSize smaller one ", () => {
let params = {
pageSize: 0
};
let baseUrl = "mockURL";
expect(utils.queryParamsUrlHelper(baseUrl, params)).toBe(baseUrl);
});
it("should return all Parameters", () => {
let params = {
pageSize: 1,
pageNumber: 1,
filter: "testString",
sort: "ASC",
deep: true,
meta: true
};
let baseUrl = "mockURL";
let result = utils.queryParamsUrlHelper(baseUrl, params);
expect(result).toBe('mockURL?pageSize=1&pageNumber=1&filter=testString&sort=ASC&deep=true&meta=true');
});
it("should return an Url with ID", () => {
let params = {
id: "1234"
};
let baseUrl = "mockURL";
let result = utils.getParamsUrlHelper(baseUrl, params);
expect(result).toBe('mockURL/1234');
});
it("should return all Parameters and full ID", () => {
let params = {
id: "abcd1234",
deep: true,
meta: true
};
let baseUrl = "mockURL";
let result = utils.getParamsUrlHelper(baseUrl, params);
expect(result).toBe('mockURL/abcd1234?deep=true&meta=true');
});
it("should return only deep & meta params that are 'true' or 'false' ", () => {
let params = {
id: "abcd1234",
deep: false,
meta: false
};
let baseUrl = "mockURL";
let result = utils.getParamsUrlHelper(baseUrl, params);
expect(result).toBe('mockURL/abcd1234');
});
});