mirror of
https://github.com/odoo/owl.git
synced 2025-10-06 19:59:41 +07:00
70 lines
1.8 KiB
TypeScript
70 lines
1.8 KiB
TypeScript
import { mount, patch, remove, text } from "../../src/blockdom";
|
|
import { makeTestFixture } from "./helpers";
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Setup and helpers
|
|
//------------------------------------------------------------------------------
|
|
|
|
let fixture: HTMLElement;
|
|
|
|
beforeEach(() => {
|
|
fixture = makeTestFixture();
|
|
});
|
|
|
|
afterEach(() => {
|
|
fixture.remove();
|
|
});
|
|
|
|
describe("adding/patching text", () => {
|
|
test("simple text node", async () => {
|
|
const tree = text("foo");
|
|
expect(tree.el).toBe(undefined);
|
|
mount(tree, fixture);
|
|
expect(fixture.innerHTML).toBe("foo");
|
|
expect(tree.el).not.toBe(undefined);
|
|
});
|
|
|
|
test("patching a simple text node", async () => {
|
|
const tree = text("foo");
|
|
mount(tree, fixture);
|
|
expect(fixture.innerHTML).toBe("foo");
|
|
|
|
patch(tree, text("bar"));
|
|
expect(fixture.innerHTML).toBe("bar");
|
|
});
|
|
|
|
test("falsy values in text nodes", () => {
|
|
const cases = [
|
|
[false, "false"],
|
|
[undefined, ""],
|
|
[null, ""],
|
|
[0, "0"],
|
|
["", ""],
|
|
];
|
|
for (let [value, result] of cases) {
|
|
const fixture = makeTestFixture();
|
|
mount(text(value as any), fixture);
|
|
expect(fixture.innerHTML).toBe(result);
|
|
}
|
|
});
|
|
|
|
test("vtext node can be used as text", () => {
|
|
const t = text("foo") as any;
|
|
mount(text(t), fixture);
|
|
expect(fixture.innerHTML).toBe("foo");
|
|
});
|
|
});
|
|
|
|
describe("remove text blocks", () => {
|
|
test("a text block can be removed", async () => {
|
|
const tree = text("cat");
|
|
expect(fixture.childNodes.length).toBe(0);
|
|
mount(tree, fixture);
|
|
expect(fixture.innerHTML).toBe("cat");
|
|
expect(fixture.childNodes.length).toBe(1);
|
|
remove(tree);
|
|
expect(fixture.innerHTML).toBe("");
|
|
expect(fixture.childNodes.length).toBe(0);
|
|
});
|
|
});
|