1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/src/common/__tests__/log-search-store.test.ts
Sebastian Malton 1747cbf6c8 Complete a majority of the rest of DI
- All KubeApi and KubeObjectStore's

- All of Catalog

- ApiManager

- KubeObjectDetailRegistry

- All BaseStore's and their migrations

- LensProxy and Router

- WindowManager

- App Menu

- Tray Icon

- ThemeStore

Signed-off-by: Sebastian Malton <sebastian@malton.name>
2022-01-28 18:05:05 -05:00

83 lines
2.7 KiB
TypeScript

/**
* Copyright (c) OpenLens Authors. All rights reserved.
* Licensed under MIT License. See LICENSE in root directory for more information.
*/
import { LogSearchStore } from "../../renderer/components/dock/log-search/store";
const logs = [
"1:M 30 Oct 2020 16:17:41.553 # Connection with replica 172.17.0.12:6379 lost",
"1:M 30 Oct 2020 16:17:41.623 * Replica 172.17.0.12:6379 asks for synchronization",
"1:M 30 Oct 2020 16:17:41.623 * Starting Partial resynchronization request from 172.17.0.12:6379 accepted. Sending 0 bytes of backlog starting from offset 14407.",
];
describe("search store tests", () => {
let logSearchStore: LogSearchStore;
beforeEach(() => {
logSearchStore = new LogSearchStore();
});
it("does nothing with empty search query", () => {
logSearchStore.onSearch([], "");
expect(logSearchStore.occurrences).toEqual([]);
});
it("doesn't break if no text provided", () => {
logSearchStore.onSearch(null, "replica");
expect(logSearchStore.occurrences).toEqual([]);
logSearchStore.onSearch([], "replica");
expect(logSearchStore.occurrences).toEqual([]);
});
it("find 3 occurrences across 3 lines", () => {
logSearchStore.onSearch(logs, "172");
expect(logSearchStore.occurrences).toEqual([0, 1, 2]);
});
it("find occurrences within 1 line (case-insensitive)", () => {
logSearchStore.onSearch(logs, "Starting");
expect(logSearchStore.occurrences).toEqual([2, 2]);
});
it("sets overlay index equal to first occurrence", () => {
logSearchStore.onSearch(logs, "Replica");
expect(logSearchStore.activeOverlayIndex).toBe(0);
});
it("set overlay index to next occurrence", () => {
logSearchStore.onSearch(logs, "172");
logSearchStore.setNextOverlayActive();
expect(logSearchStore.activeOverlayIndex).toBe(1);
});
it("sets overlay to last occurrence", () => {
logSearchStore.onSearch(logs, "172");
logSearchStore.setPrevOverlayActive();
expect(logSearchStore.activeOverlayIndex).toBe(2);
});
it("gets line index where overlay is located", () => {
logSearchStore.onSearch(logs, "synchronization");
expect(logSearchStore.activeOverlayLine).toBe(1);
});
it("escapes string for using in regex", () => {
const regex = LogSearchStore.escapeRegex("some.interesting-query\\#?()[]");
expect(regex).toBe("some\\.interesting\\-query\\\\\\#\\?\\(\\)\\[\\]");
});
it("gets active find number", () => {
logSearchStore.onSearch(logs, "172");
logSearchStore.setNextOverlayActive();
expect(logSearchStore.activeFind).toBe(2);
});
it("gets total finds number", () => {
logSearchStore.onSearch(logs, "Starting");
expect(logSearchStore.totalFinds).toBe(2);
});
});