69 lines
1.8 KiB
JavaScript
69 lines
1.8 KiB
JavaScript
|
const {
|
||
|
processObject,
|
||
|
processString,
|
||
|
} = require("../src/index")
|
||
|
|
||
|
describe("Test that the string processing works correctly", () => {
|
||
|
it("should process a basic template string", () => {
|
||
|
const output = processString("templating is {{ adjective }}", {
|
||
|
adjective: "easy"
|
||
|
})
|
||
|
expect(output).toBe("templating is easy")
|
||
|
})
|
||
|
|
||
|
it("should fail gracefully when wrong type passed in", () => {
|
||
|
let error = null
|
||
|
try {
|
||
|
processString(null, null)
|
||
|
} catch (err) {
|
||
|
error = err
|
||
|
}
|
||
|
expect(error).not.toBeNull()
|
||
|
})
|
||
|
})
|
||
|
|
||
|
describe("Test that the object processing works correctly", () => {
|
||
|
it("should be able to process an object with some template strings", () => {
|
||
|
const output = processObject({
|
||
|
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")
|
||
|
})
|
||
|
|
||
|
it("should be able to handle arrays of string templates", () => {
|
||
|
const output = processObject(["first {{ noun }}", "second {{ noun }}"], {
|
||
|
noun: "person"
|
||
|
})
|
||
|
expect(output[0]).toBe("first person")
|
||
|
expect(output[1]).toBe("second person")
|
||
|
})
|
||
|
|
||
|
it("should fail gracefully when object passed in has cycles", () => {
|
||
|
let error = null
|
||
|
try {
|
||
|
const innerObj = { a: "thing {{ a }}" }
|
||
|
innerObj.b = innerObj
|
||
|
processObject(innerObj, { a: 1 })
|
||
|
} catch (err) {
|
||
|
error = err
|
||
|
}
|
||
|
expect(error).not.toBeNull()
|
||
|
})
|
||
|
|
||
|
it("should fail gracefully when wrong type is passed in", () => {
|
||
|
let error = null
|
||
|
try {
|
||
|
processObject(null, null)
|
||
|
} catch (err) {
|
||
|
error = err
|
||
|
}
|
||
|
expect(error).not.toBeNull()
|
||
|
})
|
||
|
})
|