-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathCrossScopeValidator.spec.ts
More file actions
1658 lines (1464 loc) · 59.7 KB
/
CrossScopeValidator.spec.ts
File metadata and controls
1658 lines (1464 loc) · 59.7 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
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
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import * as sinonImport from 'sinon';
import { DiagnosticMessages } from './DiagnosticMessages';
import { Program } from './Program';
import * as path from 'path';
import type { BrsFile } from './files/BrsFile';
import { trim, expectZeroDiagnostics, expectDiagnostics, expectDiagnosticsIncludes } from './testHelpers.spec';
import { expect } from 'chai';
import { SymbolTypeFlag } from './SymbolTypeFlag';
import util from './util';
describe('CrossScopeValidator', () => {
let sinon = sinonImport.createSandbox();
let rootDir = process.cwd();
let program: Program;
beforeEach(() => {
program = new Program({
rootDir: rootDir
});
program.createSourceScope();
});
afterEach(() => {
sinon.restore();
program.dispose();
});
it('handles prop access from component interface when inside a typecast', () => {
program.options.autoImportComponentScript = true;
program.setFile('components/CustomButton.xml', trim`
<component name="CustomButton" extends="Group">
<interface>
<field id="buttonProp" type="string" />
</interface>
</component>
`);
program.setFile('components/CustomButton.bs', `
sub test()
thing = (m.button as roSGNodeCustomButton).buttonProp
end sub
`);
program.validate();
expectZeroDiagnostics(program);
});
describe('providedNodes', () => {
it('builds a tree', () => {
program.setFile<BrsFile>('source/file1.bs', `
sub callOutsideFunc()
outsideFunc()
end sub
`);
program.setFile<BrsFile>('source/file2.bs', `
sub outsideFunc()
print "hello"
end sub
class Klass
x as integer
end class
interface IFace
x as float
y as float
end interface
`);
program.validate();
const sourceScope = program.getScopeByName('source');
const results = program.crossScopeValidation.getProvidedTree(sourceScope);
const tree = results.providedTree;
expect(tree.getSymbol('callOutsideFunc')).to.exist;
expect(tree.getSymbol('outsideFunc')).to.exist;
expect(tree.getSymbol('Klass')).to.exist;
expect(tree.getSymbol('IFace')).to.exist;
});
it('finds duplicates', () => {
program.setFile<BrsFile>('source/file1.bs', `
namespace alpha.beta
sub thing()
alpha.outsideFunc()
end sub
end namespace
`);
program.setFile<BrsFile>('source/file2.bs', `
namespace alpha
sub outsideFunc()
print "hello"
end sub
namespace beta
class Thing
x as integer
end class
end namespace
`);
program.validate();
const sourceScope = program.getScopeByName('source');
const results = program.crossScopeValidation.getProvidedTree(sourceScope);
const tree = results.providedTree;
expect(tree.getSymbol('alpha.beta.Thing')).to.exist;
expect(results.duplicatesMap.has('alpha.beta.thing')).to.true;
});
it('builds a tree from namespaces', () => {
program.setFile<BrsFile>('source/file1.bs', `
namespace alpha.beta
sub callOutsideFunc()
alpha.outsideFunc()
end sub
end namespace
`);
program.setFile<BrsFile>('source/file2.bs', `
sub outsideFunc()
end sub
namespace alpha
sub outsideFunc()
print "hello"
end sub
namespace beta
class Klass
x as integer
end class
interface IFace
x as float
y as float
end interface
end namespace
end namespace
`);
program.validate();
const sourceScope = program.getScopeByName('source');
const results = program.crossScopeValidation.getProvidedTree(sourceScope);
const tree = results.providedTree;
expect(tree.getSymbol('alpha.beta.callOutsideFunc')).to.exist;
expect(tree.getSymbol('outsideFunc')).to.exist;
expect(tree.getSymbol('alpha.outsideFunc')).to.exist;
expect(tree.getSymbol('alpha.beta.Klass')).to.exist;
expect(tree.getSymbol('alpha.beta.IFace')).to.exist;
});
});
describe('provides & requires', () => {
it('finds a required symbol in another file', () => {
let file1 = program.setFile<BrsFile>('source/file1.bs', `
sub callOutsideFunc()
outsideFunc()
end sub
`);
let file2 = program.setFile<BrsFile>('source/file2.bs', `
sub outsideFunc()
print "hello"
end sub
`);
program.validate();
expectZeroDiagnostics(program);
expect(file1.requiredSymbols.length).to.eq(1);
expect(file2.requiredSymbols.length).to.eq(0);
const sourceScopeIssues = program.crossScopeValidation.getIssuesForScope(program.getScopeByName('source'));
expect(sourceScopeIssues.missingSymbols.size).to.eq(0);
});
it('finds a required symbol in another file for each scope', () => {
let file1 = program.setFile<BrsFile>('source/file1.bs', `
sub callOutsideFunc()
outsideFunc()
end sub
`);
let file2 = program.setFile<BrsFile>('source/file2.bs', `
sub outsideFunc()
print "hello from source"
end sub
`);
program.setFile<BrsFile>('components/Widget.xml', trim`
<?xml version="1.0" encoding="utf-8" ?>
<component name="Widget" extends="Group">
<script uri="Widget.bs"/>
<script uri="pkg:/source/file1.bs"/>
</component>
`);
let widgetBs = program.setFile<BrsFile>('components/Widget.bs', `
sub init()
callOutsideFunc()
end sub
sub outsideFunc()
print "hello from widget"
end sub
`);
program.validate();
expectZeroDiagnostics(program);
expect(file1.requiredSymbols.length).to.eq(1);
expect(file2.requiredSymbols.length).to.eq(0);
expect(widgetBs.requiredSymbols.length).to.eq(1);
const sourceScopeIssues = program.crossScopeValidation.getIssuesForScope(program.getScopeByName('source'));
expect(sourceScopeIssues.missingSymbols.size).to.eq(0);
const widgetScopeIssues = program.crossScopeValidation.getIssuesForScope(program.getScopeByName(`components${path.sep}Widget.xml`));
expect(widgetScopeIssues.missingSymbols.size).to.eq(0);
});
it('finds a required symbol in a namespace in another file', () => {
let file1 = program.setFile<BrsFile>('source/file1.bs', `
namespace alpha
sub callOutsideFunc()
outsideFunc()
end sub
end namespace
`);
let file2 = program.setFile<BrsFile>('source/file2.bs', `
namespace alpha
sub outsideFunc()
print "hello from source"
end sub
end namespace
`);
program.validate();
expectZeroDiagnostics(program);
expect(file1.requiredSymbols.length).to.eq(1);
expect(file2.requiredSymbols.length).to.eq(0);
const sourceScopeIssues = program.crossScopeValidation.getIssuesForScope(program.getScopeByName('source'));
expect(sourceScopeIssues.missingSymbols.size).to.eq(0);
});
it('finds if a required symbol is defined different in different scopes', () => {
let file1 = program.setFile<BrsFile>('source/file1.bs', `
sub callOutsideFunc()
print outsideFunc()
end sub
`);
let file2 = program.setFile<BrsFile>('source/file2.bs', `
function outsideFunc() as string
return "hello from source"
end function
`);
program.setFile<BrsFile>('components/Widget.xml', trim`
<?xml version="1.0" encoding="utf-8" ?>
<component name="Widget" extends="Group">
<script uri="Widget.bs"/>
<script uri="pkg:/source/file1.bs"/>
</component>
`);
let widgetBs = program.setFile<BrsFile>('components/Widget.bs', `
sub init()
print callOutsideFunc()
end sub
function outsideFunc() as integer
return 123
end function
`);
program.validate();
//expectZeroDiagnostics(program);
expect(file1.requiredSymbols.length).to.eq(1);
expect(file2.requiredSymbols.length).to.eq(0);
expect(widgetBs.requiredSymbols.length).to.eq(1);
const incompatibleResolutions = program.crossScopeValidation.getIncompatibleSymbolResolutions();
expect(incompatibleResolutions.length).to.eq(1);
expect(incompatibleResolutions[0].incompatibleScopes.size).to.eq(2);
});
it('finds types defined in different file', () => {
let file1 = program.setFile<BrsFile>('source/file1.bs', `
function takesIface(z as MyInterface) as string
return z.name
end function
`);
program.setFile<BrsFile>('source/file2.bs', `
interface MyInterface
name as string
end interface
`);
program.validate();
expectZeroDiagnostics(program);
expect(file1.requiredSymbols.length).to.eq(1);
expect(file1.requiredSymbols[0].flags).to.eq(SymbolTypeFlag.typetime);
expect(file1.requiredSymbols[0].typeChain[0].name).to.eq('MyInterface');
const sourceScopeIssues = program.crossScopeValidation.getIssuesForScope(program.getScopeByName('source'));
expect(sourceScopeIssues.missingSymbols.size).to.eq(0);
});
it('finds members of typecasts of types defined in different file', () => {
let file1 = program.setFile<BrsFile>('source/file1.bs', `
function takesIface(z) as string
return (z as MyInterface).name
end function
`);
program.setFile<BrsFile>('source/file2.bs', `
interface MyInterface
name as string
end interface
`);
program.validate();
expectZeroDiagnostics(program);
expect(file1.requiredSymbols.length).to.eq(1);
expect(file1.requiredSymbols[0].flags).to.eq(SymbolTypeFlag.typetime);
expect(file1.requiredSymbols[0].typeChain[0].name).to.eq('MyInterface');
const sourceScopeIssues = program.crossScopeValidation.getIssuesForScope(program.getScopeByName('source'));
expect(sourceScopeIssues.missingSymbols.size).to.eq(0);
});
});
describe('incompatibleSymbolDefinition', () => {
it('allows different symbols that are compatible across scopes', () => {
program.setFile<BrsFile>('source/file1.bs', `
function callsOther() as string
return otherFunc()
end function
`);
program.setFile<BrsFile>('source/file2.bs', `
function otherFunc() as string
return "hello"
end function
`);
program.setFile<BrsFile>('components/Widget.xml', trim`
<?xml version="1.0" encoding="utf-8" ?>
<component name="Widget" extends="Group">
<script uri="Widget.bs"/>
<script uri="pkg:/source/file1.bs"/>
</component>
`);
program.setFile<BrsFile>('components/Widget.bs', `
sub init()
callsOther()
end sub
function otherFunc() as string ' same function signature as in file2.bs
return "goodbye"
end function
`);
program.validate();
expectZeroDiagnostics(program);
});
it('finds symbols inconsistent across scopes', () => {
program.setFile<BrsFile>('source/file1.bs', `
function callsOther() as string
otherFunc()
return "test"
end function
`);
program.setFile<BrsFile>('source/file2.bs', `
function otherFunc() as string
return "hello"
end function
`);
program.setFile<BrsFile>('components/Widget.xml', trim`
<?xml version="1.0" encoding="utf-8" ?>
<component name="Widget" extends="Group">
<script uri="Widget.bs"/>
<script uri="pkg:/source/file1.bs"/>
</component>
`);
program.setFile<BrsFile>('components/Widget.bs', `
sub init()
callsOther()
end sub
function otherFunc() as integer
return 42
end function
`);
program.validate();
expectDiagnostics(program, [
DiagnosticMessages.incompatibleSymbolDefinition('otherFunc', { scopes: ['source', `components${path.sep}Widget.xml`] }).message
]);
});
it('finds namespaced symbols inconsistent across scopes', () => {
program.setFile<BrsFile>('source/file1.bs', `
function callsAlphaBetaOther() as string
alpha.beta.otherFunc()
return "test"
end function
`);
program.setFile<BrsFile>('source/file2.bs', `
namespace alpha.beta
function otherFunc() as string
return "hello"
end function
end namespace
`);
program.setFile<BrsFile>('components/Widget.xml', trim`
<?xml version="1.0" encoding="utf-8" ?>
<component name="Widget" extends="Group">
<script uri="Widget.bs"/>
<script uri="pkg:/source/file1.bs"/>
</component>
`);
program.setFile<BrsFile>('components/Widget.bs', `
sub init()
callsAlphaBetaOther()
end sub
namespace alpha.beta
function otherFunc() as integer
return 42
end function
end namespace
`);
program.validate();
expectDiagnostics(program, [
DiagnosticMessages.incompatibleSymbolDefinition('alpha.beta.otherFunc', { scopes: ['source', `components${path.sep}Widget.xml`] }).message
]);
});
it('finds relative namespaced symbols inconsistent across scopes', () => {
program.setFile<BrsFile>('source/file1.bs', `
namespace alpha.beta
function callsOther() as string
otherFunc()
return "test"
end function
end namespace
`);
program.setFile<BrsFile>('source/file2.bs', `
namespace alpha.beta
function otherFunc() as string
return "hello"
end function
end namespace
`);
program.setFile<BrsFile>('components/Widget.xml', trim`
<?xml version="1.0" encoding="utf-8" ?>
<component name="Widget" extends="Group">
<script uri="Widget.bs"/>
<script uri="pkg:/source/file1.bs"/>
</component>
`);
program.setFile<BrsFile>('components/Widget.bs', `
sub init()
alpha.beta.callsOther()
end sub
namespace alpha.beta
function otherFunc() as integer
return 42
end function
end namespace
`);
program.validate();
expectDiagnostics(program, [
DiagnosticMessages.incompatibleSymbolDefinition('otherFunc', { scopes: ['source', `components${path.sep}Widget.xml`] }).message
]);
});
it('adds a diagnostic when a file import changes', () => {
program.setFile<BrsFile>('source/file1.bs', `
interface iface1
name as string
otherIface as iface2
end interface
function useIface1(x as iface1) as integer
out = x.otherIface.data + 2
return out
end function
`);
program.setFile<BrsFile>('source/file2.bs', `
interface iface2
data as integer
end interface
`);
program.setFile<BrsFile>('components/Widget.xml', trim`
<?xml version="1.0" encoding="utf-8" ?>
<component name="Widget" extends="Group">
<script uri="widget.bs"/>
<script uri="pkg:/source/file1.bs"/>
</component>
`);
program.setFile<BrsFile>('components/widget.bs', `
import "pkg:/source/file2.bs"
`);
program.validate();
expectZeroDiagnostics(program);
program.setFile<BrsFile>('components/file3.bs', `
interface iface2
data as string
end interface
`);
program.setFile<BrsFile>('components/widget.bs', `
import "file3.bs"
`);
program.validate();
expectDiagnostics(program, [
DiagnosticMessages.incompatibleSymbolDefinition('iface2', { scopes: ['source', `components${path.sep}Widget.xml`] }).message
]);
});
});
describe('cannotFindName', () => {
it('should not complain when all non-namespaced symbols are found', () => {
program.setFile<BrsFile>('source/file1.bs', `
function callsOther() as string
return otherFunc()
end function
`);
program.setFile<BrsFile>('source/file2.bs', `
function otherFunc() as string
return "hello"
end function
`);
program.setFile<BrsFile>('components/Widget.xml', trim`
<?xml version="1.0" encoding="utf-8" ?>
<component name="Widget" extends="Group">
<script uri="Widget.bs"/>
<script uri="pkg:/source/file1.bs"/>
</component>
`);
program.setFile<BrsFile>('components/Widget.bs', `
sub init()
callsOther()
end sub
function otherFunc() as string
return "goodbye"
end function
`);
program.validate();
expectZeroDiagnostics(program);
});
it('should not have scope specific error if symbol not found in any scope', () => {
program.setFile<BrsFile>('source/file1.bs', `
function callsOther() as string
return otherFunc()
end function
`);
program.setFile<BrsFile>('components/Widget.xml', trim`
<?xml version="1.0" encoding="utf-8" ?>
<component name="Widget" extends="Group">
<script uri="Widget.bs"/>
<script uri="pkg:/source/file1.bs"/>
</component>
`);
program.setFile<BrsFile>('components/Widget.bs', `
sub init()
callsOther()
end sub
`);
program.validate();
expectDiagnostics(program, [
DiagnosticMessages.cannotFindFunction('otherFunc').message
]);
});
it('should allow namespaced symbols to match a require in a namespace', () => {
program.setFile<BrsFile>('source/file1.bs', `
namespace alpha.beta
function callsOther() as string
return otherFunc()
end function
end namespace
`);
program.setFile<BrsFile>('source/file2.bs', `
function otherFunc() as string ' non-namespaced - matches for scope source
return "hello"
end function
`);
program.setFile<BrsFile>('components/Widget.xml', trim`
<?xml version="1.0" encoding="utf-8" ?>
<component name="Widget" extends="Group">
<script uri="Widget.bs"/>
<script uri="pkg:/source/file1.bs"/>
</component>
`);
program.setFile<BrsFile>('components/Widget.bs', `
sub init()
alpha.beta.callsOther()
end sub
namespace alpha.beta
function otherFunc() as string ' namespaced - matches for scope Widget
return "goodbye"
end function
end namespace
`);
program.validate();
expectZeroDiagnostics(program);
});
it('should find when a non-namespaced symbols are not in a second scope', () => {
program.setFile<BrsFile>('source/file1.bs', `
function callsOther() as string
otherFunc()
return "test"
end function
`);
program.setFile<BrsFile>('source/file2.bs', `
function otherFunc() as string
return "hello"
end function
`);
program.setFile<BrsFile>('components/Widget.xml', trim`
<?xml version="1.0" encoding="utf-8" ?>
<component name="Widget" extends="Group">
<script uri="Widget.bs"/>
<script uri="pkg:/source/file1.bs"/>
</component>
`);
// "otherFunc" is in Widget
program.setFile<BrsFile>('components/Widget.bs', `
sub init()
callsOther()
end sub
function otherFunc() as string
return "goodbye"
end function
`);
program.setFile<BrsFile>('components/Widget2.xml', trim`
<?xml version="1.0" encoding="utf-8" ?>
<component name="Widget2" extends="Group">
<script uri="Widget2.bs"/>
<script uri="pkg:/source/file1.bs"/>
</component>
`);
// "otherFunc" is NOT in Widget2
program.setFile<BrsFile>('components/Widget2.bs', `
sub init()
callsOther()
end sub
`);
program.validate();
expectDiagnostics(program, [
DiagnosticMessages.cannotFindFunction('otherFunc', `components${path.sep}Widget2.xml`).message
]);
});
it('should validate when type is not available in a second scope', () => {
program.setFile<BrsFile>('components/file1.bs', `
interface iface1 ' this file is in components - it is not in source scope
data as iface2
end interface
`);
program.setFile<BrsFile>('components/file2.bs', `
interface iface2
name as string
end interface
`);
program.setFile<BrsFile>('components/common.bs', `
sub printData(x as iface1)
print x.data.name
end sub
`);
program.setFile<BrsFile>('components/Widget.xml', trim`
<?xml version="1.0" encoding="utf-8" ?>
<component name="Widget" extends="Group">
<script uri="Widget.bs"/>
</component>
`);
// "iface2" is in Widget
program.setFile<BrsFile>('components/Widget.bs', `
import "pkg:/components/file1.bs"
import "pkg:/components/file2.bs"
import "pkg:/components/common.bs"
`);
program.setFile<BrsFile>('components/Widget2.xml', trim`
<?xml version="1.0" encoding="utf-8" ?>
<component name="Widget2" extends="Group">
<script uri="Widget2.bs"/>
</component>
`);
// "iface2" is NOT in Widget2
program.setFile<BrsFile>('components/Widget2.bs', `
import "pkg:/components/file1.bs"
import "pkg:/components/common.bs"
`);
program.validate();
expectDiagnosticsIncludes(program, [
DiagnosticMessages.cannotFindName('iface2', `components${path.sep}Widget2.xml`).message
]);
});
it('should validate when type is not available in an new scope', () => {
program.setFile<BrsFile>('components/file1.bs', `
interface iface1 ' this file is in components - it is not in source scope
data as iface2
end interface
`);
program.setFile<BrsFile>('components/file2.bs', `
interface iface2
name as string
end interface
`);
program.setFile<BrsFile>('components/common.bs', `
sub printData(x as iface1)
print x.data.name
end sub
`);
program.setFile<BrsFile>('components/Widget.xml', trim`
<?xml version="1.0" encoding="utf-8" ?>
<component name="Widget" extends="Group">
<script uri="Widget.bs"/>
</component>
`);
// "iface2" is in Widget
program.setFile<BrsFile>('components/Widget.bs', `
import "pkg:/components/file1.bs"
import "pkg:/components/file2.bs"
import "pkg:/components/common.bs"
`);
program.validate();
expectZeroDiagnostics(program);
program.setFile<BrsFile>('components/Widget2.xml', trim`
<?xml version="1.0" encoding="utf-8" ?>
<component name="Widget2" extends="Group">
<script uri="Widget2.bs"/>
</component>
`);
// "iface2" is NOT in Widget2
program.setFile<BrsFile>('components/Widget2.bs', `
import "pkg:/components/file1.bs"
import "pkg:/components/common.bs"
`);
program.validate();
expectDiagnosticsIncludes(program, [
DiagnosticMessages.cannotFindName('iface2', `components${path.sep}Widget2.xml`).message
]);
});
it('should validate when namespaced symbol in second scope is missing because of file change', () => {
program.setFile<BrsFile>('source/file1.bs', `
namespace alpha
namespace beta
function someFunc() as string
return "hello"
end function
end namespace
end namespace
`);
program.setFile<BrsFile>('source/file2.bs', `
sub otherFunc()
print alpha.beta.someFunc() + " world"
end sub
`);
program.setFile<BrsFile>('source/file3.bs', `
import "file1.bs"
import "file2.bs"
`);
program.setFile<BrsFile>('components/Widget.xml', trim`
<?xml version="1.0" encoding="utf-8" ?>
<component name="Widget" extends="Group">
<script uri="Widget.bs"/>
</component>
`);
program.setFile<BrsFile>('components/Widget.bs', `
import "pkg:/source/file3.bs"
sub init()
alpha.beta.someFunc()
end sub
`);
program.validate();
expectZeroDiagnostics(program);
// change file3 so alpha.beta.someFunc is not available
program.setFile<BrsFile>('pkg:/source/file3.bs', `
namespace alpha.beta ' need to define the namespace, but not someFunc()
const pi = 3.14
end namespace
`);
program.validate();
expectDiagnostics(program, [
DiagnosticMessages.cannotFindFunction('someFunc', 'alpha.beta.someFunc', 'alpha.beta', 'namespace').message
]);
});
it('should find relative namespace items defined in another file', () => {
program.setFile<BrsFile>('source/file1.bs', `
namespace alpha.beta
enum Direction
up
down
end enum
class Foo
x as integer
dir as Direction
end class
end namespace
`);
program.setFile<BrsFile>('source/file2.bs', `
namespace alpha.beta
interface Data
name as string
id as integer
end interface
end namespace
`);
program.setFile<BrsFile>('source/file3.bs', `
namespace Alpha.Beta
class Bar extends Foo
function getData() as Data
return {name: m.dir.toStr(), id: m.x}
end function
end class
end namespace
`);
program.validate();
expectZeroDiagnostics(program);
});
it('should find member symbols in other file when editing', () => {
program.setFile<BrsFile>('source/file1.bs', `
namespace alpha.beta
enum Direction
up
down
end enum
class Foo
dir as Direction
end class
end namespace
`);
program.setFile<BrsFile>('source/file2.bs', `
namespace Alpha.Beta
class Bar extends Foo
sub goDown()
m.dir = Direction.down
end sub
end class
end namespace
`);
const file3Text = `
namespace Alpha.Beta
class Other
function getPi() as float
return 3.14
end function
end class
end namespace
`;
program.setFile<BrsFile>('source/file3.bs', file3Text);
program.validate();
expectZeroDiagnostics(program);
program.setFile<BrsFile>('source/file3.bs', file3Text); // NO CHANGE!!
program.validate();
expectZeroDiagnostics(program);
});
describe('const values', () => {
it('should allow const values to be composed of other const values from namespaces', () => {
program.setFile('source/constants.bs', `
const top_pi = alpha.beta.pi
const top_two = alpha.gamma.two
const top_twoPi = top_two * top_pi
`);
program.setFile('source/ns.bs', `
namespace alpha.beta
const pi = 3.14
end namespace
namespace alpha.gamma
const two = 2
end namespace
`);
program.setFile('components/widget.xml', trim`
<?xml version="1.0" encoding="utf-8" ?>
<component name="Widget" extends="Group">
<script uri="pkg:/components/widget.bs"/>
</component>
`);
program.setFile('components/widget.bs', `
import "pkg:/source/constants.bs"
import "pkg:/source/ns.bs"
sub init()
print top_twoPi
end sub
`);
program.validate();
expectZeroDiagnostics(program);
});
});
it('allows union types from imports', () => {
program.setFile('components/namespaces.bs', `
namespace alpha
namespace beta
interface BaseCase
name as string
end interface
end namespace
end namespace
`);
program.setFile('components/utils.bs', `
namespace alpha
namespace beta
interface OtherCase
name as string
end interface
end namespace
end namespace
`);
program.setFile('components/widget.xml', trim`
<?xml version="1.0" encoding="utf-8" ?>
<component name="Widget" extends="Group">
<script uri="pkg:/components/widget.bs"/>
</component>
`);
program.setFile('components/widget.bs', `
import "pkg:/components/utils.bs"
import "pkg:/components/namespaces.bs"
sub foo(input as alpha.beta.BaseCase or alpha.beta.OtherCase)
print input.name
end sub
`);
program.validate();
expectZeroDiagnostics(program);
});
it('finds custom components', () => {
program.setFile('components/utils.bs', `
function printWidgetName(widg as roSGNodeWidget)
print widg.name
end function
function getWidget(name as string) as roSGNodeWidget
widge = createObject("roSgNode", "Widget")
widge.name = name
return widge
end function
`);
program.setFile('components/widget.xml', trim`
<?xml version="1.0" encoding="utf-8" ?>
<component name="Widget" extends="Group">
<script uri="pkg:/components/widget.bs"/>
<interface>
<field id="name" type="string" />
</interface>
</component>
`);
program.setFile('components/widget.bs', `
import "pkg:/components/utils.bs"
sub init()
stuff(m.top as roSGNodeWidget)
end sub
sub stuff(w as roSgNodeWidget)
printWidgetName(w)
end sub
`);
program.setFile('components/other.xml', trim`
<?xml version="1.0" encoding="utf-8" ?>
<component name="Other" extends="Group">
<script uri="pkg:/components/other.bs"/>
<interface>
<field id="name" type="string" />
</interface>
</component>
`);