-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathifNullOrEmpty.test.ts
35 lines (30 loc) · 1.23 KB
/
ifNullOrEmpty.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
import { testSuite, expect } from "manten";
import { nrml, testCollection } from "../../common";
export default testSuite(async ({ describe }) => {
describe("ifNullOrEmpty", ({ test }) => {
test("adds missing properties", () => {
const collection = testCollection();
collection.insert({ a: 1, b: 1, c: 1 });
collection.insert({ a: 2, b: 2, c: 2, d: [] });
collection.insert({ a: 3, b: 3, c: 3, d: "test" });
const found = nrml(collection.find({ a: { $gt: 0 } }, { ifNullOrEmpty: { d: 5 } }));
expect(found).toEqual([
{ a: 1, b: 1, c: 1, d: 5 },
{ a: 2, b: 2, c: 2, d: 5 },
{ a: 3, b: 3, c: 3, d: "test" }
]);
});
test("adds missing properties using dot notation", () => {
const collection = testCollection();
collection.insert({ a: 1, b: 1, c: 1 });
collection.insert({ a: 2, b: 2, c: 2, d: { e: [] } });
collection.insert({ a: 3, b: 3, c: 3, d: { e: "test" } });
const found = nrml(collection.find({ a: { $gt: 0 } }, { ifNullOrEmpty: { "d.e": 5 } }));
expect(found).toEqual([
{ a: 1, b: 1, c: 1, d: { e: 5 } },
{ a: 2, b: 2, c: 2, d: { e: 5 } },
{ a: 3, b: 3, c: 3, d: { e: "test" } }
]);
});
});
});