-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Expand file tree
/
Copy pathBindingTestSync.js
More file actions
269 lines (208 loc) · 9.92 KB
/
BindingTestSync.js
File metadata and controls
269 lines (208 loc) · 9.92 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
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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
QUnit.module('BindingTestSync', (hooks) =>
{
hooks.before(async () =>
{
await CefSharp.BindObjectAsync("bound");
});
QUnit.test("BindObjectAsync Second call with Bound param", async (assert) =>
{
const res = await CefSharp.BindObjectAsync("bound");
assert.equal(res.Success, false, "Second call to BindObjectAsync with already bound objects as params returned false.");
});
QUnit.test("bound.repeat('hi ', 5)", function (assert)
{
const expectedResult = "hi hi hi hi hi "
let actualResult = bound.repeat("hi ", 5);
assert.equal(actualResult, expectedResult, "We expect value to be " + actualResult);
});
QUnit.test("bound.myProperty", function (assert)
{
const expectedResult = 42;
let actualResult = bound.myProperty;
assert.equal(actualResult, expectedResult, "We expect value to be " + expectedResult);
});
QUnit.test("bound.subObject.simpleProperty", function (assert)
{
const expectedResult = "This is a very simple property.";
let actualResult = bound.subObject.simpleProperty;
assert.equal(actualResult, expectedResult, "We expect value to be " + expectedResult);
bound.subObject.simpleProperty = expectedResult + "1";
actualResult = bound.subObject.simpleProperty;
assert.equal(actualResult, (expectedResult + "1"), "We expect value to be " + (expectedResult + 1));
//Reset to default value
bound.subObject.simpleProperty = expectedResult;
});
QUnit.test("Function delegate to c# method", function (assert)
{
function myFunction(functionParam)
{
return functionParam();
}
const expectedResult = "42"
let actualResult = myFunction(bound.echoMyProperty);
assert.equal(actualResult, expectedResult, "We expect value to be " + actualResult);
});
QUnit.test("Function returning complex type", function (assert)
{
function myFunction(functionParam)
{
return functionParam();
}
const expectedResult = "This is a very simple property."
let actualResult = bound.getSubObject().simpleProperty;
assert.equal(actualResult, expectedResult, "Call to bound.getSubObject().simpleProperty resulted in : " + actualResult);
});
QUnit.test("Call (echoDateTime): now", (assert) =>
{
const now = new Date();
const res = bound.echoDateTime(now);
assert.deepEqual(res, now, "Expected echo datetime");
});
QUnit.test("Call (echoDateTime): unixTimeZero", (assert) =>
{
const unixTimeZero = new Date(Date.parse('01 Jan 1970 00:00:00 GMT'));
const res = bound.echoDateTime(unixTimeZero);
assert.deepEqual(res, unixTimeZero, "Expected echo unixTimeZero");
});
QUnit.test("Call (echoNullableDateTime):", (assert) =>
{
const now = new Date();
const res = bound.echoNullableDateTime(now);
assert.deepEqual(res, now, "Expected echo datetime");
});
QUnit.test("Call (echoNullableDateTime) null param:", (assert) =>
{
const res = bound.echoNullableDateTime(null);
assert.equal(res, null, "Expected null");
});
QUnit.test("Stress Test", function (assert)
{
let stressTestCallCount = 1000;
for (var i = 1; i <= stressTestCallCount; i++)
{
assert.ok(true, bound.repeat("hi ", 5));
}
assert.ok(true, "Stress Test done with : " + stressTestCallCount + " call to bound.repeat(\"hi \", 5)");
});
QUnit.test("JSON Serializer Test", function (assert)
{
var json = bound.returnJsonEmployeeList();
var jsonObj = JSON.parse(json);
assert.ok(jsonObj.employees.length > 0, "Employee Count : " + jsonObj.employees.length);
var employees = jsonObj.employees;
assert.equal("John Doe", employees[0].firstName + " " + employees[0].lastName, "Employee : " + employees[0].firstName + " " + employees[0].lastName);
assert.equal("Anna Smith", employees[1].firstName + " " + employees[1].lastName, "Employee : " + employees[1].firstName + " " + employees[1].lastName);
assert.equal("Peter Jones", employees[2].firstName + " " + employees[2].lastName, "Employee : " + employees[2].firstName + " " + employees[2].lastName);
});
QUnit.test("Javascript function sending variable number of parameters to Bound Object. (ParamArray Test)", function (assert)
{
assert.equal(bound.methodWithParams('With 1 Params', 'hello-world'), "Name:With 1 Params;Args:hello-world", "Method with paramArray with one param");
assert.equal(bound.methodWithParams('With 2 Params', 'hello-world', 'chris was here'), "Name:With 2 Params;Args:hello-world, chris was here", "Method with paramArray with two params");
assert.equal(bound.methodWithParams('With no Params'), "Name:With no Params;Args:", "Method with paramArary no params passed");
assert.equal(bound.methodWithoutParams('Normal Method', 'hello'), "Normal Method, hello", "Method with one param (not param array)");
assert.equal(bound.methodWithoutAnything(), "Method without anything called and returned successfully.", "Method without params");
assert.equal(bound.methodWithThreeParamsOneOptionalOneArray(null), "MethodWithThreeParamsOneOptionalOneArray:No Name Specified - No Optional Param Specified;Args:", "bound.methodWithThreeParamsOneOptionalOneArray(null)");
assert.equal(bound.methodWithThreeParamsOneOptionalOneArray(null, null), "MethodWithThreeParamsOneOptionalOneArray:No Name Specified - No Optional Param Specified;Args:", "bound.methodWithThreeParamsOneOptionalOneArray(null, null)");
assert.equal(bound.methodWithThreeParamsOneOptionalOneArray("Test", null), "MethodWithThreeParamsOneOptionalOneArray:Test - No Optional Param Specified;Args:", "bound.methodWithThreeParamsOneOptionalOneArray('Test', null)");
assert.equal(bound.methodWithThreeParamsOneOptionalOneArray(null, null, "Arg1", "Arg2"), "MethodWithThreeParamsOneOptionalOneArray:No Name Specified - No Optional Param Specified;Args:Arg1, Arg2", "bound.methodWithThreeParamsOneOptionalOneArray(null, null, 'Arg1', 'Arg2')");
});
QUnit.test("Methods and Properties on bound object 'bound':", function (assert)
{
for (var name in bound)
{
if (bound[name].constructor.name != 'Function') continue;
assert.ok(true, "Property: " + name);
}
for (var name in bound)
{
if (bound[name].constructor.name === 'Function') continue;
assert.ok(true, "Function: " + name);
}
for (var name in bound)
{
if (typeof bound[name] == "object" && bound[name] !== null)
{
for (var sub in bound[name])
{
var type = bound[name][sub].constructor.name === 'Function' ? "Function" : "Property";
assert.ok(true, name + "." + sub + "(" + type + ")");
}
}
}
});
QUnit.test("Javascript Callback Test using object as parameter", function (assert)
{
var asyncCallback = assert.async();
function objectCallback(s)
{
assert.ok(true, s);
asyncCallback();
}
bound.testCallbackFromObject(
{
Callback: objectCallback, TestString: "Hello", SubClasses:
[
{ PropertyOne: "Test Property One", Numbers: [1, 2, 3] },
{ PropertyOne: "Test Property Two", Numbers: [4, 5, 6] }
]
});
});
QUnit.test("Javascript Callback Test with DateTime", function (assert)
{
var asyncCallback = assert.async();
function callback(dateTimeFirst, dateTimeSecondAsArray)
{
var arr = dateTimeSecondAsArray;
var dateTimeSecond = new Date(arr[0], arr[1] - 1, arr[2], arr[3], arr[4], arr[5]);
assert.equal(dateTimeFirst - dateTimeSecond, 0);
asyncCallback();
}
bound.testCallbackWithDateTime(callback);
});
QUnit.test("Javascript Callback Test with 1900 DateTime", function (assert)
{
var asyncCallback = assert.async();
function callback(dateTimeFirst, dateTimeSecondAsArray)
{
var arr = dateTimeSecondAsArray;
var dateTimeSecond = new Date(arr[0], arr[1] - 1, arr[2], arr[3], arr[4], arr[5]);
assert.equal(dateTimeFirst - dateTimeSecond, 0);
asyncCallback();
}
bound.testCallbackWithDateTime1900(callback);
});
QUnit.test("Javascript Callback Test with 1970 DateTime", function (assert)
{
var asyncCallback = assert.async();
function callback(dateTimeFirst, dateTimeSecondAsArray)
{
var arr = dateTimeSecondAsArray;
var dateTimeSecond = new Date(arr[0], arr[1] - 1, arr[2], arr[3], arr[4], arr[5]);
assert.equal(dateTimeFirst - dateTimeSecond, 0);
asyncCallback();
}
bound.testCallbackWithDateTime1970(callback);
});
QUnit.test("Javascript Callback Test with 1985 DateTime", function (assert)
{
var asyncCallback = assert.async();
function callback(dateTimeFirst, dateTimeSecondAsArray)
{
var arr = dateTimeSecondAsArray;
var dateTimeSecond = new Date(arr[0], arr[1] - 1, arr[2], arr[3], arr[4], arr[5]);
assert.equal(dateTimeFirst - dateTimeSecond, 0);
asyncCallback();
}
bound.testCallbackWithDateTime1985(callback);
});
QUnit.test("Javascript Callback Test", function (assert)
{
var asyncCallback = assert.async();
function callback(s)
{
assert.equal(s.Response, "This callback from C# was delayed 1500ms", s.Response);
asyncCallback();
}
bound.testCallback(callback);
});
});