-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathhelper-functions.test.ts
More file actions
102 lines (99 loc) · 2.38 KB
/
helper-functions.test.ts
File metadata and controls
102 lines (99 loc) · 2.38 KB
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
/* eslint-disable @typescript-eslint/no-explicit-any */
import * as help from "./helper-functions";
import { OpenrpcDocument as OpenRPC } from "./types";
describe("helper functions", () => {
describe("find", () => {
it("array empty fail", () => {
const array: any[] = [];
expect(
help.find(array, (o: any[]) => {
return o === null;
})
).toBe(undefined);
});
});
describe("findIndex", () => {
it("array empty fail", () => {
const array: any[] = [];
expect(
help.findIndex(array, (o: any[]) => {
return o === null;
})
).toBe(-1);
});
});
describe("rpcDocIsEqual", () => {
it("missing key", () => {
const doc1: OpenRPC = {
info: {
description: "test-doc",
title: "testDoc",
version: "1.0.0",
},
methods: [],
openrpc: "1.0.0",
components: [],
};
const doc2: OpenRPC = {
info: {
description: "test-doc",
title: "testDoc",
version: "1.0.0",
},
methods: [],
openrpc: "1.0.0",
servers: [],
};
expect(help.rpcDocIsEqual(doc1, doc2)).toBe(false);
});
it("length mismatch", () => {
const doc1: OpenRPC = {
info: {
description: "test-doc",
title: "testDoc",
version: "1.0.0",
},
methods: [],
openrpc: "1.0.0",
servers: [],
};
const doc2: OpenRPC = {
info: {
description: "test-doc",
title: "testDoc",
version: "1.0.0",
},
methods: [],
openrpc: "1.0.0",
};
expect(help.rpcDocIsEqual(doc1, doc2)).toBe(false);
});
it("same key different value in recursive step", () => {
const doc1: OpenRPC = {
info: {
description: "test-doc",
title: "testDoc",
version: "1.0.0",
license: {
name: "MIT",
},
},
methods: [],
openrpc: "1.0.0",
};
const doc2: OpenRPC = {
info: {
description: "test-doc",
title: "testDoc",
version: "1.0.0",
license: {
name: "APACHE2",
},
},
methods: [],
openrpc: "1.0.0",
};
expect(help.rpcDocIsEqual(doc1, doc2)).toBe(false);
});
});
});