deno.land / std@0.157.0 / collections / intersect_test.ts

intersect_test.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
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
import { assertEquals } from "../testing/asserts.ts";import { intersect } from "./intersect.ts";
function intersectTest<I>( input: Array<Array<I>>, expected: Array<I>, message?: string,) { const actual = intersect(...input); assertEquals(actual, expected, message);}
Deno.test({ name: "[collections/intersect] no mutation", fn() { const arrayA = [1, 2, 3]; const arrayB = [3, 4, 5]; intersect(arrayA, arrayB);
assertEquals(arrayA, [1, 2, 3]); assertEquals(arrayB, [3, 4, 5]); },});
Deno.test({ name: "[collections/intersect] empty input", fn() { intersectTest([], []); },});
Deno.test({ name: "[collections/intersect] empty arrays", fn() { intersectTest([[], []], []); },});
Deno.test({ name: "[collections/intersect] one side empty", fn() { intersectTest([[], ["a", "b", "c"]], []); intersectTest([["a", "b", "c"], []], []); },});
Deno.test({ name: "[collections/intersect] empty result", fn() { intersectTest([["a", "b", "c"], ["d", "e", "f"]], []); },});
Deno.test({ name: "[collections/intersect] one or more items in intersection", fn() { intersectTest([["a", "b"], ["b", "c"]], ["b"]); intersectTest([["a", "b", "c", "d"], ["c", "d", "e", "f"]], ["c", "d"]); },});
Deno.test({ name: "[collections/intersect] duplicates", fn() { intersectTest([["a", "b", "c", "b"], ["b", "c"]], ["b", "c"]); intersectTest([["a", "b"], ["b", "b", "c", "c"]], ["b"]); },});
Deno.test({ name: "[collections/intersect] more than two inputs", fn() { intersectTest( [ ["a", "b"], ["b", "c"], ["s", "b"], ["b", "b"], ], ["b"], ); intersectTest( [ [1], [1], [2], ], [], ); intersectTest( [ [true, false], [true, false], [true], ], [true], ); },});
Deno.test({ name: "[collections/intersect] objects", fn() { intersectTest<Record<string, string>>([ [{ foo: "bar" }, { bar: "baz" }], [{ fruit: "banana" }], ], []);
const obj = { bar: "baz" }; intersectTest<Record<string, string>>([ [{ foo: "bar" }, obj], [obj], ], [obj]); intersectTest<Record<string, string>>([ [{ foo: "bar" }, { bar: "baz" }], [{ bar: "banana" }], ], []); },});
Deno.test({ name: "[collections/intersect] functions", fn() { intersectTest([ [() => {}, () => null], [() => NaN], ], []);
const emptyObjectFunction = () => {}; intersectTest([ [emptyObjectFunction, () => null], [emptyObjectFunction], ], [emptyObjectFunction]); intersectTest([ [(a: number, b: number) => a + b, () => null], [(a: number, b: number) => a - b], ], []); },});
std

Version Info

Tagged at
a year ago