This repository was archived by the owner on Jan 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcovet_spec.coffee
184 lines (160 loc) · 5.09 KB
/
covet_spec.coffee
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
describe 'covet', ->
afterEach (done) ->
del "covet/routes", -> done()
describe "stubbing", ->
BUNNY =
id: 3
name: "Frank"
age: 12
describe "static GET route", ->
beforeEach (done) ->
post 'covet/routes',
verb: 'get'
path: '/bunnies/3'
response:
json: BUNNY
, (body, res) ->
done()
it 'gets the bunny', (done) ->
get "bunnies/3", (body) ->
expect(body).to.deep.equal(BUNNY)
done()
describe "tearing down the previous example group", ->
it "successfully tears down to prevent test pollution", (done) ->
get "bunnies/3", (body, res) ->
expect(res.statusCode).to.equal(404)
done()
describe "dynamic, conditional GET route", ->
context "with an ID", ->
beforeEach (done) ->
post 'covet/routes',
verb: 'get'
path: '/bunnies/:id'
request:
params:
id: 3
response:
json: BUNNY
, (body, res) ->
done()
it 'satisfied stubbing gets bunny', (done) ->
get "bunnies/3", (body) ->
expect(body).to.deep.equal(BUNNY)
done()
it 'unsatisfied stubbings get nothing', (done) ->
get "bunnies/2", (body, res) ->
expect(res.statusCode).to.equal(400)
done()
context "with an ID and an Age", ->
beforeEach (done) ->
post 'covet/routes',
verb: 'get'
path: '/bunnies/:id/:age'
request:
params:
id: 3
age: 12
response:
json: BUNNY
, (body, res) ->
done()
it 'satisfied stubbing gets bunny', (done) ->
get "bunnies/3/12", (body, res) ->
expect(body).to.deep.equal(BUNNY)
expect(res.statusCode).to.equal(200)
done()
it 'unsatisfied stubbings get nothing', (done) ->
get "bunnies/3/11", (body, res) ->
expect(res.statusCode).to.equal(400)
done()
describe "dynamic, conditional POST route", ->
context "with an ID and an Age", ->
beforeEach (done) ->
post 'covet/routes',
verb: 'post'
path: '/bunnies'
request:
body:
id: 3
age: 12
response:
json: BUNNY
statusCode: 201
, (body, res) ->
done()
it 'satisfied stubbing gets bunny', (done) ->
post "bunnies", {id: 3, age: 12}, (body, res) ->
expect(body).to.deep.equal(BUNNY)
expect(res.statusCode).to.equal(201)
done()
it 'unsatisfied stubbings get nothing', (done) ->
post "bunnies", {id: 3, age: 11}, (body, res) ->
expect(res.statusCode).to.equal(400)
done()
describe "dynamic, conditional PUT route", ->
context "with an ID and an Age", ->
beforeEach (done) ->
post 'covet/routes',
verb: 'put'
path: '/bunnies/:id/:age'
request:
params:
id: 3
age: 12
response:
json: BUNNY
, (body, res) ->
done()
it 'satisfied stubbing gets bunny', (done) ->
put "bunnies/3/12", {id: 3, age: 12}, (body, res) ->
expect(body).to.deep.equal(BUNNY)
expect(res.statusCode).to.equal(200)
done()
it 'unsatisfied stubbings get nothing', (done) ->
put "bunnies/3/11", {id: 3, age: 12}, (body, res) ->
expect(res.statusCode).to.equal(400)
done()
describe "dynamic, conditional DELETE route", ->
context "with an ID and an Age", ->
beforeEach (done) ->
post 'covet/routes',
verb: 'delete'
path: '/bunnies/:id/:age'
request:
params:
id: 3
age: 12
response:
json: ''
statusCode: 204
, (body, res) ->
done()
it 'satisfied stubbing gets bunny', (done) ->
del "bunnies/3/12", (body, res) ->
expect(body).to.deep.equal('')
expect(res.statusCode).to.equal(204)
done()
it 'unsatisfied stubbings get nothing', (done) ->
del "bunnies/3/11", (body, res) ->
expect(res.statusCode).to.equal(400)
done()
describe "overriding routes", ->
beforeEach (done) ->
post 'covet/routes',
verb: 'get'
path: '/bunnies/:id'
response:
json:
name: "Default Bunny"
, ->
post 'covet/routes',
verb: 'get'
path: '/bunnies/3'
response:
json: BUNNY
, ->
done()
it 'gets the more-specifically-stubbed bunny', (done) ->
get "bunnies/3", (body) ->
expect(body).to.deep.equal(BUNNY)
done()