1
0
Fork 0
mirror of synced 2024-06-30 12:00:31 +12:00
budibase/packages/server/src/integrations/tests/mysql.spec.ts

77 lines
2.3 KiB
TypeScript
Raw Normal View History

import { default as MySQLIntegration } from "../mysql"
2021-10-22 02:47:35 +13:00
jest.mock("mysql2")
2021-03-16 05:26:46 +13:00
class TestConfiguration {
integration: any
constructor(config: any = { ssl: {} }) {
2021-06-04 05:48:04 +12:00
this.integration = new MySQLIntegration.integration(config)
2021-03-16 05:26:46 +13:00
}
}
2021-03-17 07:43:56 +13:00
describe("MySQL Integration", () => {
let config: any
2021-03-16 05:26:46 +13:00
beforeEach(() => {
config = new TestConfiguration()
})
2021-03-17 08:01:51 +13:00
it("calls the create method with the correct params", async () => {
2021-03-16 05:26:46 +13:00
const sql = "insert into users (name, age) values ('Joe', 123);"
2021-06-04 05:48:04 +12:00
await config.integration.create({
sql,
2021-03-16 05:26:46 +13:00
})
expect(config.integration.client.query).toHaveBeenCalledWith(sql, [])
2021-03-16 05:26:46 +13:00
})
it("calls the read method with the correct params", async () => {
const sql = "select * from users;"
2021-06-04 05:48:04 +12:00
await config.integration.read({
sql,
2021-03-17 08:01:51 +13:00
})
expect(config.integration.client.query).toHaveBeenCalledWith(sql, [])
2021-03-16 05:26:46 +13:00
})
it("calls the update method with the correct params", async () => {
const sql = "update table users set name = 'test';"
2021-06-04 05:48:04 +12:00
await config.integration.update({
sql,
2021-03-16 05:26:46 +13:00
})
expect(config.integration.client.query).toHaveBeenCalledWith(sql, [])
2021-03-16 05:26:46 +13:00
})
it("calls the delete method with the correct params", async () => {
const sql = "delete from users where name = 'todelete';"
2021-06-04 05:48:04 +12:00
await config.integration.delete({
sql,
2021-03-16 05:26:46 +13:00
})
expect(config.integration.client.query).toHaveBeenCalledWith(sql, [])
2021-03-16 05:26:46 +13:00
})
describe("no rows returned", () => {
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,
2021-03-16 05:26:46 +13:00
})
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,
2021-03-16 05:26:46 +13:00
})
expect(response).toEqual([{ updated: true }])
})
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,
2021-03-16 05:26:46 +13:00
})
expect(response).toEqual([{ deleted: true }])
})
})
})