-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
160 lines (134 loc) · 4.66 KB
/
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
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
var axios = require('axios');
var expect = require('chai').expect;
var LocalStorage = require('node-localstorage').LocalStorage;
global.localStorage = new LocalStorage('./.tmp');
var URL = 'https://example.com/user';
var fauxServer = require('./index.js');
// prevent the (node) warning: possible EventEmitter memory leak detected.
require('events').EventEmitter.prototype._maxListeners = 100;
var server = null;
before(function() {
server = fauxServer();
});
after(function() {
server.restore();
});
beforeEach(function() {
global.localStorage.clear();
});
describe('when creating an object', function() {
it('returns the object to be created and appends an id, createdAt, and updatedAt', function() {
return axios.post(URL, { foo: 'bar' }).then(function(data) {
expect(data.status).to.eq(201);
expect(data.data).to.have.keys('foo', 'id', 'createdAt', 'updatedAt');
expect(data.data.foo).to.eq('bar');
});
});
});
describe('when reading an object by id', function() {
var id = null;
describe('when the object exists', function() {
beforeEach(function() {
return axios.post(URL, { foo: 'bar' }).then(function(data) {
id = data.data.id;
});
});
it('returns the object', function() {
return axios.get(URL + '/' + id).then(function(data) {
expect(data.status).to.eq(200);
expect(data.data).to.have.keys('foo', 'id', 'createdAt', 'updatedAt');
expect(data.data.foo).to.eq('bar');
});
});
});
describe('when the object does not exists', function() {
it('returns not found', function() {
return axios.get(URL + '/000111').catch(function(data) {
expect(data.status).to.eq(404);
})
});
});
});
describe('when reading from a collection endpoint', function() {
beforeEach(function() {
return axios.post(URL, { foo: 'bar' });
});
it('returns an array with all the objects in that collection', function() {
return axios.get(URL).then(function(data) {
expect(data.status).to.eq(200);
expect(data.data.length).to.eq(1);
expect(data.data[0]).to.have.keys('foo', 'id', 'createdAt', 'updatedAt');
expect(data.data[0].foo).to.eq('bar');
})
});
});
describe('when using query params against a collection endpoint', function() {
beforeEach(function() {
return axios.post(URL, { name: 'foo', age: 34 }).then(function() {
return axios.post(URL, { name: 'bar', age: 23 });
}).then(function() {
return axios.post(URL, { name: 'biz', age: 32 });
}).then(function() {
return axios.post(URL, { name: 'baz', age: 18 });
});
});
it('returns an array with all the objects in that collection', function() {
return axios.get(URL + '?name=biz&age=32').then(function(data) {
expect(data.status).to.eq(200);
expect(data.data.length).to.eq(1);
expect(data.data[0]).to.have.keys('name', 'age', 'id', 'createdAt', 'updatedAt');
expect(data.data[0].name).to.eq('biz');
expect(data.data[0].age).to.eq(32);
})
});
});
describe('when deleting an object by id', function() {
var id = null;
describe('when the object exists', function() {
beforeEach(function() {
return axios.post(URL, { foo: 'bar' }).then(function(data) {
id = data.data.id;
});
});
it('deletes the object and returns 204', function() {
return axios.delete(URL + '/' + id).then(function(data) {
expect(data.status).to.eq(204);
return axios.get(URL + '/' + id).catch(function(data) {
expect(data.status).to.eq(404);
});
});
});
});
describe('when the object does not exists', function() {
it('returns not found', function() {
return axios.delete(URL + '/000111').catch(function(data) {
expect(data.status).to.eq(404);
});
});
});
});
describe('when updating an object by id', function() {
var id = null;
describe('when the object exists', function() {
beforeEach(function() {
return axios.post(URL, { foo: 'bar' }).then(function(data) {
id = data.data.id;
});
});
it('updates the object and returns the updated object', function() {
return axios.put(URL + '/' + id, { biz: 'baz' }).then(function(data) {
expect(data.status).to.eq(200);
expect(data.data).to.have.keys('foo', 'biz', 'id', 'createdAt', 'updatedAt');
expect(data.data.foo).to.eq('bar');
expect(data.data.biz).to.eq('baz');
});
});
});
describe('when the object does not exists', function() {
it('returns not found', function() {
return axios.put(URL + '/000111', { biz: 'baz' }).catch(function(data) {
expect(data.status).to.eq(404);
});
});
});
});