2021-04-13 10:57:08 +02:00
|
|
|
// Copyright: Ankitects Pty Ltd and contributors
|
|
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
|
2021-06-18 20:41:54 +02:00
|
|
|
import { filterHTML } from ".";
|
|
|
|
|
|
|
|
describe("filterHTML", () => {
|
|
|
|
test("zero input creates zero output", () => {
|
|
|
|
expect(filterHTML("", true, false)).toBe("");
|
|
|
|
expect(filterHTML("", true, false)).toBe("");
|
|
|
|
expect(filterHTML("", false, false)).toBe("");
|
|
|
|
});
|
2022-08-19 04:31:26 +02:00
|
|
|
test("internal filtering", () => {
|
|
|
|
// font-size is filtered, weight is not
|
|
|
|
expect(
|
|
|
|
filterHTML(
|
|
|
|
'<div style="font-weight: bold; font-size: 10px;"></div>',
|
|
|
|
true,
|
|
|
|
true,
|
|
|
|
),
|
|
|
|
).toBe('<div style="font-weight: bold;"></div>');
|
|
|
|
});
|
|
|
|
test("background color", () => {
|
|
|
|
// transparent is stripped, other colors are not
|
|
|
|
expect(
|
|
|
|
filterHTML(
|
|
|
|
'<span style="background-color: transparent;"></span>',
|
|
|
|
false,
|
|
|
|
true,
|
|
|
|
),
|
|
|
|
).toBe('<span style=""></span>');
|
|
|
|
expect(
|
|
|
|
filterHTML('<span style="background-color: blue;"></span>', false, true),
|
|
|
|
).toBe('<span style="background-color: blue;"></span>');
|
|
|
|
// except if extended mode is off
|
|
|
|
expect(
|
|
|
|
filterHTML('<span style="background-color: blue;">x</span>', false, false),
|
|
|
|
).toBe("x");
|
|
|
|
// or if it's an internal paste
|
|
|
|
expect(
|
|
|
|
filterHTML('<span style="background-color: blue;"></span>', true, true),
|
|
|
|
).toBe('<span style=""></span>');
|
|
|
|
});
|
2021-03-28 11:39:11 +02:00
|
|
|
});
|