Merge pull request #2639 from Budibase/fix/2634

Handling objects better in string templates (automations)
This commit is contained in:
Michael Drury 2021-09-17 17:37:01 +01:00 committed by GitHub
commit f4473e7d1d
4 changed files with 37 additions and 4 deletions

View File

@ -189,15 +189,27 @@ exports.trigger = async function (ctx) {
}
}
function prepareTestInput(input) {
// prepare the test parameters
if (input.id && input.row) {
input.row._id = input.id
}
if (input.revision && input.row) {
input.row._rev = input.revision
}
return input
}
exports.test = async function (ctx) {
const appId = ctx.appId
const db = new CouchDB(appId)
let automation = await db.get(ctx.params.id)
await setTestFlag(automation._id)
const testInput = prepareTestInput(ctx.request.body)
const response = await triggers.externalTrigger(
automation,
{
...ctx.request.body,
...testInput,
appId,
},
{ getResponses: true }

View File

@ -97,12 +97,16 @@ exports.run = async function ({ inputs }) {
"Content-Type": "application/json",
}
if (headers && headers.length !== 0) {
if (headers) {
try {
const customHeaders = JSON.parse(headers)
const customHeaders =
typeof headers === "string" ? JSON.parse(headers) : headers
request.headers = { ...request.headers, ...customHeaders }
} catch (err) {
console.error(err)
return {
success: false,
response: "Unable to process headers, must be a JSON object.",
}
}
}
}

View File

@ -19,6 +19,13 @@ const HELPERS = [
}),
// this help is applied to all statements
new Helper(HelperFunctionNames.ALL, value => {
if (
value != null &&
typeof value === "object" &&
value.toString() === "[object Object]"
) {
return new SafeString(JSON.stringify(value))
}
// null/undefined values produce bad results
if (value == null || typeof value !== "string") {
return value || ""

View File

@ -81,6 +81,16 @@ describe("Test that the object processing works correctly", () => {
expect(error).not.toBeNull()
})
it("check objects get converted to string JSON automatically", async () => {
const row = {a: 1}
const output = await processString("{{ trigger.row }}", {
trigger: {
row,
}
})
expect(JSON.parse(output)).toEqual(row)
})
it("should be able to handle null objects", async () => {
let error = null
try {