-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathmetadata.test.ts
69 lines (56 loc) · 1.94 KB
/
metadata.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
// Copyright 2020 Liam Tan. All rights reserved. MIT license.
import { assertEquals } from "./deps.ts";
import { Reflect } from "./lib/reflect.ts";
import {
CONTROLLER_META_PROPKEY,
getControllerOwnMeta,
getControllerMeta,
setControllerOwnMeta,
setControllerMeta,
} from "./metadata.ts";
import { ControllerMetadata } from "./types.ts";
import { from } from "https://deno.land/x/[email protected]/lib/Evt.from.ts";
Deno.test({
name: "setControllerOwnMeta should assign metadata to the controller meta key",
fn(): void {
class TestClass {}
const testMeta: ControllerMetadata = ("TEST" as unknown) as ControllerMetadata;
setControllerOwnMeta(TestClass, testMeta);
assertEquals(Reflect.getMetadata(CONTROLLER_META_PROPKEY, TestClass), testMeta);
},
});
Deno.test({
name: "getControllerOwnMeta should retreive metadata from controller meta key",
fn(): void {
class TestClass {}
const testMeta: ControllerMetadata = ("TEST" as unknown) as ControllerMetadata;
Reflect.defineMetadata(CONTROLLER_META_PROPKEY, testMeta, TestClass);
assertEquals(getControllerOwnMeta(TestClass), testMeta);
},
});
Deno.test({
name: "setControllerMeta should assign metadata to target constructor",
fn() {
const testMeta: ControllerMetadata = ("TEST" as unknown) as ControllerMetadata;
class TestClass {
public testMethod() {
setControllerMeta(this, testMeta);
}
}
new TestClass().testMethod();
assertEquals(Reflect.getMetadata(CONTROLLER_META_PROPKEY, TestClass), testMeta);
},
});
Deno.test({
name: "getControllerMeta should retreive metadata from target constructor",
fn() {
const testMeta: ControllerMetadata = ("TEST" as unknown) as ControllerMetadata;
class TestClass {
public testMethod() {
assertEquals(getControllerMeta(this), testMeta);
}
}
Reflect.defineMetadata(CONTROLLER_META_PROPKEY, testMeta, TestClass);
new TestClass().testMethod();
},
});