forked from redhat-developer/yaml-language-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyaml-documents.test.ts
326 lines (255 loc) · 11 KB
/
yaml-documents.test.ts
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
/*---------------------------------------------------------------------------------------------
* Copyright (c) Red Hat. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import * as sinon from 'sinon';
import * as sinonChai from 'sinon-chai';
import * as chai from 'chai';
import { YamlDocuments } from '../src/languageservice/parser/yaml-documents';
import { setupTextDocument } from './utils/testHelper';
import * as yamlParser from '../src/languageservice/parser/yamlParser07';
import { TextDocument } from 'vscode-languageserver-textdocument';
import { isMap, isScalar, isSeq, Pair, Scalar, YAMLMap, YAMLSeq } from 'yaml';
import { TextBuffer } from '../src/languageservice/utils/textBuffer';
const expect = chai.expect;
chai.use(sinonChai);
describe('YAML Documents', () => {
const sandbox = sinon.createSandbox();
describe('YAML Documents Cache Tests', () => {
let parseStub: sinon.SinonStub;
beforeEach(() => {
parseStub = sandbox.stub(yamlParser, 'parse');
});
afterEach(() => {
sandbox.restore();
});
it('should cache parsed document', () => {
const cache = new YamlDocuments();
const doc = setupTextDocument('foo: bar');
parseStub.returns({});
const result1 = cache.getYamlDocument(doc);
const result2 = cache.getYamlDocument(doc);
expect(parseStub).calledOnce;
expect(result1).to.be.equal(result2);
});
it('should re parse document if document changed', () => {
const cache = new YamlDocuments();
const doc = setupTextDocument('foo: bar');
parseStub.onFirstCall().returns({});
parseStub.onSecondCall().returns({ foo: 'bar' });
const result1 = cache.getYamlDocument(doc);
TextDocument.update(doc, [], 2);
const result2 = cache.getYamlDocument(doc);
expect(parseStub).calledTwice;
expect(result1).to.be.not.equal(result2);
});
it('should invalidate cache if custom tags provided', () => {
const cache = new YamlDocuments();
const doc = setupTextDocument('foo: bar');
parseStub.onFirstCall().returns({});
parseStub.onSecondCall().returns({ foo: 'bar' });
const result1 = cache.getYamlDocument(doc);
const result2 = cache.getYamlDocument(doc, getParserOptions(['some']));
expect(parseStub).calledTwice;
expect(result1).to.not.equal(result2);
});
it('should use cache if custom tags are same', () => {
const cache = new YamlDocuments();
const doc = setupTextDocument('foo: bar');
parseStub.onFirstCall().returns({});
parseStub.onSecondCall().returns({ foo: 'bar' });
const result1 = cache.getYamlDocument(doc, getParserOptions(['some']));
const result2 = cache.getYamlDocument(doc, getParserOptions(['some']));
expect(parseStub).calledOnce;
expect(result1).to.be.equal(result2);
});
});
describe('Single YAML Document Tests', () => {
let documents: YamlDocuments;
beforeEach(() => {
documents = new YamlDocuments();
});
afterEach(() => {
sandbox.restore();
});
it('Get node from position: key', () => {
const doc = setupTextDocument('foo: bar');
const yamlDoc = documents.getYamlDocument(doc);
const [result] = yamlDoc.documents[0].getNodeFromPosition(2, new TextBuffer(doc));
expect(result).is.not.undefined;
expect(isScalar(result)).is.true;
expect((result as Scalar).value).eqls('foo');
});
it('Get node from position: value', () => {
const doc = setupTextDocument('foo: bar');
const yamlDoc = documents.getYamlDocument(doc);
const [result] = yamlDoc.documents[0].getNodeFromPosition(6, new TextBuffer(doc));
expect(result).is.not.undefined;
expect(isScalar(result)).is.true;
expect((result as Scalar).value).eqls('bar');
});
it('Get node from position: map', () => {
const doc = setupTextDocument('foo: bar');
const yamlDoc = documents.getYamlDocument(doc);
const [result] = yamlDoc.documents[0].getNodeFromPosition(4, new TextBuffer(doc));
expect(result).is.not.undefined;
expect(isMap(result)).is.true;
expect((result as YAMLMap).items).length(1);
});
it('Get node from position: scalar in array', () => {
const doc = setupTextDocument('foo:\n - bar');
const yamlDoc = documents.getYamlDocument(doc);
const [result] = yamlDoc.documents[0].getNodeFromPosition(9, new TextBuffer(doc));
expect(result).is.not.undefined;
expect(isScalar(result)).is.true;
expect((result as Scalar).value).equal('bar');
});
it('Get node from position: array', () => {
const doc = setupTextDocument('foo:\n - bar');
const yamlDoc = documents.getYamlDocument(doc);
const [result] = yamlDoc.documents[0].getNodeFromPosition(8, new TextBuffer(doc));
expect(result).is.not.undefined;
expect(isSeq(result)).is.true;
expect((result as YAMLSeq).items).length(1);
});
it('Get node from position: map with array', () => {
const doc = setupTextDocument('foo:\n - bar');
const yamlDoc = documents.getYamlDocument(doc);
const [result] = yamlDoc.documents[0].getNodeFromPosition(6, new TextBuffer(doc));
expect(result).is.not.undefined;
expect(isMap(result)).is.true;
expect((result as YAMLMap).items).length(1);
});
it('Get node from position: flow map key', () => {
const doc = setupTextDocument('{foo: bar}');
const yamlDoc = documents.getYamlDocument(doc);
const [result] = yamlDoc.documents[0].getNodeFromPosition(3, new TextBuffer(doc));
expect(result).is.not.undefined;
expect(isScalar(result)).is.true;
expect((result as Scalar).value).eqls('foo');
});
it('Get node from position: flow map value', () => {
const doc = setupTextDocument('{foo: bar}');
const yamlDoc = documents.getYamlDocument(doc);
const [result] = yamlDoc.documents[0].getNodeFromPosition(8, new TextBuffer(doc));
expect(result).is.not.undefined;
expect(isScalar(result)).is.true;
expect((result as Scalar).value).eqls('bar');
});
it('get pair parent in array', () => {
const doc = setupTextDocument(`objA:
- name: nameA1
objB:
size: midle
name: nameB2
`);
const yamlDoc = documents.getYamlDocument(doc);
const result = yamlDoc.documents[0].findClosestNode(27, new TextBuffer(doc));
expect(result).is.not.undefined;
expect(isMap(result)).is.true;
const resultItem: Pair = (result as YAMLMap).items[0];
expect(resultItem.key as Scalar).property('value', 'name');
expect(resultItem.value as Scalar).property('value', 'nameA1');
});
it('Find closes node: map', () => {
const doc = setupTextDocument('foo:\n bar: aaa\n ');
const yamlDoc = documents.getYamlDocument(doc);
const textBuffer = new TextBuffer(doc);
const result = yamlDoc.documents[0].findClosestNode(18, textBuffer);
expect(result).is.not.undefined;
expect(isMap(result)).is.true;
expect(((result as YAMLMap).items[0].key as Scalar).value).eqls('bar');
});
describe('Array', () => {
// Problem in `getNodeFromPosition` function. This method doesn't give proper results for arrays
// for example, this yaml return nodes:
// foo:
// - # foo object is returned (should be foo[0])
// # foo object is returned (should be foo[0])
// item1: aaaf
// # foo[0] object is returned (OK)
// - # foo object is returned (should be foo[1])
// # foo[!!0!!] object is returned (should be foo[1])
// item2: bbb
// # foo[1] object is returned (OK)
it('Find closes node: array', () => {
const doc = setupTextDocument('foo:\n - bar: aaa\n ');
const yamlDoc = documents.getYamlDocument(doc);
const textBuffer = new TextBuffer(doc);
const result = yamlDoc.documents[0].findClosestNode(20, textBuffer);
expect(result).is.not.undefined;
expect(isSeq(result)).is.true;
expect((((result as YAMLSeq).items[0] as YAMLMap).items[0].key as Scalar).value).eqls('bar');
});
it.skip('Find first array item node', () => {
const doc = setupTextDocument(`foo:
-
item1: aaa
`);
const yamlDoc = documents.getYamlDocument(doc);
const textBuffer = new TextBuffer(doc);
const result = yamlDoc.documents[0].findClosestNode(9, textBuffer);
expect(result).is.not.undefined;
expect(isMap(result)).is.true;
expect(((result as YAMLMap).items[0].key as Scalar).value).eqls('item1');
});
it.skip('Find first array item node - extra indent', () => {
const doc = setupTextDocument(`foo:
-
item1: aaa
`);
const yamlDoc = documents.getYamlDocument(doc);
const textBuffer = new TextBuffer(doc);
const result = yamlDoc.documents[0].findClosestNode(9, textBuffer);
expect(result).is.not.undefined;
expect(isMap(result)).is.true;
expect(((result as YAMLMap).items[0].key as Scalar).value).eqls('item1');
});
it.skip('Find second array item node', () => {
const doc = setupTextDocument(`foo:
- item1: aaa
-
item2: bbb`);
const yamlDoc = documents.getYamlDocument(doc);
const textBuffer = new TextBuffer(doc);
const result = yamlDoc.documents[0].findClosestNode(24, textBuffer);
expect(result).is.not.undefined;
expect(isMap(result)).is.true;
expect(((result as YAMLMap).items[0].key as Scalar).value).eqls('item2');
});
it.skip('Find second array item node: - extra indent', () => {
const doc = setupTextDocument(`foo:
- item1: aaa
-
item2: bbb`);
const yamlDoc = documents.getYamlDocument(doc);
const textBuffer = new TextBuffer(doc);
const result = yamlDoc.documents[0].findClosestNode(28, textBuffer);
expect(result).is.not.undefined;
expect(isMap(result)).is.true;
expect(((result as YAMLMap).items[0].key as Scalar).value).eqls('item2');
});
});
it('Find closes node: root map', () => {
const doc = setupTextDocument('foo:\n bar: aaa\n ');
const yamlDoc = documents.getYamlDocument(doc);
const textBuffer = new TextBuffer(doc);
const result = yamlDoc.documents[0].findClosestNode(17, textBuffer);
expect(result).is.not.undefined;
expect(isMap(result)).is.true;
expect(((result as YAMLMap).items[0].key as Scalar).value).eqls('bar');
});
it('should parse document when no yamlVersion is provided', () => {
const doc = setupTextDocument('foo: bar');
const opts = {
customTags: ['some'],
yamlVersion: undefined,
};
const yamlDoc = documents.getYamlDocument(doc, opts);
expect(yamlDoc).is.not.undefined;
});
});
});
function getParserOptions(customTags: string[]): yamlParser.ParserOptions {
return { customTags, yamlVersion: '1.2' };
}