1
0
Fork 0
mirror of synced 2024-07-14 18:55:45 +12:00

Namespacing

This commit is contained in:
Adria Navarro 2023-07-18 10:30:15 +02:00
parent f7452aa7fa
commit 5731b26079
2 changed files with 25 additions and 22 deletions

View file

@ -41,7 +41,7 @@ describe("/v2/views", () => {
beforeAll(async () => {
await config.createTable(priceTable())
for (let id = 0; id < 10; id++) {
views.push(await config.createViewV2())
views.push(await config.api.viewV2.create())
}
})
@ -62,7 +62,7 @@ describe("/v2/views", () => {
const newTable = await config.createTable(priceTable())
const newViews = []
for (let id = 0; id < 5; id++) {
newViews.push(await config.createViewV2({ tableId: newTable._id }))
newViews.push(await config.api.viewV2.create({ tableId: newTable._id }))
}
const res = await request
@ -100,7 +100,7 @@ describe("/v2/views", () => {
let view: ViewV2
beforeAll(async () => {
view = await config.createViewV2()
view = await config.api.viewV2.create()
})
it("can fetch the expected view", async () => {
@ -151,18 +151,18 @@ describe("/v2/views", () => {
beforeAll(async () => {
await config.createTable(priceTable())
view = await config.createViewV2()
view = await config.api.viewV2.create()
})
it("can delete an existing view", async () => {
await config.getViewV2(view._id!).expect(200)
await config.api.viewV2.get(view._id!).expect(200)
await request
.delete(`/api/v2/views/${view._id}`)
.set(config.defaultHeaders())
.expect(204)
await config.getViewV2(view._id!).expect(404)
await config.api.viewV2.get(view._id!).expect(404)
})
})
})

View file

@ -635,22 +635,25 @@ class TestConfiguration {
return this._req(view, null, controllers.view.v1.save)
}
async createViewV2(config?: Partial<ViewV2>) {
if (!this.table) {
throw "Test requires table to be configured."
}
const view = {
tableId: this.table._id,
name: generator.guid(),
...config,
}
return this._req(view, null, controllers.view.v2.save)
}
getViewV2(viewId: string): supertest.Test {
return this.request!.get(`/api/v2/views/${viewId}`)
.set(this.defaultHeaders())
.expect("Content-Type", /json/)
api = {
viewV2: {
create: async (config?: Partial<ViewV2>) => {
if (!this.table) {
throw "Test requires table to be configured."
}
const view = {
tableId: this.table._id,
name: generator.guid(),
...config,
}
return this._req(view, null, controllers.view.v2.save)
},
get: (viewId: string): supertest.Test => {
return this.request!.get(`/api/v2/views/${viewId}`)
.set(this.defaultHeaders())
.expect("Content-Type", /json/)
},
},
}
// AUTOMATION