2021-01-19 18:29:38 +01:00
|
|
|
const {
|
|
|
|
processObject,
|
|
|
|
processString,
|
|
|
|
} = require("../src/index")
|
|
|
|
|
|
|
|
describe("Test that the string processing works correctly", () => {
|
2021-01-20 14:32:15 +01:00
|
|
|
it("should process a basic template string", async () => {
|
|
|
|
const output = await processString("templating is {{ adjective }}", {
|
2021-01-19 18:29:38 +01:00
|
|
|
adjective: "easy"
|
|
|
|
})
|
|
|
|
expect(output).toBe("templating is easy")
|
|
|
|
})
|
|
|
|
|
2021-01-20 14:32:15 +01:00
|
|
|
it("should fail gracefully when wrong type passed in", async () => {
|
2021-01-19 18:29:38 +01:00
|
|
|
let error = null
|
|
|
|
try {
|
2021-01-20 14:32:15 +01:00
|
|
|
await processString(null, null)
|
2021-01-19 18:29:38 +01:00
|
|
|
} catch (err) {
|
|
|
|
error = err
|
|
|
|
}
|
|
|
|
expect(error).not.toBeNull()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe("Test that the object processing works correctly", () => {
|
2021-01-20 14:32:15 +01:00
|
|
|
it("should be able to process an object with some template strings", async () => {
|
|
|
|
const output = await processObject({
|
2021-01-19 18:29:38 +01:00
|
|
|
first: "thing is {{ adjective }}",
|
|
|
|
second: "thing is bad",
|
|
|
|
third: "we are {{ adjective }} {{ noun }}",
|
|
|
|
}, {
|
|
|
|
adjective: "easy",
|
|
|
|
noun: "people",
|
|
|
|
})
|
|
|
|
expect(output.first).toBe("thing is easy")
|
|
|
|
expect(output.second).toBe("thing is bad")
|
|
|
|
expect(output.third).toBe("we are easy people")
|
|
|
|
})
|
|
|
|
|
2021-01-20 14:32:15 +01:00
|
|
|
it("should be able to handle arrays of string templates", async () => {
|
|
|
|
const output = await processObject(["first {{ noun }}", "second {{ noun }}"], {
|
2021-01-19 18:29:38 +01:00
|
|
|
noun: "person"
|
|
|
|
})
|
|
|
|
expect(output[0]).toBe("first person")
|
|
|
|
expect(output[1]).toBe("second person")
|
|
|
|
})
|
|
|
|
|
2021-01-20 14:32:15 +01:00
|
|
|
it("should fail gracefully when object passed in has cycles", async () => {
|
2021-01-19 18:29:38 +01:00
|
|
|
let error = null
|
|
|
|
try {
|
|
|
|
const innerObj = { a: "thing {{ a }}" }
|
|
|
|
innerObj.b = innerObj
|
2021-01-20 14:32:15 +01:00
|
|
|
await processObject(innerObj, { a: 1 })
|
2021-01-19 18:29:38 +01:00
|
|
|
} catch (err) {
|
|
|
|
error = err
|
|
|
|
}
|
|
|
|
expect(error).not.toBeNull()
|
|
|
|
})
|
|
|
|
|
2021-01-20 14:32:15 +01:00
|
|
|
it("should fail gracefully when wrong type is passed in", async () => {
|
2021-01-19 18:29:38 +01:00
|
|
|
let error = null
|
|
|
|
try {
|
2021-01-20 14:32:15 +01:00
|
|
|
await processObject(null, null)
|
2021-01-19 18:29:38 +01:00
|
|
|
} catch (err) {
|
|
|
|
error = err
|
|
|
|
}
|
|
|
|
expect(error).not.toBeNull()
|
|
|
|
})
|
|
|
|
})
|