mirror of
https://github.com/odoo/owl.git
synced 2025-10-06 19:59:41 +07:00
80 lines
1.8 KiB
TypeScript
80 lines
1.8 KiB
TypeScript
import {
|
|
escape,
|
|
htmlTrim,
|
|
idGenerator,
|
|
memoize,
|
|
debounce
|
|
} from "../../src/ts/core/utils";
|
|
|
|
describe("escape", () => {
|
|
test("normal strings", () => {
|
|
const text = "abc";
|
|
expect(escape(text)).toBe(text);
|
|
});
|
|
|
|
test("special symbols", () => {
|
|
const text = "<ok>";
|
|
expect(escape(text)).toBe("<ok>");
|
|
});
|
|
});
|
|
|
|
describe("htmlTrim", () => {
|
|
test("basic use", () => {
|
|
expect(htmlTrim("abc")).toBe("abc");
|
|
expect(htmlTrim(" abc")).toBe(" abc");
|
|
expect(htmlTrim("abc ")).toBe("abc ");
|
|
expect(htmlTrim(" abc ")).toBe(" abc ");
|
|
expect(htmlTrim("abc\n ")).toBe("abc ");
|
|
expect(htmlTrim("\n ")).toBe(" ");
|
|
expect(htmlTrim(" \n ")).toBe(" ");
|
|
expect(htmlTrim(" ")).toBe(" ");
|
|
expect(htmlTrim("")).toBe("");
|
|
});
|
|
});
|
|
|
|
describe("idGenerator", () => {
|
|
test("basic use", () => {
|
|
let gen = idGenerator();
|
|
expect(gen()).toBe(1);
|
|
expect(gen()).toBe(2);
|
|
expect(gen()).toBe(3);
|
|
});
|
|
});
|
|
|
|
describe("memoize", () => {
|
|
test("return correct value", () => {
|
|
const f = memoize((a, b) => a + b);
|
|
expect(f(1, 3)).toBe(4);
|
|
});
|
|
|
|
test("does not recompute if not needed", () => {
|
|
let nCalls = 0;
|
|
function origFunction(a: number, b: number): number {
|
|
nCalls++;
|
|
return a + b;
|
|
}
|
|
const memoized = memoize(origFunction);
|
|
|
|
expect(memoized(1, 3)).toBe(4);
|
|
expect(memoized(1, 3)).toBe(4);
|
|
expect(nCalls).toBe(1);
|
|
});
|
|
});
|
|
|
|
describe("debounce", () => {
|
|
test("works as expected", () => {
|
|
jest.useFakeTimers();
|
|
let n = 0;
|
|
let f = debounce(() => n++, 100);
|
|
expect(n).toBe(0);
|
|
f();
|
|
expect(n).toBe(0);
|
|
f();
|
|
expect(n).toBe(0);
|
|
jest.advanceTimersByTime(90);
|
|
expect(n).toBe(0);
|
|
jest.advanceTimersByTime(20);
|
|
expect(n).toBe(1);
|
|
});
|
|
});
|