trilium/spec/lexer.spec.js

62 lines
2.3 KiB
JavaScript
Raw Normal View History

2020-05-19 06:00:35 +08:00
const lexer = require('../src/services/search/lexer');
2020-05-18 01:43:37 +08:00
2020-05-18 05:14:24 +08:00
describe("Lexer fulltext", () => {
2020-05-18 01:43:37 +08:00
it("simple lexing", () => {
2020-05-19 06:00:35 +08:00
expect(lexer("hello world").fulltextTokens)
2020-05-18 01:43:37 +08:00
.toEqual(["hello", "world"]);
});
it("use quotes to keep words together", () => {
2020-05-19 06:00:35 +08:00
expect(lexer("'hello world' my friend").fulltextTokens)
2020-05-18 01:43:37 +08:00
.toEqual(["hello world", "my", "friend"]);
2020-05-19 06:00:35 +08:00
expect(lexer('"hello world" my friend').fulltextTokens)
2020-05-18 01:43:37 +08:00
.toEqual(["hello world", "my", "friend"]);
2020-05-19 06:00:35 +08:00
expect(lexer('`hello world` my friend').fulltextTokens)
2020-05-18 01:43:37 +08:00
.toEqual(["hello world", "my", "friend"]);
});
it("you can use different quotes and other special characters inside quotes", () => {
2020-05-22 15:38:30 +08:00
expect(lexer("'i can use \" or ` or #@=*' without problem").fulltextTokens)
.toEqual(["i can use \" or ` or #@=*", "without", "problem"]);
2020-05-18 01:43:37 +08:00
});
it("if quote is not ended then it's just one long token", () => {
2020-05-19 06:00:35 +08:00
expect(lexer("'unfinished quote").fulltextTokens)
2020-05-18 01:43:37 +08:00
.toEqual(["unfinished quote"]);
});
2020-05-18 05:14:24 +08:00
it("parenthesis and symbols in fulltext section are just normal characters", () => {
2020-05-19 06:00:35 +08:00
expect(lexer("what's u=p <b(r*t)h>").fulltextTokens)
2020-05-18 05:14:24 +08:00
.toEqual(["what's", "u=p", "<b(r*t)h>"]);
});
it("escaping special characters", () => {
2020-05-19 06:00:35 +08:00
expect(lexer("hello \\#\\@\\'").fulltextTokens)
2020-05-18 05:14:24 +08:00
.toEqual(["hello", "#@'"]);
});
});
describe("Lexer expression", () => {
it("simple attribute existence", () => {
2020-05-19 06:00:35 +08:00
expect(lexer("#label @relation").expressionTokens)
2020-05-18 05:14:24 +08:00
.toEqual(["#label", "@relation"]);
});
it("simple label operators", () => {
2020-05-19 06:00:35 +08:00
expect(lexer("#label*=*text").expressionTokens)
2020-05-18 05:14:24 +08:00
.toEqual(["#label", "*=*", "text"]);
});
it("spaces in attribute names and values", () => {
2020-05-19 06:00:35 +08:00
expect(lexer(`#'long label'="hello o' world" @'long relation'`).expressionTokens)
2020-05-18 05:14:24 +08:00
.toEqual(["#long label", "=", "hello o' world", "@long relation"]);
});
it("complex expressions with and, or and parenthesis", () => {
2020-05-19 06:00:35 +08:00
expect(lexer(`# (#label=text OR #second=text) AND @relation`).expressionTokens)
2020-05-22 15:38:30 +08:00
.toEqual(["#", "(", "#label", "=", "text", "or", "#second", "=", "text", ")", "and", "@relation"]);
2020-05-18 05:14:24 +08:00
});
2020-05-18 01:43:37 +08:00
});