Merge branch 'master' into v3-ui
This commit is contained in:
commit
bde31696a6
|
@ -23,14 +23,15 @@ jest.mock("openai", () => ({
|
|||
},
|
||||
})),
|
||||
}))
|
||||
|
||||
jest.mock("@budibase/pro", () => ({
|
||||
...jest.requireActual("@budibase/pro"),
|
||||
ai: {
|
||||
LargeLanguageModel: jest.fn().mockImplementation(() => ({
|
||||
init: jest.fn(),
|
||||
run: jest.fn(),
|
||||
})),
|
||||
LargeLanguageModel: {
|
||||
forCurrentTenant: jest.fn().mockImplementation(() => ({
|
||||
init: jest.fn(),
|
||||
run: jest.fn(),
|
||||
})),
|
||||
},
|
||||
},
|
||||
features: {
|
||||
isAICustomConfigsEnabled: jest.fn(),
|
||||
|
@ -38,6 +39,7 @@ jest.mock("@budibase/pro", () => ({
|
|||
},
|
||||
}))
|
||||
|
||||
const mockedPro = jest.mocked(pro)
|
||||
const mockedOpenAI = OpenAI as jest.MockedClass<typeof OpenAI>
|
||||
|
||||
const OPENAI_PROMPT = "What is the meaning of life?"
|
||||
|
@ -121,11 +123,14 @@ describe("test the openai action", () => {
|
|||
prompt,
|
||||
})
|
||||
|
||||
expect(pro.ai.LargeLanguageModel).toHaveBeenCalledWith("gpt-4o-mini")
|
||||
expect(pro.ai.LargeLanguageModel.forCurrentTenant).toHaveBeenCalledWith(
|
||||
"gpt-4o-mini"
|
||||
)
|
||||
|
||||
// @ts-ignore
|
||||
const llmInstance = pro.ai.LargeLanguageModel.mock.results[0].value
|
||||
expect(llmInstance.init).toHaveBeenCalled()
|
||||
const llmInstance =
|
||||
mockedPro.ai.LargeLanguageModel.forCurrentTenant.mock.results[0].value
|
||||
// init does not appear to be called currently
|
||||
// expect(llmInstance.init).toHaveBeenCalled()
|
||||
expect(llmInstance.run).toHaveBeenCalledWith(prompt)
|
||||
})
|
||||
})
|
||||
|
|
|
@ -581,16 +581,15 @@ export class GoogleSheetsIntegration implements DatasourcePlus {
|
|||
rows = await sheet.getRows()
|
||||
}
|
||||
|
||||
if (hasFilters && query.paginate) {
|
||||
rows = rows.slice(offset, offset + limit)
|
||||
}
|
||||
const headerValues = sheet.headerValues
|
||||
|
||||
let response = rows.map(row =>
|
||||
this.buildRowObject(headerValues, row.toObject(), row.rowNumber)
|
||||
this.buildRowObject(sheet.headerValues, row.toObject(), row.rowNumber)
|
||||
)
|
||||
response = dataFilters.runQuery(response, query.filters || {})
|
||||
|
||||
if (hasFilters && query.paginate) {
|
||||
response = response.slice(offset, offset + limit)
|
||||
}
|
||||
|
||||
if (query.sort) {
|
||||
if (Object.keys(query.sort).length !== 1) {
|
||||
console.warn("Googlesheets does not support multiple sorting", {
|
||||
|
|
|
@ -5,6 +5,7 @@ import TestConfiguration from "../../tests/utilities/TestConfiguration"
|
|||
import {
|
||||
Datasource,
|
||||
FieldType,
|
||||
Row,
|
||||
SourceName,
|
||||
Table,
|
||||
TableSourceType,
|
||||
|
@ -598,4 +599,193 @@ describe("Google Sheets Integration", () => {
|
|||
)
|
||||
})
|
||||
})
|
||||
|
||||
describe("search", () => {
|
||||
let table: Table
|
||||
|
||||
beforeEach(async () => {
|
||||
table = await config.api.table.save({
|
||||
name: "Test Table",
|
||||
type: "table",
|
||||
sourceId: datasource._id!,
|
||||
sourceType: TableSourceType.EXTERNAL,
|
||||
schema: {
|
||||
name: {
|
||||
name: "name",
|
||||
type: FieldType.STRING,
|
||||
constraints: {
|
||||
type: "string",
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
await config.api.row.bulkImport(table._id!, {
|
||||
rows: [
|
||||
{
|
||||
name: "Foo",
|
||||
},
|
||||
{
|
||||
name: "Bar",
|
||||
},
|
||||
{
|
||||
name: "Baz",
|
||||
},
|
||||
],
|
||||
})
|
||||
})
|
||||
|
||||
it("should be able to find rows with equals filter", async () => {
|
||||
const response = await config.api.row.search(table._id!, {
|
||||
tableId: table._id!,
|
||||
query: {
|
||||
equal: {
|
||||
name: "Foo",
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
expect(response.rows).toHaveLength(1)
|
||||
expect(response.rows[0].name).toEqual("Foo")
|
||||
})
|
||||
|
||||
it("should be able to find rows with not equals filter", async () => {
|
||||
const response = await config.api.row.search(table._id!, {
|
||||
tableId: table._id!,
|
||||
query: {
|
||||
notEqual: {
|
||||
name: "Foo",
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
expect(response.rows).toHaveLength(2)
|
||||
expect(response.rows[0].name).toEqual("Bar")
|
||||
expect(response.rows[1].name).toEqual("Baz")
|
||||
})
|
||||
|
||||
it("should be able to find rows with empty filter", async () => {
|
||||
const response = await config.api.row.search(table._id!, {
|
||||
tableId: table._id!,
|
||||
query: {
|
||||
empty: {
|
||||
name: null,
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
expect(response.rows).toHaveLength(0)
|
||||
})
|
||||
|
||||
it("should be able to find rows with not empty filter", async () => {
|
||||
const response = await config.api.row.search(table._id!, {
|
||||
tableId: table._id!,
|
||||
query: {
|
||||
notEmpty: {
|
||||
name: null,
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
expect(response.rows).toHaveLength(3)
|
||||
})
|
||||
|
||||
it("should be able to find rows with one of filter", async () => {
|
||||
const response = await config.api.row.search(table._id!, {
|
||||
tableId: table._id!,
|
||||
query: {
|
||||
oneOf: {
|
||||
name: ["Foo", "Bar"],
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
expect(response.rows).toHaveLength(2)
|
||||
expect(response.rows[0].name).toEqual("Foo")
|
||||
expect(response.rows[1].name).toEqual("Bar")
|
||||
})
|
||||
|
||||
it("should be able to find rows with fuzzy filter", async () => {
|
||||
const response = await config.api.row.search(table._id!, {
|
||||
tableId: table._id!,
|
||||
query: {
|
||||
fuzzy: {
|
||||
name: "oo",
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
expect(response.rows).toHaveLength(1)
|
||||
expect(response.rows[0].name).toEqual("Foo")
|
||||
})
|
||||
|
||||
it("should be able to find rows with range filter", async () => {
|
||||
const response = await config.api.row.search(table._id!, {
|
||||
tableId: table._id!,
|
||||
query: {
|
||||
range: {
|
||||
name: {
|
||||
low: "A",
|
||||
high: "C",
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
expect(response.rows).toHaveLength(2)
|
||||
expect(response.rows[0].name).toEqual("Bar")
|
||||
expect(response.rows[1].name).toEqual("Baz")
|
||||
})
|
||||
|
||||
it("should paginate correctly", async () => {
|
||||
await config.api.row.bulkImport(table._id!, {
|
||||
rows: Array.from({ length: 50 }, () => ({
|
||||
name: `Unique value!`,
|
||||
})),
|
||||
})
|
||||
await config.api.row.bulkImport(table._id!, {
|
||||
rows: Array.from({ length: 50 }, () => ({
|
||||
name: `Non-unique value!`,
|
||||
})),
|
||||
})
|
||||
|
||||
let response = await config.api.row.search(table._id!, {
|
||||
tableId: table._id!,
|
||||
query: { equal: { name: "Unique value!" } },
|
||||
paginate: true,
|
||||
limit: 10,
|
||||
})
|
||||
let rows: Row[] = response.rows
|
||||
|
||||
while (response.hasNextPage) {
|
||||
response = await config.api.row.search(table._id!, {
|
||||
tableId: table._id!,
|
||||
query: { equal: { name: "Unique value!" } },
|
||||
paginate: true,
|
||||
limit: 10,
|
||||
bookmark: response.bookmark,
|
||||
})
|
||||
|
||||
expect(response.rows.length).toBeLessThanOrEqual(10)
|
||||
rows = rows.concat(response.rows)
|
||||
}
|
||||
|
||||
// Make sure we only get rows matching the query.
|
||||
expect(rows.length).toEqual(50)
|
||||
expect(rows.map(row => row.name)).toEqual(
|
||||
expect.arrayContaining(
|
||||
Array.from({ length: 50 }, () => "Unique value!")
|
||||
)
|
||||
)
|
||||
|
||||
// Make sure all of the rows have a unique ID.
|
||||
const ids = Object.keys(
|
||||
rows.reduce((acc, row) => {
|
||||
acc[row._id!] = true
|
||||
return acc
|
||||
}, {})
|
||||
)
|
||||
expect(ids.length).toEqual(50)
|
||||
})
|
||||
})
|
||||
})
|
||||
|
|
|
@ -440,6 +440,8 @@ export class GoogleSheetsMock {
|
|||
endColumnIndex: 0,
|
||||
})
|
||||
|
||||
sheet.properties.gridProperties.rowCount = sheet.data[0].rowData.length
|
||||
|
||||
return {
|
||||
spreadsheetId: this.spreadsheet.spreadsheetId,
|
||||
tableRange: range,
|
||||
|
|
|
@ -12372,10 +12372,10 @@ google-p12-pem@^4.0.0:
|
|||
dependencies:
|
||||
node-forge "^1.3.1"
|
||||
|
||||
"google-spreadsheet@npm:@budibase/google-spreadsheet@4.1.3":
|
||||
version "4.1.3"
|
||||
resolved "https://registry.yarnpkg.com/@budibase/google-spreadsheet/-/google-spreadsheet-4.1.3.tgz#bcee7bd9d90f82c54b16a9aca963b87aceb050ad"
|
||||
integrity sha512-03VX3/K5NXIh6+XAIDZgcHPmR76xwd8vIDL7RedMpvM2IcXK0Iq/KU7FmLY0t/mKqORAGC7+0rajd0jLFezC4w==
|
||||
"google-spreadsheet@npm:@budibase/google-spreadsheet@4.1.5":
|
||||
version "4.1.5"
|
||||
resolved "https://registry.yarnpkg.com/@budibase/google-spreadsheet/-/google-spreadsheet-4.1.5.tgz#c89ffcbfcb1a3538e910d9275f73efc1d7deb85f"
|
||||
integrity sha512-t1uBjuRSkNLnZ89DYtYQ2GW33xVU84qOyOPbGi+M0w7cAJofs95PwlBLhVol6Pv5VbeL0I1J7M4XyVqp0nSZtQ==
|
||||
dependencies:
|
||||
axios "^1.4.0"
|
||||
lodash "^4.17.21"
|
||||
|
|
Loading…
Reference in New Issue