2023-02-27 17:25:48 +01:00
|
|
|
import type { GoogleSpreadsheetWorksheet } from "google-spreadsheet"
|
|
|
|
|
|
|
|
jest.mock("google-auth-library")
|
|
|
|
const { OAuth2Client } = require("google-auth-library")
|
|
|
|
|
|
|
|
const setCredentialsMock = jest.fn()
|
|
|
|
const getAccessTokenMock = jest.fn()
|
|
|
|
|
|
|
|
OAuth2Client.mockImplementation(() => {
|
|
|
|
return {
|
|
|
|
setCredentials: setCredentialsMock,
|
|
|
|
getAccessToken: getAccessTokenMock,
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
jest.mock("google-spreadsheet")
|
|
|
|
const { GoogleSpreadsheet } = require("google-spreadsheet")
|
|
|
|
|
|
|
|
const sheetsByTitle: { [title: string]: GoogleSpreadsheetWorksheet } = {}
|
2023-05-23 10:14:06 +02:00
|
|
|
const sheetsByIndex: GoogleSpreadsheetWorksheet[] = []
|
2023-02-27 17:25:48 +01:00
|
|
|
|
|
|
|
GoogleSpreadsheet.mockImplementation(() => {
|
|
|
|
return {
|
|
|
|
useOAuth2Client: jest.fn(),
|
|
|
|
loadInfo: jest.fn(),
|
|
|
|
sheetsByTitle,
|
2023-05-23 10:14:06 +02:00
|
|
|
sheetsByIndex,
|
2023-02-27 17:25:48 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
import { structures } from "@budibase/backend-core/tests"
|
|
|
|
import TestConfiguration from "../../tests/utilities/TestConfiguration"
|
|
|
|
import GoogleSheetsIntegration from "../googlesheets"
|
|
|
|
import { FieldType, Table, TableSchema } from "../../../../types/src/documents"
|
|
|
|
|
|
|
|
describe("Google Sheets Integration", () => {
|
|
|
|
let integration: any,
|
|
|
|
config = new TestConfiguration()
|
|
|
|
|
2023-03-06 11:33:49 +01:00
|
|
|
beforeAll(() => {
|
|
|
|
config.setGoogleAuth("test")
|
|
|
|
})
|
|
|
|
|
2023-03-27 20:38:49 +02:00
|
|
|
afterAll(async () => {
|
|
|
|
await config.end()
|
|
|
|
})
|
|
|
|
|
2023-02-27 17:25:48 +01:00
|
|
|
beforeEach(async () => {
|
|
|
|
integration = new GoogleSheetsIntegration.integration({
|
|
|
|
spreadsheetId: "randomId",
|
|
|
|
auth: {
|
|
|
|
appId: "appId",
|
|
|
|
accessToken: "accessToken",
|
|
|
|
refreshToken: "refreshToken",
|
|
|
|
},
|
|
|
|
})
|
|
|
|
await config.init()
|
|
|
|
})
|
|
|
|
|
|
|
|
function createBasicTable(name: string, columns: string[]): Table {
|
|
|
|
return {
|
|
|
|
name,
|
|
|
|
schema: {
|
|
|
|
...columns.reduce((p, c) => {
|
|
|
|
p[c] = {
|
|
|
|
name: c,
|
|
|
|
type: FieldType.STRING,
|
|
|
|
constraints: {
|
|
|
|
type: "string",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
return p
|
|
|
|
}, {} as TableSchema),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function createSheet({
|
|
|
|
headerValues,
|
|
|
|
}: {
|
|
|
|
headerValues: string[]
|
|
|
|
}): GoogleSpreadsheetWorksheet {
|
|
|
|
return {
|
|
|
|
// to ignore the unmapped fields
|
|
|
|
...({} as any),
|
|
|
|
loadHeaderRow: jest.fn(),
|
|
|
|
headerValues,
|
|
|
|
setHeaderRow: jest.fn(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
describe("update table", () => {
|
2023-05-23 10:14:06 +02:00
|
|
|
it("adding a new field will be adding a new header row", async () => {
|
2023-02-27 17:25:48 +01:00
|
|
|
await config.doInContext(structures.uuid(), async () => {
|
|
|
|
const tableColumns = ["name", "description", "new field"]
|
|
|
|
const table = createBasicTable(structures.uuid(), tableColumns)
|
|
|
|
|
|
|
|
const sheet = createSheet({ headerValues: ["name", "description"] })
|
|
|
|
sheetsByTitle[table.name] = sheet
|
|
|
|
await integration.updateTable(table)
|
|
|
|
|
|
|
|
expect(sheet.loadHeaderRow).toBeCalledTimes(1)
|
|
|
|
expect(sheet.setHeaderRow).toBeCalledTimes(1)
|
|
|
|
expect(sheet.setHeaderRow).toBeCalledWith(tableColumns)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2023-05-23 10:14:06 +02:00
|
|
|
it("removing an existing field will remove the header from the google sheet", async () => {
|
2023-03-21 18:27:31 +01:00
|
|
|
const sheet = await config.doInContext(structures.uuid(), async () => {
|
2023-02-27 17:25:48 +01:00
|
|
|
const tableColumns = ["name"]
|
|
|
|
const table = createBasicTable(structures.uuid(), tableColumns)
|
|
|
|
|
|
|
|
const sheet = createSheet({
|
|
|
|
headerValues: ["name", "description", "location"],
|
|
|
|
})
|
|
|
|
sheetsByTitle[table.name] = sheet
|
|
|
|
await integration.updateTable(table)
|
2023-03-21 18:27:31 +01:00
|
|
|
return sheet
|
2023-02-27 17:25:48 +01:00
|
|
|
})
|
2023-03-21 18:27:31 +01:00
|
|
|
expect(sheet.loadHeaderRow).toBeCalledTimes(1)
|
|
|
|
expect(sheet.setHeaderRow).toBeCalledTimes(1)
|
|
|
|
expect(sheet.setHeaderRow).toBeCalledWith(["name"])
|
|
|
|
|
|
|
|
// No undefined are sent
|
|
|
|
expect((sheet.setHeaderRow as any).mock.calls[0][0]).toHaveLength(1)
|
2023-02-27 17:25:48 +01:00
|
|
|
})
|
|
|
|
})
|
2023-05-23 10:14:06 +02:00
|
|
|
|
|
|
|
describe("getTableNames", () => {
|
|
|
|
it("can fetch table names", async () => {
|
|
|
|
await config.doInContext(structures.uuid(), async () => {
|
|
|
|
const sheetNames: string[] = []
|
|
|
|
for (let i = 0; i < 5; i++) {
|
|
|
|
const sheet = createSheet({ headerValues: [] })
|
|
|
|
sheetsByIndex.push(sheet)
|
|
|
|
sheetNames.push(sheet.title)
|
|
|
|
}
|
|
|
|
|
|
|
|
const res = await integration.getTableNames()
|
|
|
|
expect(res).toEqual(sheetNames)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
2023-02-27 17:25:48 +01:00
|
|
|
})
|