UNPKG

@budibase/server

Version:
53 lines (45 loc) 1.41 kB
import { checkBuilderEndpoint } from "./utilities/TestFunctions" import * as setup from "./utilities" describe("/integrations", () => { let request = setup.getRequest() let config = setup.getConfig() afterAll(setup.afterAll) beforeAll(async () => { await config.init() }) describe("fetch", () => { it("should be able to get all integration definitions", async () => { const res = await request .get(`/api/integrations`) .set(config.defaultHeaders()) .expect("Content-Type", /json/) .expect(200) expect(res.body.POSTGRES).toBeDefined() expect(res.body.POSTGRES.friendlyName).toEqual("PostgreSQL") }) it("should apply authorization to endpoint", async () => { await checkBuilderEndpoint({ config, method: "GET", url: `/api/integrations`, }) }) }) describe("find", () => { it("should be able to get postgres definition", async () => { const res = await request .get(`/api/integrations/POSTGRES`) .set(config.defaultHeaders()) .expect("Content-Type", /json/) .expect(200) expect(res.body.friendlyName).toEqual("PostgreSQL") }) it("should apply authorization to endpoint", async () => { await checkBuilderEndpoint({ config, method: "GET", url: `/api/integrations/POSTGRES`, }) }) }) })