forked from firefox-devtools/debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject-text-search.spec.js
More file actions
161 lines (123 loc) · 4.74 KB
/
Copy pathproject-text-search.spec.js
File metadata and controls
161 lines (123 loc) · 4.74 KB
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at <http://mozilla.org/MPL/2.0/>. */
// @flow
import {
actions,
createStore,
selectors,
makeSource
} from "../../utils/test-head";
const {
getSource,
getTextSearchQuery,
getTextSearchResults,
getTextSearchStatus
} = selectors;
const sources = {
foo1: {
source: "function foo1() {\n const foo = 5; return foo;\n}",
contentType: "text/javascript"
},
foo2: {
source: "function foo2(x, y) {\n return x + y;\n}",
contentType: "text/javascript"
},
bar: {
source: "function bla(x, y) {\n const bar = 4; return 2;\n}",
contentType: "text/javascript"
},
"bar:formatted": {
source: "function bla(x, y) {\n const bar = 4; return 2;\n}",
contentType: "text/javascript"
}
};
const threadClient = {
sourceContents: async ({ source }) => sources[source],
getBreakpointPositions: async () => ({}),
getBreakableLines: async () => []
};
describe("project text search", () => {
it("should add a project text search query", () => {
const { dispatch, getState, cx } = createStore();
const mockQuery = "foo";
dispatch(actions.addSearchQuery(cx, mockQuery));
expect(getTextSearchQuery(getState())).toEqual(mockQuery);
});
it("should search all the loaded sources based on the query", async () => {
const { dispatch, getState, cx } = createStore(threadClient);
const mockQuery = "foo";
await dispatch(actions.newGeneratedSource(makeSource("foo1")));
await dispatch(actions.newGeneratedSource(makeSource("foo2")));
await dispatch(actions.searchSources(cx, mockQuery));
const results = getTextSearchResults(getState());
expect(results).toMatchSnapshot();
});
it("should ignore sources with minified versions", async () => {
const mockMaps = {
getOriginalSourceText: async () => ({
source: "function bla(x, y) {\n const bar = 4; return 2;\n}",
contentType: "text/javascript"
}),
applySourceMap: async () => {},
getGeneratedRangesForOriginal: async () => [],
getOriginalLocations: async items => items,
getOriginalLocation: async loc => loc
};
const { dispatch, getState, cx } = createStore(threadClient, {}, mockMaps);
const source1 = await dispatch(
actions.newGeneratedSource(makeSource("bar"))
);
await dispatch(actions.loadSourceText({ cx, source: source1 }));
await dispatch(actions.togglePrettyPrint(cx, source1.id));
await dispatch(actions.searchSources(cx, "bla"));
const results = getTextSearchResults(getState());
expect(results).toMatchSnapshot();
});
it("should search a specific source", async () => {
const { dispatch, getState, cx } = createStore(threadClient);
const source = await dispatch(
actions.newGeneratedSource(makeSource("bar"))
);
await dispatch(actions.loadSourceText({ cx, source }));
dispatch(actions.addSearchQuery(cx, "bla"));
const barSource = getSource(getState(), "bar");
if (!barSource) {
throw new Error("no barSource");
}
const sourceId = barSource.id;
await dispatch(actions.searchSource(cx, sourceId, "bla"), "bla");
const results = getTextSearchResults(getState());
expect(results).toMatchSnapshot();
expect(results).toHaveLength(1);
});
it("should clear all the search results", async () => {
const { dispatch, getState, cx } = createStore(threadClient);
const mockQuery = "foo";
await dispatch(actions.newGeneratedSource(makeSource("foo1")));
await dispatch(actions.searchSources(cx, mockQuery));
expect(getTextSearchResults(getState())).toMatchSnapshot();
await dispatch(actions.clearSearchResults(cx));
expect(getTextSearchResults(getState())).toMatchSnapshot();
});
it("should set the status properly", () => {
const { dispatch, getState, cx } = createStore();
const mockStatus = "Fetching";
dispatch(actions.updateSearchStatus(cx, mockStatus));
expect(getTextSearchStatus(getState())).toEqual(mockStatus);
});
it("should close project search", async () => {
const { dispatch, getState, cx } = createStore(threadClient);
const mockQuery = "foo";
await dispatch(actions.newGeneratedSource(makeSource("foo1")));
await dispatch(actions.searchSources(cx, mockQuery));
expect(getTextSearchResults(getState())).toMatchSnapshot();
dispatch(actions.closeProjectSearch(cx));
expect(getTextSearchQuery(getState())).toEqual("");
const results = getTextSearchResults(getState());
expect(results).toMatchSnapshot();
expect(results).toHaveLength(0);
const status = getTextSearchStatus(getState());
expect(status).toEqual("INITIAL");
});
});