-
Notifications
You must be signed in to change notification settings - Fork 914
/
read_config.test.ts.snap
108 lines (102 loc) · 1.88 KB
/
read_config.test.ts.snap
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
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`different cwd() resolves relative files based on the cwd 1`] = `
Object {
"abc": Object {
"def": "test",
"qwe": 1,
"zyx": Object {
"val": 1,
},
},
"bar": true,
"empty_arr": Array [],
"foo": 1,
"pom": Object {
"bom": 3,
},
"xyz": Array [
"1",
"2",
],
}
`;
exports[`reads and merges multiple yaml files from file system and parses to json 1`] = `
Object {
"abc": Object {
"def": "test",
"ghi": "test2",
"qwe": 2,
"zyx": Object {},
},
"arr": Array [
1,
],
"bar": true,
"baz": "bonkers",
"empty_arr": Array [],
"foo": 2,
"pom": Object {
"bom": 3,
"mob": 4,
},
"xyz": Array [
"3",
"4",
],
}
`;
exports[`reads single yaml from file system and parses to json 1`] = `
Object {
"arr": Array [
1,
2,
],
"empty_arr": Array [],
"empty_obj": Object {},
"obj": Object {
"val": 3,
},
"pid": Object {
"arr": Array [
1,
],
"empty_arr": Array [],
"empty_obj": Object {},
"enabled": true,
"file": "/var/run/opensearch_dashboards.pid",
"obj": Object {
"val": 3,
},
},
}
`;
exports[`returns a deep object 1`] = `
Object {
"pid": Object {
"arr": Array [
1,
2,
],
"empty_arr": Array [],
"empty_obj": Object {},
"enabled": true,
"file": "/var/run/opensearch_dashboards.pid",
"obj": Object {
"val": 3,
},
},
}
`;
exports[`should inject an environment variable value when setting a value with \${ENV_VAR} 1`] = `
Object {
"bar": "pre-val1-mid-val2-post",
"foo": 1,
"opensearch": Object {
"requestHeadersWhitelist": Array [
"val1",
"val2",
],
},
}
`;
exports[`should throw an exception when referenced environment variable in a config value does not exist 1`] = `"Unknown environment variable referenced in config : OSD_ENV_VAR1"`;