forked from Didericis/permissions-mixin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpermissions-mixin-tests.js
458 lines (409 loc) · 13.3 KB
/
permissions-mixin-tests.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
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
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
const ADMIN = {
username: 'admin',
password: 'password',
roles: ['admin']
};
const FANCYUSER = {
username: 'fancy',
password: 'password',
roles: ['fancy', 'basic']
};
const BASICUSER = {
username: 'basic',
password: 'password',
roles: ['basic']
};
const USER = {
username: 'user',
password: 'password'
};
const testCollection = new Mongo.Collection('test');
const allowAdminMethod = new ValidatedMethod({
name: 'allowAdminMethod',
mixins: [PermissionsMixin],
allow: [{
roles: ['admin'],
group: Roles.GLOBAL_GROUP
}],
validate: new SimpleSchema({
text: { type: String }
}).validator(),
run({text}) {
return testCollection.insert({text: text});
}
});
const allowBasicMethod = new ValidatedMethod({
name: 'allowBasicMethod',
mixins: [PermissionsMixin],
allow: [{
roles: ['basic', 'admin'],
group: Roles.GLOBAL_GROUP
}],
validate: new SimpleSchema({
text: { type: String }
}).validator(),
run({text}) {
return testCollection.insert({text: text});
}
});
const allowBasicIfBlah = new ValidatedMethod({
name: 'allowBasicIfBlah',
mixins: [PermissionsMixin],
allow: [{
roles: ['basic'],
group: Roles.GLOBAL_GROUP,
allow({text}) { return (text === 'blah'); }
}, {
roles: ['admin'],
group: Roles.GLOBAL_GROUP
}],
validate: new SimpleSchema({
text: { type: String }
}).validator(),
run({text}) {
return testCollection.insert({text: text});
}
});
const allowFancyMethod = new ValidatedMethod({
name: 'allowFancyMethod',
mixins: [PermissionsMixin],
allow: [{
roles: ['fancy', 'admin'],
group: Roles.GLOBAL_GROUP
}],
validate: new SimpleSchema({
text: { type: String }
}).validator(),
run({text}) {
return testCollection.insert({text: text});
}
});
const noAllowOrDenyMethod = new ValidatedMethod({
name: 'noAllowOrDenyMethod',
mixins: [PermissionsMixin],
validate: new SimpleSchema({
text: { type: String }
}).validator(),
run({text}) {
return testCollection.insert({text: text});
}
});
const nestedAllowAdminMethod = new ValidatedMethod({
name: 'nestedAllowAdminMethod',
mixins: [PermissionsMixin],
allow: [{
roles: ['fancy', 'admin', 'basic'],
group: Roles.GLOBAL_GROUP
}],
validate: new SimpleSchema({
text: { type: String }
}).validator(),
run({text}) {
return allowAdminMethod.run.call(this, {text: text});
}
});
const allowAnyMethod = new ValidatedMethod({
name: 'allowAnyMethod',
mixins: [PermissionsMixin],
allow: true,
validate: new SimpleSchema({
text: { type: String }
}).validator(),
run({text}) {
return testCollection.insert({text: text});
}
});
const denyBasicMethod = new ValidatedMethod({
name: 'denyBasicMethod',
mixins: [PermissionsMixin],
deny: [{
roles: ['basic'],
group: Roles.GLOBAL_GROUP
}],
validate: new SimpleSchema({
text: { type: String }
}).validator(),
run({text}) {
return testCollection.insert({text: text});
}
});
const denyBasicIfBlahAndFancy = new ValidatedMethod({
name: 'denyBasicIfBlahAndFancy',
mixins: [PermissionsMixin],
deny: [{
roles: ['basic'],
group: Roles.GLOBAL_GROUP,
deny({text}) { return (text === 'blah'); }
}, {
roles: ['fancy'],
group: Roles.GLOBAL_GROUP
}],
validate: new SimpleSchema({
text: { type: String }
}).validator(),
run({text}) {
return testCollection.insert({text: text});
}
});
const allowLoggedIn = new ValidatedMethod({
name: 'allowLoggedIn',
mixins: [PermissionsMixin],
allow: [{
roles: true,
group: true
}],
validate: new SimpleSchema({
text: { type: String }
}).validator(),
run({text}) {
return testCollection.insert({text: text});
}
});
const allowLoggedInSpecialDef = new ValidatedMethod({
name: 'allowLoggedInSpecialDef',
mixins: [PermissionsMixin],
allow: PermissionsMixin.LoggedIn,
validate: new SimpleSchema({
text: { type: String }
}).validator(),
run({text}) {
return testCollection.insert({text: text});
}
});
Meteor.methods({
'test.resetDatabase': () => {
testCollection.remove({});
},
'test.createUsers': (users) => {
if (Meteor.isServer) {
if (Meteor.users.find().count() > 0) { Meteor.users.remove({}); }
users.forEach(({username, password, roles}) => {
const userId = Accounts.createUser({
username: username,
password: password
});
if (roles) {
Roles.addUsersToRoles(userId, roles, Roles.GLOBAL_GROUP);
}
});
}
}
});
const canCallWhen = function canCallWhen(method, input) {
it(`can call "${method.name}" when input is ${input}`, (done) => {
const simulation = method.call({text: input},
(err, server) => {
assert.isDefined(server);
assert.isDefined(simulation);
assert.equal(server, simulation);
done();
});
});
};
const cannotCallWhen = function cannotCallWhen(method, input) {
it(`CANNOT call "${method.name}" when input is ${input}`, () => {
assert.throws(() => {
method.call({text: input});
}, method.permissionsError);
});
};
const setupUserTest = function setupUser(user) {
before((done) => {
Meteor.call('test.createUsers', [user], () => {
Meteor.loginWithPassword(user.username,
user.password, done);
});
});
beforeEach((done) => {
Meteor.call('test.resetDatabase', () => { done(); });
});
};
const tearDownUserTest = function tearDownUserTest(user) {
after((done) => { Meteor.logout(done); });
}
describe('No users', () => {
beforeEach((done) => {
Meteor.call('test.resetDatabase', () => { done(); });
});
it('should add a runTrusted function', () => {
assert.isDefined(noAllowOrDenyMethod.runTrusted);
});
it('should not allow "noAllowOrDenyMethod" to be run', () => {
assert.throws(() => {
noAllowOrDenyMethod.call({text: 'hi'});
}, noAllowOrDenyMethod.permissionsError);
});
it('should not be able to call methods by modifying isTrusted', () => {
assert.throws(() => {
allowAdminMethod.call.apply({isTrusted: true}, {num: 1});
}, allowAdminMethod.permissionsError);
});
});
describe('Bad definitions', () => {
beforeEach((done) => {
Meteor.call('test.resetDatabase', () => { done(); });
});
it('should throw an error if empty deny array in definition', () => {
assert.throws(() => {
new ValidatedMethod({
name: 'testMethod1',
mixins: [PermissionsMixin],
deny: [],
validate: new SimpleSchema({
text: { type: String }
}).validator(),
run({text}) {
return testCollection.insert({text: text});
}
});
}, 'PermssionsMixin.Definition');
});
it('should throw an error if empty allow array in definition', () => {
assert.throws(() => {
new ValidatedMethod({
name: 'testMethod2',
mixins: [PermissionsMixin],
allow: [],
validate: new SimpleSchema({
text: { type: String }
}).validator(),
run({text}) {
return testCollection.insert({text: text});
}
});
}, 'PermssionsMixin.Definition');
});
it('should throw an error if allow doc does not have a role', () => {
assert.throws(() => {
new ValidatedMethod({
name: 'testMethod3',
mixins: [PermissionsMixin],
allow: [{
group: Roles.GLOBAL_GROUP
}],
validate: new SimpleSchema({
text: { type: String }
}).validator(),
run({text}) {
return testCollection.insert({text: text});
}
});
}, 'PermssionsMixin.Definition');
});
it('should throw an error if deny doc does not have a role', () => {
assert.throws(() => {
new ValidatedMethod({
name: 'testMethod4',
mixins: [PermissionsMixin],
deny: [{
group: Roles.GLOBAL_GROUP
}],
validate: new SimpleSchema({
text: { type: String }
}).validator(),
run({text}) {
return testCollection.insert({text: text});
}
});
}, 'PermssionsMixin.Definition');
});
});
if (Meteor.isClient) {
describe('BASICUSER', () => {
setupUserTest(BASICUSER);
cannotCallWhen(allowAdminMethod, 'sample');
cannotCallWhen(nestedAllowAdminMethod, 'sample');
cannotCallWhen(allowFancyMethod, 'sample');
cannotCallWhen(denyBasicMethod, 'sample');
canCallWhen(allowBasicMethod, 'sample');
canCallWhen(allowAnyMethod, 'sample');
canCallWhen(allowBasicIfBlah, 'blah');
cannotCallWhen(allowBasicIfBlah, 'sample');
canCallWhen(denyBasicIfBlahAndFancy, 'sample');
cannotCallWhen(denyBasicIfBlahAndFancy, 'blah');
canCallWhen(allowLoggedIn, 'sample');
canCallWhen(allowLoggedInSpecialDef, 'sample');
tearDownUserTest();
});
describe('ADMIN', () => {
setupUserTest(ADMIN);
canCallWhen(allowAdminMethod, 'sample');
canCallWhen(nestedAllowAdminMethod, 'sample');
canCallWhen(allowFancyMethod, 'sample');
canCallWhen(denyBasicMethod, 'sample');
canCallWhen(allowBasicMethod, 'sample');
canCallWhen(allowAnyMethod, 'sample');
canCallWhen(allowBasicIfBlah, 'blah');
canCallWhen(allowBasicIfBlah, 'sample');
canCallWhen(denyBasicIfBlahAndFancy, 'sample');
canCallWhen(allowLoggedIn, 'sample');
canCallWhen(allowLoggedInSpecialDef, 'sample');
tearDownUserTest();
});
describe('FANCYUSER', () => {
setupUserTest(FANCYUSER);
cannotCallWhen(allowAdminMethod, 'sample');
cannotCallWhen(nestedAllowAdminMethod, 'sample');
canCallWhen(allowFancyMethod, 'sample');
cannotCallWhen(denyBasicMethod, 'sample');
canCallWhen(allowBasicMethod, 'sample');
canCallWhen(allowAnyMethod, 'sample');
canCallWhen(allowBasicIfBlah, 'blah');
cannotCallWhen(allowBasicIfBlah, 'sample');
cannotCallWhen(denyBasicIfBlahAndFancy, 'blah');
cannotCallWhen(denyBasicIfBlahAndFancy, 'sample');
canCallWhen(allowLoggedIn, 'sample');
canCallWhen(allowLoggedInSpecialDef, 'sample');
tearDownUserTest();
});
describe('USER', () => {
setupUserTest(USER);
cannotCallWhen(allowAdminMethod, 'sample');
cannotCallWhen(nestedAllowAdminMethod, 'sample');
cannotCallWhen(allowFancyMethod, 'sample');
canCallWhen(denyBasicMethod, 'sample');
cannotCallWhen(allowBasicMethod, 'sample');
canCallWhen(allowAnyMethod, 'sample');
cannotCallWhen(allowBasicIfBlah, 'blah');
cannotCallWhen(allowBasicIfBlah, 'sample');
canCallWhen(denyBasicIfBlahAndFancy, 'blah');
canCallWhen(denyBasicIfBlahAndFancy, 'sample');
canCallWhen(allowLoggedIn, 'sample');
canCallWhen(allowLoggedInSpecialDef, 'sample');
tearDownUserTest();
});
describe('NO USER', () => {
cannotCallWhen(allowAdminMethod, 'sample');
cannotCallWhen(nestedAllowAdminMethod, 'sample');
cannotCallWhen(allowFancyMethod, 'sample');
cannotCallWhen(denyBasicMethod, 'sample');
cannotCallWhen(allowBasicMethod, 'sample');
canCallWhen(allowAnyMethod, 'sample');
cannotCallWhen(allowBasicIfBlah, 'blah');
cannotCallWhen(allowBasicIfBlah, 'sample');
cannotCallWhen(denyBasicIfBlahAndFancy, 'blah');
cannotCallWhen(denyBasicIfBlahAndFancy, 'sample');
cannotCallWhen(allowLoggedIn, 'sample');
cannotCallWhen(allowLoggedInSpecialDef, 'sample');
tearDownUserTest();
});
}
if (Meteor.isServer) {
describe('Server', () => {
it('should not allow methods to be run from server with run', () => {
assert.throws(() => {
allowAdminMethod.run({text: 'test'});
}, allowAdminMethod.permissionsError);
});
it('should allow a method to be run from server with runTrusted',
() => {
const result = allowAdminMethod.runTrusted({text: 'test'});
assert.isDefined(result);
});
it('should allow a nested method to be run from server with runTrusted',
() => {
const result = nestedAllowAdminMethod.runTrusted({text: 'test'});
assert.isDefined(result);
});
});
}