This repository was archived by the owner on Nov 20, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathlocation.js
More file actions
451 lines (380 loc) · 13.7 KB
/
location.js
File metadata and controls
451 lines (380 loc) · 13.7 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
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
'use strict';
const path = require('path'),
should = require('should'),
sinon = require('sinon');
const agentFactory = require('./agent'),
dbHandle = require(path.resolve('./test/handle-database')),
models = require(path.resolve('./models'));
let dbData;
describe('Location of people, tags, ideas, projects, ...', function () {
let agent,
sandbox;
beforeEach(function () {
sandbox = sinon.sandbox.create();
sandbox.useFakeTimers({
toFake: ['Date']
});
// a default non-logged agent
agent = agentFactory();
});
afterEach(function () {
sandbox.restore();
});
describe('PATCH location of a user', function () {
let loggedUser, otherUser;
beforeEach(async function () {
const data = {
users: 2, // how many users to make
verifiedUsers: [0] // which users to make verified
};
// create data in database
dbData = await dbHandle.fill(data);
const yankaData = {
username: 'yanka',
password: 'a*.0-1fiuyt',
email: 'yanka@mrkvony.com'
};
// add the main user
await models.user.create(yankaData);
const yankasLocation = [60, -44]; // just got some ride there
await models.user.updateLocation('yanka', yankasLocation);
[loggedUser, otherUser] = dbData.users;
});
afterEach(async function () {
await dbHandle.clear();
});
it('ask for update every 3 months');
context('logged in as me', function () {
beforeEach(() => {
agent = agentFactory.logged(loggedUser);
});
context('valid location', function () {
it('save/update her location (latitude, longitude)', async function () {
const res = await agent
.patch(`/users/${loggedUser.username}`)
.send({
data: {
type: 'users',
id: loggedUser.username,
attributes: {
location: [13, 47.21]
}
}
})
.expect('Content-Type', /^application\/vnd\.api\+json/)
.expect(200);
should(res.body).have.property('data');
const dt = res.body.data;
should(dt).have.property('id', loggedUser.username);
should(dt.attributes).have.property('preciseLocation', [13, 47.21]);
});
it('add special tags if playing with some people', async function () {
await agent
.patch(`/users/${loggedUser.username}`)
.send({
data: {
type: 'users',
id: loggedUser.username,
attributes: {
location: [60.07, -44] // why not
}
}
})
.expect('Content-Type', /^application\/vnd\.api\+json/)
.expect(200);
let tags = await models.user.readTags(loggedUser.username);
tags = tags.map((userTag) => {return userTag.tag.tagname;});
should(tags).containEql('some-strange-books');
should(tags).containEql('it-is-possible-to-eat-a-lot-and-not-get-fat');
should(tags).containEql('should-I-leave-my-job');
should(tags).containEql('how-is-it-possible-to-get-so-much-food-from-trash');
should(tags).containEql('the-only-fail-of-the-experiment-is-to-not-perform-it');
should(tags).containEql('ditup-spirit-WTF');
});
it('do not add special tags if not playing with some people', async function () {
await agent
.patch(`/users/${loggedUser.username}`)
.send({
data: {
type: 'users',
id: loggedUser.username,
attributes: {
location: [30.07, -44] // somewhere far away
}
}
})
.expect('Content-Type', /^application\/vnd\.api\+json/)
.expect(200);
let tags = await models.user.readTags(loggedUser.username);
tags = tags.map((userTag) => {return userTag.tag.tagname;});
should(tags).not.containEql('some-strange-books');
should(tags).not.containEql('it-is-possible-to-eat-a-lot-and-not-get-fat');
should(tags).not.containEql('should-I-leave-my-job');
should(tags).not.containEql('how-is-it-possible-to-get-so-much-food-from-trash');
should(tags).not.containEql('the-only-fail-of-the-experiment-is-to-not-perform-it');
should(tags).not.containEql('ditup-spirit-WTF');
});
it('randomize the location (latitude, longitude)', async function () {
const res = await agent
.patch(`/users/${loggedUser.username}`)
.send({
data: {
type: 'users',
id: loggedUser.username,
attributes: {
location: [13, 47.21]
}
}
})
.expect('Content-Type', /^application\/vnd\.api\+json/)
.expect(200);
should(res.body).have.property('data');
const dt = res.body.data;
should(dt).have.property('id', loggedUser.username);
should(dt.attributes).have.property('location').not.eql([13, 47.21]);
});
it('keep information about the last update time of the location', async function () {
// try with a different time
sandbox.clock.tick(10);
const res = await agent
.patch(`/users/${loggedUser.username}`)
.send({
data: {
type: 'users',
id: loggedUser.username,
attributes: {
location: [13, 47.21]
}
}
})
.expect('Content-Type', /^application\/vnd\.api\+json/)
.expect(200);
should(res.body).have.property('data');
const dt = res.body.data;
should(dt).have.property('id', loggedUser.username);
should(dt.attributes).have.property('locationUpdated').eql(Date.now());
});
});
context('invalid location', function () {
it('[missing coordinates] error 400', async function () {
await agent
.patch(`/users/${loggedUser.username}`)
.send({
data: {
type: 'users',
id: loggedUser.username,
attributes: {
location: [0]
}
}
})
.expect('Content-Type', /^application\/vnd\.api\+json/)
.expect(400);
});
it('[bad data] error 400', async function () {
await agent
.patch(`/users/${loggedUser.username}`)
.send({
data: {
type: 'users',
id: loggedUser.username,
attributes: {
location: 'asdf'
}
}
})
.expect('Content-Type', /^application\/vnd\.api\+json/)
.expect(400);
});
it('[coordinates out of range] error 400', async function () {
// check wrong latitude
await agent
.patch(`/users/${loggedUser.username}`)
.send({
data: {
type: 'users',
id: loggedUser.username,
attributes: {
location: [-90.1, 0]
}
}
})
.expect('Content-Type', /^application\/vnd\.api\+json/)
.expect(400);
// check wrong longitude
await agent
.patch(`/users/${loggedUser.username}`)
.send({
data: {
type: 'users',
id: loggedUser.username,
attributes: {
location: [0, 180.1]
}
}
})
.expect('Content-Type', /^application\/vnd\.api\+json/)
.expect(400);
});
});
context('empty location', function () {
it('remove the location from the user\'s profile', async function () {
sandbox.clock.tick(1000);
// set a location
const set = await agent
.patch(`/users/${loggedUser.username}`)
.send({
data: {
type: 'users',
id: loggedUser.username,
attributes: {
location: [45, 45]
}
}
})
.expect('Content-Type', /^application\/vnd\.api\+json/)
.expect(200);
should(set.body.data.attributes).have.property('preciseLocation').deepEqual([45, 45]);
should(set.body.data.attributes).have.property('locationUpdated').eql(Date.now());
// wait a second
sandbox.clock.tick(1000);
const res = await agent
.patch(`/users/${loggedUser.username}`)
.send({
data: {
type: 'users',
id: loggedUser.username,
attributes: {
location: null
}
}
})
.expect('Content-Type', /^application\/vnd\.api\+json/)
.expect(200);
should(res.body).have.property('data');
const dt = res.body.data;
should(dt).have.property('id', loggedUser.username);
should(dt.attributes).have.property('location').eql(null);
should(dt.attributes).have.property('preciseLocation').eql(null);
should(dt.attributes).have.property('locationUpdated').eql(Date.now());
});
});
});
context('logged in as other user', function () {
it('error 403', async function () {
await agent
.patch(`/users/${loggedUser.username}`)
.send({
data: {
type: 'users',
id: loggedUser.username,
attributes: {
location: [13, 47.21]
}
}
})
.auth(otherUser.username, otherUser.password)
.expect('Content-Type', /^application\/vnd\.api\+json/)
.expect(403);
});
});
});
describe('GET location of /users/:username', function () {
it('the randomized location should be shown');
it('non-randomized location shown only to self');
it('deleted location shouldn\'t be shown');
});
describe('GET people within a rectangle', function () {
let loggedUser;
beforeEach(async function () {
const data = {
users: 10, // how many users to make
verifiedUsers: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9], // which users to make verified
userLocations: {
0: [0, 5],
1: [1, 7],
2: [-1, 10],
3: [-1.0003, 15],
4: [4.993, 4.99999],
5: [-4.999, 15.01], // until here they should pass the 1st test
6: [0, 0],
7: [0, 15.2],
8: [-5.2, 10],
9: [5.2, 0],
}
};
// create data in database
dbData = await dbHandle.fill(data);
[loggedUser] = dbData.users;
});
afterEach(async function () {
await dbHandle.clear();
});
context('logged', function () {
beforeEach(() => {
agent = agentFactory.logged(loggedUser);
});
it('show people inside a specified rectangle and don\'t show people outside', async function () {
const res = await agent
.get('/users?filter[location]=-5.1,4.9,5.1,15.1')
.expect('Content-Type', /^application\/vnd\.api\+json/)
.expect(200);
should(res).have.propertyByPath('body', 'data').length(6);
should(res.body.data[0]).have.property('id').not.eql('undefined');
should(res.body.data[0]).have.property('attributes').match({
familyName: '',
givenName: '',
description: '',
location: /.*/,
username: /.*/
});
});
it('limit the size of the rectangle');
it('don\'t leak the preciseLocation', async function () {
const res = await agent
.get('/users?filter[location]=-5.1,4.9,5.1,15.1')
.expect('Content-Type', /^application\/vnd\.api\+json/)
.expect(200);
should(res).have.propertyByPath('body', 'data').length(6);
should(res.body.data[0]).not.have.propertyByPath('attributes', 'preciseLocation');
});
context('invalid location', function () {
it('[wrong corners] error with 400', async function () {
await agent
.get('/users?filter[location]=-5.1,15.1,5.1,4.9')
.expect('Content-Type', /^application\/vnd\.api\+json/)
.expect(400);
});
it('[wrong amount of coordinates] error with 400', async function () {
await agent
.get('/users?filter[location]=-5,5,5,15,0')
.expect('Content-Type', /^application\/vnd\.api\+json/)
.expect(400);
});
it('[out of range] error with 400', async () => {
await agent
.get('/users?filter[location]=-91,5,-80,15')
.expect('Content-Type', /^application\/vnd\.api\+json/)
.expect(400);
});
});
});
context('not logged in', function () {
it('error with 403', async function () {
await agent
.get('/users?filter[location]=-1,-1,1,1')
.expect('Content-Type', /^application\/vnd\.api\+json/)
.expect(403);
});
});
});
describe('GET people within a rectangle filtered by tags', function () {
it('show people within a rectangle with a given tag');
});
describe('location of projects', function () {
it('project can be geolocated');
});
describe('location of challenges, ideas', function () {
it('show where are the people connected to the idea');
});
});