1
0
Fork 0
mirror of synced 2024-06-02 02:25:17 +12:00
budibase/qa-core/src/config/internal-api/TestConfiguration/applications.ts

54 lines
1.6 KiB
TypeScript
Raw Normal View History

2022-09-27 04:54:14 +13:00
import {
Application,
} from "@budibase/server/api/controllers/public/mapping/types"
2022-10-01 03:03:38 +13:00
import { App } from "@budibase/types"
2022-09-27 04:54:14 +13:00
import { Response } from "node-fetch"
import InternalAPIClient from "./InternalAPIClient"
2022-10-01 03:35:13 +13:00
import FormData from "form-data"
2022-09-27 04:54:14 +13:00
export default class AppApi {
api: InternalAPIClient
constructor(apiClient: InternalAPIClient) {
this.api = apiClient
}
2022-09-29 06:21:05 +13:00
async fetch(): Promise<[Response, Application[]]> {
const response = await this.api.get(`/applications?status=all`)
const json = await response.json()
return [response, json]
}
2022-10-01 03:35:13 +13:00
async canRender(): Promise<[Response, boolean]> {
const response = await this.api.get("/routing/client")
const json = await response.json()
return [response, Object.keys(json.routes).length > 0]
2022-10-01 03:03:38 +13:00
}
async getAppPackage(appId: string): Promise<[Response, any]> {
const response = await this.api.get(`/applications/${appId}/appPackage`)
const json = await response.json()
return [response, json]
}
async publish(): Promise<[Response, string]> {
const response = await this.api.post("/deploy")
const json = await response.json()
return [response, json]
}
2022-09-27 04:54:14 +13:00
async create(
body: any
2022-10-01 03:03:38 +13:00
): Promise<[Response, Partial<App>]> {
2022-10-01 14:54:51 +13:00
const response = await this.api.post(`/applications`, { body })
2022-09-27 04:54:14 +13:00
const json = await response.json()
2022-09-29 06:21:05 +13:00
return [response, json]
2022-09-27 04:54:14 +13:00
}
async read(id: string): Promise<[Response, Application]> {
const response = await this.api.get(`/applications/${id}`)
const json = await response.json()
return [response, json.data]
}
}