Adding test cases for all implemented endpoints.
This commit is contained in:
parent
f3418044dc
commit
033e320e49
|
@ -51,12 +51,15 @@ export async function read(ctx: any) {
|
||||||
|
|
||||||
export async function update(ctx: any) {
|
export async function update(ctx: any) {
|
||||||
ctx.request.body = await addRev(fixRow(ctx.request.body, ctx.params.tableId))
|
ctx.request.body = await addRev(fixRow(ctx.request.body, ctx.params.tableId))
|
||||||
|
await rowController.save(ctx)
|
||||||
ctx.body = { row: ctx.body }
|
ctx.body = { row: ctx.body }
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function destroy(ctx: any) {
|
export async function destroy(ctx: any) {
|
||||||
// set the body as expected, with the _id and _rev fields
|
// set the body as expected, with the _id and _rev fields
|
||||||
ctx.request.body = await addRev(fixRow({}, ctx.params.tableId))
|
ctx.request.body = await addRev(
|
||||||
|
fixRow({ _id: ctx.params.rowId }, ctx.params.tableId)
|
||||||
|
)
|
||||||
await rowController.destroy(ctx)
|
await rowController.destroy(ctx)
|
||||||
// destroy controller doesn't currently return the row as the body, need to adjust this
|
// destroy controller doesn't currently return the row as the body, need to adjust this
|
||||||
// in the public API to be correct
|
// in the public API to be correct
|
||||||
|
|
|
@ -8,10 +8,10 @@ jestOpenAPI(yamlPath)
|
||||||
|
|
||||||
let request = setup.getRequest()
|
let request = setup.getRequest()
|
||||||
let config = setup.getConfig()
|
let config = setup.getConfig()
|
||||||
let apiKey, table
|
let apiKey, table, app
|
||||||
|
|
||||||
beforeAll(async () => {
|
beforeAll(async () => {
|
||||||
await config.init()
|
app = await config.init()
|
||||||
table = await config.updateTable()
|
table = await config.updateTable()
|
||||||
apiKey = await config.generateApiKey()
|
apiKey = await config.generateApiKey()
|
||||||
})
|
})
|
||||||
|
@ -72,29 +72,47 @@ describe("check the applications endpoints", () => {
|
||||||
|
|
||||||
describe("check the tables endpoints", () => {
|
describe("check the tables endpoints", () => {
|
||||||
it("should allow retrieving tables through search", async () => {
|
it("should allow retrieving tables through search", async () => {
|
||||||
|
await config.createApp("new app 1")
|
||||||
|
table = await config.updateTable()
|
||||||
const res = await makeRequest("post", "/tables/search")
|
const res = await makeRequest("post", "/tables/search")
|
||||||
expect(res).toSatisfyApiSpec()
|
expect(res).toSatisfyApiSpec()
|
||||||
})
|
})
|
||||||
|
|
||||||
it("should allow creating a table", async () => {
|
it("should allow creating a table", async () => {
|
||||||
|
const res = await makeRequest("post", "/tables", {
|
||||||
|
name: "table name",
|
||||||
|
primaryDisplay: "column1",
|
||||||
|
schema: {
|
||||||
|
column1: {
|
||||||
|
type: "string",
|
||||||
|
constraints: {},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
expect(res).toSatisfyApiSpec()
|
||||||
})
|
})
|
||||||
|
|
||||||
it("should allow updating a table", async () => {
|
it("should allow updating a table", async () => {
|
||||||
|
const updated = { ...table, _rev: undefined, name: "new name" }
|
||||||
|
const res = await makeRequest("put", `/tables/${table._id}`, updated)
|
||||||
|
expect(res).toSatisfyApiSpec()
|
||||||
})
|
})
|
||||||
|
|
||||||
it("should allow retrieving a table", async () => {
|
it("should allow retrieving a table", async () => {
|
||||||
|
const res = await makeRequest("get", `/tables/${table._id}`)
|
||||||
|
expect(res).toSatisfyApiSpec()
|
||||||
})
|
})
|
||||||
|
|
||||||
it("should allow deleting a table", async () => {
|
it("should allow deleting a table", async () => {
|
||||||
|
const res = await makeRequest("delete", `/tables/${table._id}`)
|
||||||
|
expect(res).toSatisfyApiSpec()
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
describe("check the rows endpoints", () => {
|
describe("check the rows endpoints", () => {
|
||||||
|
let row
|
||||||
it("should allow retrieving rows through search", async () => {
|
it("should allow retrieving rows through search", async () => {
|
||||||
|
table = await config.updateTable()
|
||||||
const res = await makeRequest("post", `/tables/${table._id}/rows/search`, {
|
const res = await makeRequest("post", `/tables/${table._id}/rows/search`, {
|
||||||
query: {
|
query: {
|
||||||
},
|
},
|
||||||
|
@ -103,19 +121,28 @@ describe("check the rows endpoints", () => {
|
||||||
})
|
})
|
||||||
|
|
||||||
it("should allow creating a row", async () => {
|
it("should allow creating a row", async () => {
|
||||||
|
const res = await makeRequest("post", `/tables/${table._id}/rows`, {
|
||||||
|
name: "test row",
|
||||||
|
})
|
||||||
|
expect(res).toSatisfyApiSpec()
|
||||||
|
row = res.body.row
|
||||||
})
|
})
|
||||||
|
|
||||||
it("should allow updating a row", async () => {
|
it("should allow updating a row", async () => {
|
||||||
|
const res = await makeRequest("put", `/tables/${table._id}/rows/${row._id}`, {
|
||||||
|
name: "test row updated",
|
||||||
|
})
|
||||||
|
expect(res).toSatisfyApiSpec()
|
||||||
})
|
})
|
||||||
|
|
||||||
it("should allow retrieving a row", async () => {
|
it("should allow retrieving a row", async () => {
|
||||||
|
const res = await makeRequest("get", `/tables/${table._id}/rows/${row._id}`)
|
||||||
|
expect(res).toSatisfyApiSpec()
|
||||||
})
|
})
|
||||||
|
|
||||||
it("should allow deleting a row", async () => {
|
it("should allow deleting a row", async () => {
|
||||||
|
const res = await makeRequest("delete", `/tables/${table._id}/rows/${row._id}`)
|
||||||
|
expect(res).toSatisfyApiSpec()
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue