-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
89 lines (79 loc) · 2.67 KB
/
test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
import Pucko from "./pucko-search";
let corpus = [
{
url: "https://www.example.com/1",
header: "Villkoret",
body:
"Utan att handla \
kan jag icke leva, \
fjättrad vid lyran skulle jag dö. \
Är ock mig lyran det högsta på jorden \
bléve jag den trogen, \
vore jag icke en flammande själ. \
Den som icke med blodiga naglar \
bryter sin bräcka i vardagens mur \
- må förgås därutanför - \
han ej är värd att skåda solen.",
summary: "Nu sänder jag pansartåg med stenhårda masker i hotande gluggar"
},
{
url: "https://www.example.com/2",
header: "Sorglöshet",
body:
"Jag tror ej på människor. \
Jag hade slagit min lyra i stycken, \
trodde jag ej på Gud. \
Gud visar mig vägen \
ur dimman till solens strålande disk. \
Han älskar de lättfota vandrare. \
Därför gav han mig all denna sorglöshet. \
Jag litar fast som på ett hälleberg. \
Är jag hans rätta barn - kan mig intet hända.",
summary: "Jag har krafter. Jag fruktar ingenting."
}
];
let idx = new Pucko(function() {
this.ref("url");
this.field("header");
this.field("body");
corpus.forEach(doc => {
this.add(doc);
}, this);
});
test("Finds exact string in header", () => {
expect(idx.search("Villkoret")).toEqual(["https://www.example.com/1"]);
expect(idx.search("villkoret")).toEqual(["https://www.example.com/1"]);
});
test("Finds stemmed strings in body", () => {
expect(idx.search("bryt")).toEqual(["https://www.example.com/1"]);
expect(idx.search("solen")).toEqual([
"https://www.example.com/1",
"https://www.example.com/2"
]);
expect(idx.search("strål")).toEqual(["https://www.example.com/2"]);
});
test("Searches only in added fields", () => {
expect(idx.search("pansartåg")).toEqual([]);
});
test("Searches in split string", () => {
expect(idx.search("villkor sorglöshet")).toEqual([
"https://www.example.com/1",
"https://www.example.com/2"
]);
});
test("Ignores trailing spaces", () => {
expect(idx.search("vardagens")).toEqual(["https://www.example.com/1"]);
expect(idx.search("vardagens ")).toEqual(["https://www.example.com/1"]);
});
test("Ignores diacritics", () => {
expect(idx.search("bräcka")).toEqual(["https://www.example.com/1"]);
expect(idx.search("bracka")).toEqual(["https://www.example.com/1"]);
expect(idx.search("bleve")).toEqual(["https://www.example.com/1"]);
});
test("Searches exact matches", () => {
expect(idx.search("som på")).toEqual([
"https://www.example.com/1",
"https://www.example.com/2"
]);
expect(idx.search("^som på")).toEqual(["https://www.example.com/2"]);
});