-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathquery-correctness-fuzzing.test.ts
235 lines (207 loc) · 8.7 KB
/
query-correctness-fuzzing.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
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
import {
randomToken,
RxJsonSchema,
fillWithDefaultSettings,
now,
createRevision,
prepareQuery,
ensureNotFalsy,
normalizeMangoQuery
} from '../plugins/core/index.mjs';
import * as assert from 'assert';
import config from './unit/config.ts';
import {
randomOfArray
} from 'event-reduce-js';
import {
Human,
randomQuery,
getRandomChangeEvents,
mingoCollectionCreator,
applyChangeEvent
} from 'event-reduce-js/truth-table-generator';
import { randomNumber } from 'async-test-util';
function trueByChance(chance: number) {
return Math.random() < chance;
}
/**
* Creates random writes, indexes and queries and tests if the results are correct.
*/
describe('query-correctness-fuzzing.test.ts', () => {
it('init storage', async () => {
if (config.storage.init) {
await config.storage.init();
}
});
it('run tests', async function () {
this.timeout(1000 * 1000000);
const runsPerInstance = 5;
const eventsAmount = 30;
const queriesAmount = 30;
let totalRuns = 0;
while (true) {
totalRuns++;
console.log('-----------NEW RUN #' + totalRuns);
const indexes = [
['_id'],
['name', 'gender', 'age'],
['gender', 'age', 'name'],
['age', 'name', 'gender'],
['gender', 'age'],
['name', 'gender']
] as const;
const sorts = [
[{ '_id': 'asc' }],
[{ 'gender': 'asc' }, { '_id': 'asc' }],
[{ 'name': 'asc' }, { '_id': 'asc' }],
[{ 'age': 'asc' }, { '_id': 'asc' }],
[{ 'gender': 'asc' }, { 'name': 'asc' }, { '_id': 'asc' }],
[{ 'name': 'asc' }, { 'gender': 'asc' }, { '_id': 'asc' }],
[{ 'gender': 'asc' }, { 'age': 'asc' }, { '_id': 'asc' }],
[{ 'age': 'asc' }, { 'name': 'asc' }, { '_id': 'asc' }],
[{ 'age': 'asc' }, { 'gender': 'asc' }, { 'name': 'asc' }, { '_id': 'asc' }],
];
const schemaPlain: RxJsonSchema<Human> = {
primaryKey: '_id',
type: 'object',
version: 0,
properties: {
_id: {
type: 'string',
maxLength: 20
},
name: {
type: 'string',
maxLength: 20
},
gender: {
type: 'string',
enum: ['f', 'm', 'x'],
maxLength: 1
},
age: {
type: 'number',
minimum: 0,
maximum: 100,
multipleOf: 1
}
},
indexes
};
const schema = fillWithDefaultSettings(schemaPlain);
const collectionName = randomToken(10);
const databaseName = randomToken(10);
const openStorageInstance = () => {
return config.storage.getStorage().createStorageInstance({
collectionName,
databaseName,
databaseInstanceToken: randomToken(10),
multiInstance: false,
devMode: false,
options: {},
schema
});
};
let storageInstance = await openStorageInstance();
const collection = mingoCollectionCreator();
let runs = 0;
while (runs < runsPerInstance) {
runs++;
const procedure = getRandomChangeEvents(eventsAmount);
for (const changeEvent of procedure) {
applyChangeEvent(
collection,
changeEvent
);
const docs = await storageInstance.findDocumentsById([changeEvent.id], true);
const previous = docs[0];
const nextRev = createRevision(randomToken(10), previous);
if (changeEvent.operation === 'DELETE') {
const writeResult = await storageInstance.bulkWrite([{
previous: previous,
document: Object.assign({}, changeEvent.previous, {
_deleted: true,
_rev: nextRev,
_meta: {
lwt: now()
},
_attachments: {}
})
}], 'randomevent-delete');
assert.deepStrictEqual(writeResult.error, []);
} else {
const writeResult = await storageInstance.bulkWrite([{
previous: previous,
document: Object.assign({}, changeEvent.doc, {
_deleted: false,
_rev: nextRev,
_meta: {
lwt: now()
},
_attachments: {}
})
}], 'randomevent');
assert.deepStrictEqual(writeResult.error, []);
}
/**
* If the storage has persistence,
* close and open it randomly and check again for the correctness.
* Also randomly run the cleanup
*/
if (config.storage.hasPersistence) {
if (trueByChance(0.005)) {
await storageInstance.close();
storageInstance = await openStorageInstance();
} else if (trueByChance(0.006)) {
await storageInstance.cleanup(randomNumber(0, 1000));
}
}
}
// ensure all docs are equal
const allStorage = await storageInstance.query(prepareQuery(schema, { selector: { _deleted: { $eq: false } }, skip: 0, sort: [{ _id: 'asc' }] }));
const allCorrect = collection.query({ selector: {}, sort: ['_id'] });
allCorrect.forEach((d, idx) => {
const correctDoc = allStorage.documents[idx];
if (d._id !== correctDoc._id) {
console.dir(allStorage);
console.dir(allCorrect);
throw new Error('State not equal after writes');
}
});
let queryC = 0;
while (queryC < queriesAmount) {
queryC++;
const query = randomQuery();
const sort = randomOfArray(sorts);
const mingoSort = sort.map(sortPart => {
const dirPrefix = Object.values(sortPart)[0] === 'asc' ? '' : '-';
return dirPrefix + Object.keys(sortPart)[0];
});
query.sort = mingoSort;
const correctResult = collection.query(query);
query.sort = sort as any;
query.selector._deleted = { $eq: false };
// must have the same result for all indexes
for (const index of ensureNotFalsy(schema.indexes, 'schema.indexes is falsy')) {
const useQuery = normalizeMangoQuery(schema, query as any);
useQuery.index = index as any;
const preparedQuery = prepareQuery(schema, useQuery);
const storageResult = await storageInstance.query(preparedQuery);
storageResult.documents.forEach((d, idx) => {
const correctDoc = correctResult[idx];
if (d._id !== correctDoc._id) {
console.dir(preparedQuery);
console.dir(correctResult);
console.dir(storageResult);
throw new Error('WRONG QUERY RESULT!');
}
});
}
}
// run cleanup after each run
await storageInstance.cleanup(0);
}
await storageInstance.remove();
}
});
});