-
-
Notifications
You must be signed in to change notification settings - Fork 343
/
httpPact.spec.ts
361 lines (306 loc) · 10.5 KB
/
httpPact.spec.ts
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
/* tslint:disable:no-unused-expression object-literal-sort-keys max-classes-per-file no-empty no-console no-string-literal*/
import * as chai from "chai"
import * as chaiAsPromised from "chai-as-promised"
import * as sinon from "sinon"
import * as sinonChai from "sinon-chai"
import { HTTPMethod } from "./common/request"
import { Interaction, InteractionObject } from "./dsl/interaction"
import { MockService } from "./dsl/mockService"
import { PactOptions, PactOptionsComplete } from "./dsl/options"
import serviceFactory from "@pact-foundation/pact-node"
import { Pact } from "./httpPact"
import { ImportMock } from "ts-mock-imports"
// Mock out the PactNode interfaces
class PactServer {
public start(): void {}
public delete(): void {}
}
chai.use(sinonChai)
chai.use(chaiAsPromised)
const expect = chai.expect
describe("Pact", () => {
let pact: Pact
const fullOpts = {
consumer: "A",
provider: "B",
port: 1234,
host: "127.0.0.1",
ssl: false,
logLevel: "info",
spec: 2,
cors: false,
pactfileWriteMode: "overwrite",
} as PactOptionsComplete
before(() => {
// Stub out pact-node
const manager = ImportMock.mockClass(serviceFactory, "createServer") as any
manager.mock("createServer", () => {})
})
beforeEach(() => {
pact = (Object.create(Pact.prototype) as any) as Pact
pact.opts = fullOpts
})
afterEach(() => {
sinon.restore()
// return serviceFactory.removeAllServers()
})
describe("#constructor", () => {
it("throws Error when consumer not provided", () => {
expect(() => {
new Pact({ consumer: "", provider: "provider" })
}).to.throw(Error, "You must specify a Consumer for this pact.")
})
it("throws Error when provider not provided", () => {
expect(() => {
new Pact({ consumer: "someconsumer", provider: "" })
}).to.throw(Error, "You must specify a Provider for this pact.")
})
})
describe("#createOptionsWithDefault", () => {
const constructorOpts: PactOptions = {
consumer: "A",
provider: "B",
}
it("merges options with sensible defaults", () => {
const opts = Pact.createOptionsWithDefaults(constructorOpts)
expect(opts.consumer).to.eq("A")
expect(opts.provider).to.eq("B")
expect(opts.cors).to.eq(false)
expect(opts.host).to.eq("127.0.0.1")
expect(opts.logLevel).to.eq("info")
expect(opts.spec).to.eq(2)
expect(opts.dir).not.to.be.empty
expect(opts.log).not.to.be.empty
expect(opts.pactfileWriteMode).to.eq("overwrite")
expect(opts.ssl).to.eq(false)
expect(opts.sslcert).to.eq(undefined)
expect(opts.sslkey).to.eq(undefined)
})
})
describe("#setup", () => {
const serverMock = {
start: () => Promise.resolve(),
options: { port: 1234 },
logLevel: (a: any) => {},
}
describe("when server is not properly configured", () => {
describe("and pact-node is unable to start the server", () => {
it("returns a rejected promise", async () => {
const p: any = new Pact(fullOpts)
p.server = {
start: () => Promise.reject("pact-node error"),
options: { port: 1234 },
}
return expect(p.setup()).to.eventually.be.rejectedWith(
"pact-node error"
)
})
})
})
describe("when server is properly configured", () => {
it("starts the mock server in the background", () => {
const p: any = new Pact(fullOpts)
p.server = serverMock
return expect(p.setup()).to.eventually.be.fulfilled
})
})
describe("when server is properly configured", () => {
it("returns the current configuration", () => {
const p: any = new Pact(fullOpts)
p.server = serverMock
return expect(p.setup()).to.eventually.include({
consumer: "A",
provider: "B",
port: 1234,
host: "127.0.0.1",
ssl: false,
logLevel: "info",
spec: 2,
cors: false,
pactfileWriteMode: "overwrite",
})
})
})
})
describe("#addInteraction", () => {
const interaction: InteractionObject = {
state: "i have a list of projects",
uponReceiving: "a request for projects",
withRequest: {
method: HTTPMethod.GET,
path: "/projects",
headers: { Accept: "application/json" },
},
willRespondWith: {
status: 200,
headers: { "Content-Type": "application/json" },
body: {},
},
}
describe("when given a provider state", () => {
it("creates interaction with state", () => {
pact.mockService = {
addInteraction: (
int: InteractionObject
): Promise<string | undefined> => Promise.resolve(int.state),
} as any
return expect(
pact.addInteraction(interaction)
).to.eventually.have.property("providerState")
})
})
describe("when not given a provider state", () => {
it("creates interaction with no state", () => {
pact.mockService = {
addInteraction: (
int: InteractionObject
): Promise<string | undefined> => Promise.resolve(int.state),
} as any
interaction.state = undefined
return expect(
pact.addInteraction(interaction)
).to.eventually.not.have.property("providerState")
})
describe("when given an Interaction as a builder", () => {
it("creates interaction", () => {
const interaction2 = new Interaction()
.given("i have a list of projects")
.uponReceiving("a request for projects")
.withRequest({
method: HTTPMethod.GET,
path: "/projects",
headers: { Accept: "application/json" },
})
.willRespondWith({
status: 200,
headers: { "Content-Type": "application/json" },
body: {},
})
pact.mockService = {
addInteraction: (int: Interaction): Promise<Interaction> =>
Promise.resolve(int),
} as any
return expect(
pact.addInteraction(interaction2)
).to.eventually.have.property("given")
})
})
})
})
describe("#verify", () => {
describe("when pact verification is successful", () => {
it("returns a successful promise and remove interactions", () => {
pact.mockService = {
verify: () => Promise.resolve("verified!"),
removeInteractions: () => Promise.resolve("removeInteractions"),
} as any
const verifyPromise = pact.verify()
return Promise.all([
expect(verifyPromise).to.eventually.eq("removeInteractions"),
expect(verifyPromise).to.eventually.be.fulfilled,
])
})
})
describe("when pact verification is unsuccessful", () => {
it("throws an error", () => {
const removeInteractionsStub = sinon
.stub(MockService.prototype, "removeInteractions")
.resolves("removeInteractions")
pact.mockService = {
verify: () => Promise.reject("not verified!"),
removeInteractions: removeInteractionsStub,
} as any
const verifyPromise = pact.verify()
return Promise.all([
expect(verifyPromise).to.eventually.be.rejectedWith(Error),
verifyPromise.catch(() =>
expect(removeInteractionsStub).to.callCount(1)
),
])
})
})
describe("when pact verification is successful", () => {
describe("and an error is thrown in the cleanup", () => {
it("throws an error", () => {
pact.mockService = {
verify: () => Promise.resolve("verified!"),
removeInteractions: () => {
throw new Error("error removing interactions")
},
} as any
return expect(pact.verify()).to.eventually.be.rejectedWith(Error)
})
})
})
})
describe("#finalize", () => {
describe("when writing Pact is successful", () => {
it("returns a successful promise and shuts down down the mock server", () => {
pact.mockService = {
writePact: () => Promise.resolve("pact file written!"),
removeInteractions: sinon.stub(),
} as any
pact.server = {
delete: () => Promise.resolve(),
} as any
return expect(pact.finalize()).to.eventually.be.fulfilled
})
})
describe("when writing Pact is unsuccessful", () => {
it("throws an error and shuts down the server", () => {
pact.mockService = {
writePact: () => Promise.reject(new Error("pact not file written!")),
removeInteractions: sinon.stub(),
} as any
const deleteStub = sinon.stub(PactServer.prototype, "delete").resolves()
pact.server = { delete: deleteStub } as any
return expect(pact.finalize()).to.eventually.be.rejected.then(() =>
expect(deleteStub).to.callCount(1)
)
})
})
describe("when writing pact is successful and shutting down the mock server is unsuccessful", () => {
it("throws an error", () => {
pact.mockService = {
writePact: sinon.stub(),
removeInteractions: sinon.stub(),
} as any
pact.server = {
delete: () => Promise.reject(),
} as any
return expect(pact.finalize).to.throw(Error)
})
})
})
describe("#writePact", () => {
describe("when writing Pact is successful", () => {
it("returns a successful promise", () => {
pact.mockService = {
writePact: () => Promise.resolve("pact file written!"),
removeInteractions: sinon.stub(),
} as any
const writePactPromise = pact.writePact()
return Promise.all([
expect(writePactPromise).to.eventually.eq("pact file written!"),
expect(writePactPromise).to.eventually.be.fulfilled,
])
})
})
})
describe("#removeInteractions", () => {
describe("when removing interactions is successful", () => {
it("returns a successful promise", () => {
pact.mockService = {
removeInteractions: () => Promise.resolve("interactions removed!"),
} as any
const removeInteractionsPromise = pact.removeInteractions()
return Promise.all([
expect(removeInteractionsPromise).to.eventually.eq(
"interactions removed!"
),
expect(removeInteractionsPromise).to.eventually.be.fulfilled,
])
})
})
})
})