-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtestDataSource.js
182 lines (169 loc) · 5.17 KB
/
testDataSource.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
/* eslint-env node */
"use strict";
const fluid = require("infusion"),
jqUnit = fluid.require("node-jqunit", null, "jqUnit");
require("../src/utils/dataSource.js");
const hortis = fluid.registerNamespace("hortis");
fluid.registerNamespace("hortis.tests");
hortis.tests.retryResponses = {
resolve: {
sequence: [{
type: "resolve",
payload: 42
}],
expected: {
minTime: 0,
type: "resolve",
payload: 42
}
},
oneReject: {
sequence: [{
type: "reject",
payload: "error"
}, {
type: "resolve",
payload: 42
}],
expected: {
minTime: 900,
type: "resolve",
payload: 42
}
},
twoReject: {
sequence: [{
type: "reject",
payload: "error1"
}, {
type: "reject",
payload: "error2"
}, {
type: "resolve",
payload: 42
}],
expected: {
minTime: 1900,
type: "resolve",
payload: 42
}
},
threeReject: {
sequence: [{
type: "reject",
payload: "error1"
}, {
type: "reject",
payload: "error2"
}, {
type: "reject",
payload: "error3"
}, {
type: "resolve",
payload: 42
}],
expected: {
minTime: 2900,
type: "reject",
payload: "error3"
}
}
};
fluid.defaults("hortis.tests.retryingMockDataSource", {
gradeNames: ["fluid.dataSource.retrying", "fluid.dataSource.noencoding"],
members: {
index: 0
},
sequence: [],
listeners: {
"onRead.impl": {
funcName: "hortis.tests.retryingMockDataSource.impl",
args: ["{that}"]
}
}
});
hortis.tests.retryingMockDataSource.impl = function (that) {
fluid.log("Test request " + that.index + " against sequence ", that.options.sequence);
const record = that.options.sequence[that.index++];
const togo = fluid.promise();
togo[record.type](record.payload);
return togo;
};
fluid.each(hortis.tests.retryResponses, function (value, key) {
jqUnit.asyncTest("Test of retrying data source: " + key, function () {
jqUnit.expect(3);
const dataSource = hortis.tests.retryingMockDataSource({
sequence: value.sequence
});
const now = Date.now();
const checkResponse = function (type, payload) {
jqUnit.assertEquals("Expected response type", value.expected.type, type);
jqUnit.assertDeepEq("Expected response payload", value.expected.payload, payload);
const delay = (Date.now() - now);
jqUnit.assertTrue("Response at expected time", delay > value.expected.minTime);
jqUnit.start();
};
const promise = dataSource.get();
promise.then(function (payload) {
checkResponse("resolve", payload);
}, function (payload) {
checkResponse("reject", payload);
});
});
});
fluid.defaults("hortis.tests.rateLimitingDataSource", {
gradeNames: ["fluid.dataSource", "fluid.dataSource.withRateLimiter"],
members: {
index: 0,
launchTimes: []
},
sequence: [],
listeners: {
"onRead.impl": {
funcName: "hortis.tests.rateLimitingDataSource.impl",
args: ["{that}"]
}
},
components: {
encoding: {
type: "fluid.dataSource.encoding.none"
}
}
});
hortis.tests.rateLimitingDataSource.impl = function (that) {
fluid.log("Rate limiting test request " + that.index);
const now = Date.now();
that.launchTimes[that.index] = now;
return fluid.promise().resolve(that.index++);
};
jqUnit.asyncTest("Test of rate limiting data source: ", function () {
jqUnit.expect(6);
const dataSource = hortis.tests.rateLimitingDataSource();
const now = Date.now();
const requests = fluid.generate(5, 0).map(function () {
return dataSource.get();
});
const resultsPromise = fluid.promise.sequence(requests);
resultsPromise.then(function (results) {
const expected = fluid.iota(5);
jqUnit.assertDeepEq("Got expected results", expected, results);
jqUnit.assertTrue("First response received pretty soon", (dataSource.launchTimes[0] - now) < 100);
for (let i = 1; i < 5; ++i) {
jqUnit.assertTrue("Request " + (i + 1) + " is not early", (dataSource.launchTimes[i] - dataSource.launchTimes[i - 1]) > 1000);
}
jqUnit.start();
});
});
jqUnit.asyncTest("Test of in memory caching data source: ", async function () {
const dataSource = fluid.inMemoryCachedSource();
const key = {id: 1};
const firstResponse = await dataSource.get(key);
jqUnit.assertUndefined("No initial contents", firstResponse);
const doc = {
name: "Veronica peregrina xalapensis"
};
await dataSource.set(key, doc);
const secondResponse = await dataSource.get(key);
jqUnit.assertDeepEq("Stored contents", doc, secondResponse);
jqUnit.start();
});