This repository was archived by the owner on Jan 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathjsInjectTests.js
191 lines (147 loc) · 5.69 KB
/
jsInjectTests.js
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
describe("jsInject Inversion of Control", function () {
var empty = function() {};
var $jsInject;
beforeEach(function() {
$jsInject = new $$jsInject();
$jsInject.register("echoFn", [function() {
return {
echo: function(msg) {
return msg;
}
};
}]);
});
it("Given ioc when $$jsInject requested then returns self.", function () {
var actual = $jsInject.get('$$jsInject');
expect(actual).toBe($jsInject);
});
describe("First-time registration", function() {
it("Given self-invoking constructor function when registered then registers successfully", function() {
var expected = "1";
var fn = (function() {
function Fn(echo) {
this.echo = echo;
this.test = function() {
return echo.echo(expected);
};
}
return Fn;
})();
$jsInject.register("1", ["echoFn", fn]);
var actual = $jsInject.get("1");
expect(actual.test()).toBe(expected);
});
it("Given function constructor when registered then registers successfully", function() {
var expected = "2";
function Fn(echo) {
this.test = echo.echo(expected);
}
$jsInject.register("2", ["echoFn", Fn]);
var actual = $jsInject.get("2");
expect(actual.test).toBe(expected);
});
it("Given function factory method when registered then registers successfully", function() {
var expected = "3";
var factory = function(echo) {
return {
test: echo.echo(expected)
};
};
factory.$$deps = ["echoFn"];
$jsInject.register("3", [factory]);
var actual = $jsInject.get("3");
expect(actual.test).toBe(expected);
});
});
describe("Validity checks and contracts", function() {
it("Given something other than an array passed then it throws an error", function() {
expect(function() {
$jsInject.register("4", "4");
}).toThrow($$jsInject.ERROR_ARRAY);
});
it("Given lst item in array passed is not a function then it throws an error", function() {
expect(function() {
$jsInject.register("4", ["4"]);
}).toThrow($$jsInject.ERROR_FUNCTION);
});
it("Given a registration already exists when duplicate registration is attempted then it throws an error", function()
{
$jsInject.register("3", [empty]);
expect(function() {
$jsInject.register("3", [empty]);
}).toThrow($$jsInject.ERROR_REGISTRATION);
});
it("Given recursive dependencies when a dependency is requested then it throws an error", function () {
$jsInject.register("depA", ["depB", empty]);
$jsInject.register("depB", ["depA", empty]);
expect(function () {
var depA = $jsInject.get("depA");
}).toThrow($$jsInject.ERROR_RECURSION);
});
it("Given get request on service that does not exist then it throws an error", function () {
expect(function () {
var nothing = $jsInject.get("nothing");
}).toThrow($$jsInject.ERROR_SERVICE);
});
});
describe("Run-time annotations", function(){
function serviceA() {
return {
id: "a"
};
}
function serviceB(a) {
return {
id: a.id + "b"
};
}
function serviceC(a, b) {
return {
id: a.id + b.id + "c"
};
}
beforeEach(function() {
$jsInject.register("serviceA", [serviceA]);
$jsInject.register("serviceB", ["serviceA", serviceB]);
$jsInject.register("serviceC", ["serviceA", serviceC]);
});
it ("Given registration with proper annotation then returns properly configured instance", function() {
var expected = "ab";
var actual = $jsInject.get("serviceB").id;
expect(actual).toBe(expected);
});
it ("Given registration with improper annotation then throws exception due to bad reference", function() {
expect(function () {
$jsInject.get("serviceC");
}).toThrow();
});
});
describe("Object annotations", function(){
function ServiceA() {
this.id = "a";
}
function ServiceB(serviceA) {
this.id = serviceA.id + "b";
}
ServiceB.$$deps = ["ServiceA"];
function ServiceC(serviceA, serviceB) {
this.id = serviceA.id + serviceB.id + "b";
}
ServiceC.$$deps = ["ServiceA"];
beforeEach(function() {
$jsInject.register("ServiceA", [ServiceA]);
$jsInject.register("ServiceB", [ServiceB]);
$jsInject.register("ServiceC", [ServiceC]);
});
it ("Given registration with properly annotated function then returns properly configured instance", function() {
var expected = "ab";
var actual = $jsInject.get("ServiceB").id;
expect(actual).toBe(expected);
});
it ("Given registration with improperly annotated function then throws exception due to bad reference", function() {
expect(function () {
$jsInject.get("ServiceC");
}).toThrow();
});
});
});