-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathreact-search-lunr.test.js
101 lines (85 loc) · 2.56 KB
/
react-search-lunr.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
90
91
92
93
94
95
96
97
98
99
100
101
import React from 'react'
import { render, cleanup } from 'react-testing-library'
import 'jest-dom/extend-expect'
import ReactSearchLunr from './react-search-lunr'
afterEach(cleanup)
const documents = [
{ id: 1, name: 'test a', body: 'test a was found' },
{ id: 'b', name: 'test b', body: 'test b was unknown' },
{ id: 'c', name: 'ignore c', body: 'ignore this result' }
]
const mapResults = results =>
results.map(result => (
<div key={result.ref}>
<h1>{result.item.name}</h1>
<p>{result.item.body}</p>
</div>
))
test('should render only results matching initial filter', async () => {
const { container, queryByText } = render(
<ReactSearchLunr
id="id"
documents={documents}
fields={['name', 'body']}
filter="test">
{mapResults}
</ReactSearchLunr>
)
expect(queryByText('test a')).toBeInTheDocument()
expect(queryByText('test b')).toBeInTheDocument()
expect(queryByText('ignore c')).not.toBeInTheDocument()
expect(container.firstChild).toMatchSnapshot()
})
test('should only index specified fields', async () => {
const { queryByText } = render(
<ReactSearchLunr
id="id"
documents={documents}
fields={['name']}
filter="result">
{mapResults}
</ReactSearchLunr>
)
expect(queryByText('test a')).not.toBeInTheDocument()
expect(queryByText('ignore c')).not.toBeInTheDocument()
})
test('updating filter will rerender with new results', async () => {
const { queryByText, rerender } = render(
<ReactSearchLunr
id="id"
documents={documents}
fields={['name', 'body']}
filter="test">
{mapResults}
</ReactSearchLunr>
)
expect(queryByText('test a')).toBeInTheDocument()
expect(queryByText('ignore c')).not.toBeInTheDocument()
// change the filter to ignore, rerender
rerender(
<ReactSearchLunr
id="id"
documents={documents}
fields={['name', 'body']}
filter="ignore">
{mapResults}
</ReactSearchLunr>
)
expect(queryByText('test a')).not.toBeInTheDocument()
expect(queryByText('ignore c')).toBeInTheDocument()
})
test('should render results using a selected field as ID', async () => {
const { container, queryByText } = render(
<ReactSearchLunr
id="name"
documents={documents}
fields={['body']}
filter="test">
{mapResults}
</ReactSearchLunr>
)
expect(queryByText('test a')).toBeInTheDocument()
expect(queryByText('test b')).toBeInTheDocument()
expect(queryByText('ignore c')).not.toBeInTheDocument()
expect(container.firstChild).toMatchSnapshot()
})