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
|
/* 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/>. */
import fs from "fs";
import path from "path";
import { makeMockSourceAndContent } from "../../../../utils/test-mockup";
import { setSource } from "../../sources";
import * as asyncValue from "../../../../utils/async-value";
export function getFixture(name, type = "js") {
return fs.readFileSync(
path.join(__dirname, `../fixtures/${name}.${type}`),
"utf8"
);
}
function getSourceContent(name, type = "js") {
const text = getFixture(name, type);
let contentType = "text/javascript";
if (type === "html") {
contentType = "text/html";
} else if (type === "vue") {
contentType = "text/vue";
} else if (type === "ts") {
contentType = "text/typescript";
} else if (type === "tsx") {
contentType = "text/typescript-jsx";
}
return {
type: "text",
value: text,
contentType,
};
}
export function getSource(name, type) {
const { value: text, contentType } = getSourceContent(name, type);
return makeMockSourceAndContent(undefined, name, contentType, text);
}
export function populateSource(name, type) {
const { content, ...source } = getSource(name, type);
setSource({
id: source.id,
text: content.value,
contentType: content.contentType,
isWasm: false,
});
return {
...source,
content: asyncValue.fulfilled(content),
};
}
export function getOriginalSource(name, type) {
return getOriginalSourceWithContent(name, type);
}
export function getOriginalSourceWithContent(name, type) {
const { value: text, contentType } = getSourceContent(name, type);
return makeMockSourceAndContent(
undefined,
`${name}/originalSource-1`,
contentType,
text
);
}
export function populateOriginalSource(name, type) {
const { content, ...source } = getOriginalSourceWithContent(name, type);
setSource({
id: source.id,
text: content.value,
contentType: content.contentType,
isWasm: false,
});
return {
...source,
content: asyncValue.fulfilled(content),
};
}
|