-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.test.js
45 lines (35 loc) · 1.47 KB
/
utils.test.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
define([
'src/utils'
], function(utils) {
describe('utils', function(){
describe('#getRandomInt', function(){
it('should return an integer between @min and @max params', function(){
// TODO: Fake random with sinon sinon.stub(Math, 'random').returns(0.5);
var res = utils.getRandomInt(1, 2);
assert.isNumber(res);
assert.isTrue(Math.floor(res) === res);
assert.isTrue(res >= 1);
assert.isTrue(res <= 2);
});
it('should work even with negative numbers', function(){
// TODO: Fake random with sinon sinon.stub(Math, 'random').returns(0.5);
var res = utils.getRandomInt(-1, 1);
assert.isTrue(res >= -1);
assert.isTrue(res <= 1);
});
});
describe('#getRandomCoordinates', function(){
// TODO: Fake random with sinon sinon.stub(Math, 'random').returns(0.5);
var res = utils.getRandomCoordinates(10, 15, 15);
it('should be an object', function(){
assert.isObject(res);
});
it('should has coordinates with value between @minDistance and @maxDistance params', function(){
assert.isTrue(res.x >= 10);
assert.isTrue(res.x <= 15);
assert.isTrue(res.y >= 10);
assert.isTrue(res.y <= 15);
});
});
});
});