* Change commands to use category labels instead of icons. Fixes several translation issues. * Hydrate with latest dev and resolve conflicts * Replace custom pill element with material chips * Add category icons. Fix dark mode text colors * Update src/components/ha-chip-set.ts Co-authored-by: Bram Kragten <mail@bramkragten.nl> * Update src/dialogs/quick-bar/ha-quick-bar.ts Co-authored-by: Bram Kragten <mail@bramkragten.nl> * Update src/dialogs/quick-bar/ha-quick-bar.ts Co-authored-by: Bram Kragten <mail@bramkragten.nl> * Update src/components/ha-chip.ts Co-authored-by: Bram Kragten <mail@bramkragten.nl> * Update src/components/ha-chip.ts Co-authored-by: Bram Kragten <mail@bramkragten.nl> Co-authored-by: Bram Kragten <mail@bramkragten.nl>
108 lines
2.8 KiB
TypeScript
108 lines
2.8 KiB
TypeScript
import { assert } from "chai";
|
|
|
|
import {
|
|
fuzzyFilterSort,
|
|
fuzzySequentialMatch,
|
|
} from "../../../src/common/string/filter/sequence-matching";
|
|
|
|
describe("fuzzySequentialMatch", () => {
|
|
const entity = { entity_id: "automation.ticker", friendly_name: "Stocks" };
|
|
|
|
const createExpectation: (
|
|
pattern,
|
|
expected
|
|
) => {
|
|
pattern: string;
|
|
expected: string | number | undefined;
|
|
} = (pattern, expected) => ({
|
|
pattern,
|
|
expected,
|
|
});
|
|
|
|
const shouldMatchEntity = [
|
|
createExpectation("automation.ticker", 138),
|
|
createExpectation("automation.ticke", 129),
|
|
createExpectation("automation.", 89),
|
|
createExpectation("au", 17),
|
|
createExpectation("automationticker", 107),
|
|
createExpectation("tion.tick", 18),
|
|
createExpectation("ticker", 1),
|
|
createExpectation("automation.r", 89),
|
|
createExpectation("tick", 1),
|
|
createExpectation("aumatick", 15),
|
|
createExpectation("aion.tck", 14),
|
|
createExpectation("ioticker", 19),
|
|
createExpectation("atmto.ikr", 1),
|
|
createExpectation("uoaintce", 1),
|
|
createExpectation("au.tce", 17),
|
|
createExpectation("tomaontkr", 9),
|
|
createExpectation("s", 7),
|
|
createExpectation("stocks", 48),
|
|
createExpectation("sks", 7),
|
|
];
|
|
|
|
const shouldNotMatchEntity = [
|
|
"",
|
|
" ",
|
|
"abcdefghijklmnopqrstuvwxyz",
|
|
"automation.tickerz",
|
|
"automation. ticke",
|
|
"1",
|
|
"noitamotua",
|
|
"autostocks",
|
|
"stox",
|
|
];
|
|
|
|
describe(`Entity '${entity.entity_id}'`, () => {
|
|
for (const expectation of shouldMatchEntity) {
|
|
it(`matches '${expectation.pattern}' with return of '${expectation.expected}'`, () => {
|
|
const res = fuzzySequentialMatch(
|
|
expectation.pattern,
|
|
entity.entity_id,
|
|
entity.friendly_name
|
|
);
|
|
assert.equal(res, expectation.expected);
|
|
});
|
|
}
|
|
|
|
for (const badFilter of shouldNotMatchEntity) {
|
|
it(`fails to match with '${badFilter}'`, () => {
|
|
const res = fuzzySequentialMatch(
|
|
badFilter,
|
|
entity.entity_id,
|
|
entity.friendly_name
|
|
);
|
|
assert.equal(res, 0);
|
|
});
|
|
}
|
|
});
|
|
});
|
|
|
|
describe("fuzzyFilterSort", () => {
|
|
const filter = "ticker";
|
|
const item1 = {
|
|
filterText: "automation.ticker",
|
|
altText: "Stocks",
|
|
score: 0,
|
|
};
|
|
const item2 = { filterText: "sensor.ticker", altText: "Stocks up", score: 0 };
|
|
const item3 = {
|
|
filterText: "automation.check_router",
|
|
altText: "Timer Check Router",
|
|
score: 0,
|
|
};
|
|
const itemsBeforeFilter = [item1, item2, item3];
|
|
|
|
it(`sorts correctly`, () => {
|
|
const expectedItemsAfterFilter = [
|
|
{ ...item2, score: 23 },
|
|
{ ...item3, score: 12 },
|
|
{ ...item1, score: 1 },
|
|
];
|
|
|
|
const res = fuzzyFilterSort(filter, itemsBeforeFilter);
|
|
|
|
assert.deepEqual(res, expectedItemsAfterFilter);
|
|
});
|
|
});
|