budibase/packages/server/src/integrations/tests/postgres.spec.js

79 lines
2.3 KiB
JavaScript
Raw Normal View History

2021-03-15 17:07:04 +01:00
const pg = require("pg")
const PostgresIntegration = require("../postgres")
jest.mock("pg")
2021-03-12 10:29:27 +01:00
class TestConfiguration {
constructor(config = {}) {
2021-03-15 17:07:04 +01:00
this.integration = new PostgresIntegration.integration(config)
2021-03-12 10:29:27 +01:00
}
}
2021-03-15 17:07:04 +01:00
describe("Postgres Integration", () => {
2021-03-12 10:29:27 +01:00
let config
beforeEach(() => {
config = new TestConfiguration()
})
it("calls the create method with the correct params", async () => {
2021-03-15 17:07:04 +01:00
const sql = "insert into users (name, age) values ('Joe', 123);"
const response = await config.integration.create({
sql
2021-03-12 10:29:27 +01:00
})
2021-06-17 16:24:52 +02:00
expect(pg.queryMock).toHaveBeenCalledWith(sql, undefined)
2021-03-12 10:29:27 +01:00
})
2021-03-15 17:07:04 +01:00
it("calls the read method with the correct params", async () => {
const sql = "select * from users;"
const response = await config.integration.read({
sql
})
2021-06-17 16:24:52 +02:00
expect(pg.queryMock).toHaveBeenCalledWith(sql, undefined)
2021-03-12 10:29:27 +01:00
})
2021-03-15 17:07:04 +01:00
it("calls the update method with the correct params", async () => {
const sql = "update table users set name = 'test';"
const response = await config.integration.update({
sql
})
2021-06-17 16:24:52 +02:00
expect(pg.queryMock).toHaveBeenCalledWith(sql, undefined)
2021-03-15 17:07:04 +01:00
})
2021-03-12 10:29:27 +01:00
2021-03-15 17:07:04 +01:00
it("calls the delete method with the correct params", async () => {
const sql = "delete from users where name = 'todelete';"
2021-05-21 17:02:21 +02:00
await config.integration.delete({
2021-03-15 17:07:04 +01:00
sql
})
2021-06-17 16:24:52 +02:00
expect(pg.queryMock).toHaveBeenCalledWith(sql, undefined)
2021-03-12 10:29:27 +01:00
})
2021-03-15 17:07:04 +01:00
describe("no rows returned", () => {
2021-03-15 17:26:46 +01:00
beforeEach(() => {
2021-05-21 17:02:21 +02:00
pg.queryMock.mockImplementation(() => ({ rows: [] }))
2021-03-15 17:26:46 +01:00
})
2021-03-15 17:07:04 +01:00
it("returns the correct response when the create response has no rows", async () => {
const sql = "insert into users (name, age) values ('Joe', 123);"
const response = await config.integration.create({
sql
})
expect(response).toEqual([{ created: true }])
})
it("returns the correct response when the update response has no rows", async () => {
const sql = "update table users set name = 'test';"
const response = await config.integration.update({
sql
})
expect(response).toEqual([{ updated: true }])
})
2021-03-12 10:29:27 +01:00
2021-03-15 17:07:04 +01:00
it("returns the correct response when the delete response has no rows", async () => {
const sql = "delete from users where name = 'todelete';"
const response = await config.integration.delete({
sql
})
expect(response).toEqual([{ deleted: true }])
})
2021-03-12 10:29:27 +01:00
})
})