-
Notifications
You must be signed in to change notification settings - Fork 30.1k
/
Copy pathtestingExplorerView.ts
1585 lines (1354 loc) · 58.9 KB
/
testingExplorerView.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
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
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import * as dom from 'vs/base/browser/dom';
import { IKeyboardEvent } from 'vs/base/browser/keyboardEvent';
import { IActionViewItemOptions } from 'vs/base/browser/ui/actionbar/actionViewItems';
import { ActionBar, IActionViewItem } from 'vs/base/browser/ui/actionbar/actionbar';
import { Button } from 'vs/base/browser/ui/button/button';
import type { IManagedHover } from 'vs/base/browser/ui/hover/hover';
import { getDefaultHoverDelegate } from 'vs/base/browser/ui/hover/hoverDelegateFactory';
import { renderLabelWithIcons } from 'vs/base/browser/ui/iconLabel/iconLabels';
import { IIdentityProvider, IKeyboardNavigationLabelProvider, IListVirtualDelegate } from 'vs/base/browser/ui/list/list';
import { DefaultKeyboardNavigationDelegate, IListAccessibilityProvider } from 'vs/base/browser/ui/list/listWidget';
import { ITreeContextMenuEvent, ITreeFilter, ITreeNode, ITreeRenderer, ITreeSorter, TreeFilterResult, TreeVisibility } from 'vs/base/browser/ui/tree/tree';
import { Action, ActionRunner, IAction, Separator } from 'vs/base/common/actions';
import { mapFindFirst } from 'vs/base/common/arraysFind';
import { RunOnceScheduler, disposableTimeout } from 'vs/base/common/async';
import { Color, RGBA } from 'vs/base/common/color';
import { Emitter, Event } from 'vs/base/common/event';
import { FuzzyScore } from 'vs/base/common/filters';
import { KeyCode } from 'vs/base/common/keyCodes';
import { Disposable, DisposableStore, MutableDisposable } from 'vs/base/common/lifecycle';
import { autorun, observableFromEvent } from 'vs/base/common/observable';
import { fuzzyContains } from 'vs/base/common/strings';
import { ThemeIcon } from 'vs/base/common/themables';
import { isDefined } from 'vs/base/common/types';
import { URI } from 'vs/base/common/uri';
import 'vs/css!./media/testing';
import { MarkdownRenderer } from 'vs/editor/browser/widget/markdownRenderer/browser/markdownRenderer';
import { localize } from 'vs/nls';
import { DropdownWithPrimaryActionViewItem } from 'vs/platform/actions/browser/dropdownWithPrimaryActionViewItem';
import { MenuEntryActionViewItem, createActionViewItem, createAndFillInActionBarActions, createAndFillInContextMenuActions } from 'vs/platform/actions/browser/menuEntryActionViewItem';
import { IMenuService, MenuId, MenuItemAction } from 'vs/platform/actions/common/actions';
import { ICommandService } from 'vs/platform/commands/common/commands';
import { IConfigurationService } from 'vs/platform/configuration/common/configuration';
import { IContextKeyService } from 'vs/platform/contextkey/common/contextkey';
import { IContextMenuService } from 'vs/platform/contextview/browser/contextView';
import { IHoverService } from 'vs/platform/hover/browser/hover';
import { IInstantiationService } from 'vs/platform/instantiation/common/instantiation';
import { IKeybindingService } from 'vs/platform/keybinding/common/keybinding';
import { IOpenerService } from 'vs/platform/opener/common/opener';
import { UnmanagedProgress } from 'vs/platform/progress/common/progress';
import { IStorageService, StorageScope, StorageTarget, WillSaveStateReason } from 'vs/platform/storage/common/storage';
import { ITelemetryService } from 'vs/platform/telemetry/common/telemetry';
import { defaultButtonStyles } from 'vs/platform/theme/browser/defaultStyles';
import { foreground } from 'vs/platform/theme/common/colorRegistry';
import { spinningLoading } from 'vs/platform/theme/common/iconRegistry';
import { IThemeService, registerThemingParticipant } from 'vs/platform/theme/common/themeService';
import { IUriIdentityService } from 'vs/platform/uriIdentity/common/uriIdentity';
import { registerNavigableContainer } from 'vs/workbench/browser/actions/widgetNavigationCommands';
import { ViewPane } from 'vs/workbench/browser/parts/views/viewPane';
import { IViewletViewOptions } from 'vs/workbench/browser/parts/views/viewsViewlet';
import { DiffEditorInput } from 'vs/workbench/common/editor/diffEditorInput';
import { IViewDescriptorService } from 'vs/workbench/common/views';
import { ITestTreeProjection, TestExplorerTreeElement, TestItemTreeElement, TestTreeErrorMessage } from 'vs/workbench/contrib/testing/browser/explorerProjections/index';
import { ListProjection } from 'vs/workbench/contrib/testing/browser/explorerProjections/listProjection';
import { getTestItemContextOverlay } from 'vs/workbench/contrib/testing/browser/explorerProjections/testItemContextOverlay';
import { TestingObjectTree } from 'vs/workbench/contrib/testing/browser/explorerProjections/testingObjectTree';
import { ISerializedTestTreeCollapseState } from 'vs/workbench/contrib/testing/browser/explorerProjections/testingViewState';
import { TreeProjection } from 'vs/workbench/contrib/testing/browser/explorerProjections/treeProjection';
import * as icons from 'vs/workbench/contrib/testing/browser/icons';
import { DebugLastRun, ReRunLastRun } from 'vs/workbench/contrib/testing/browser/testExplorerActions';
import { TestingExplorerFilter } from 'vs/workbench/contrib/testing/browser/testingExplorerFilter';
import { CountSummary, collectTestStateCounts, getTestProgressText } from 'vs/workbench/contrib/testing/browser/testingProgressUiService';
import { TestingConfigKeys, TestingCountBadge, getTestingConfiguration } from 'vs/workbench/contrib/testing/common/configuration';
import { TestCommandId, TestExplorerViewMode, TestExplorerViewSorting, Testing, labelForTestInState } from 'vs/workbench/contrib/testing/common/constants';
import { StoredValue } from 'vs/workbench/contrib/testing/common/storedValue';
import { ITestExplorerFilterState, TestExplorerFilterState, TestFilterTerm } from 'vs/workbench/contrib/testing/common/testExplorerFilterState';
import { TestId } from 'vs/workbench/contrib/testing/common/testId';
import { ITestProfileService, canUseProfileWithTest } from 'vs/workbench/contrib/testing/common/testProfileService';
import { LiveTestResult, TestResultItemChangeReason } from 'vs/workbench/contrib/testing/common/testResult';
import { ITestResultService } from 'vs/workbench/contrib/testing/common/testResultService';
import { IMainThreadTestCollection, ITestService, testCollectionIsEmpty } from 'vs/workbench/contrib/testing/common/testService';
import { ITestRunProfile, InternalTestItem, TestItemExpandState, TestResultState, TestRunProfileBitset } from 'vs/workbench/contrib/testing/common/testTypes';
import { TestingContextKeys } from 'vs/workbench/contrib/testing/common/testingContextKeys';
import { ITestingContinuousRunService } from 'vs/workbench/contrib/testing/common/testingContinuousRunService';
import { ITestingPeekOpener } from 'vs/workbench/contrib/testing/common/testingPeekOpener';
import { cmpPriority, isFailedState, isStateWithResult, statesInOrder } from 'vs/workbench/contrib/testing/common/testingStates';
import { IActivityService, IconBadge, NumberBadge } from 'vs/workbench/services/activity/common/activity';
import { IEditorGroupsService } from 'vs/workbench/services/editor/common/editorGroupsService';
import { IEditorService } from 'vs/workbench/services/editor/common/editorService';
const enum LastFocusState {
Input,
Tree,
}
export class TestingExplorerView extends ViewPane {
public viewModel!: TestingExplorerViewModel;
private readonly filterActionBar = this._register(new MutableDisposable());
private container!: HTMLElement;
private treeHeader!: HTMLElement;
private readonly discoveryProgress = this._register(new MutableDisposable<UnmanagedProgress>());
private readonly filter = this._register(new MutableDisposable<TestingExplorerFilter>());
private readonly filterFocusListener = this._register(new MutableDisposable());
private readonly dimensions = { width: 0, height: 0 };
private lastFocusState = LastFocusState.Input;
public get focusedTreeElements() {
return this.viewModel.tree.getFocus().filter(isDefined);
}
constructor(
options: IViewletViewOptions,
@IContextMenuService contextMenuService: IContextMenuService,
@IKeybindingService keybindingService: IKeybindingService,
@IConfigurationService configurationService: IConfigurationService,
@IInstantiationService instantiationService: IInstantiationService,
@IViewDescriptorService viewDescriptorService: IViewDescriptorService,
@IContextKeyService contextKeyService: IContextKeyService,
@IOpenerService openerService: IOpenerService,
@IThemeService themeService: IThemeService,
@ITestService private readonly testService: ITestService,
@ITelemetryService telemetryService: ITelemetryService,
@IHoverService hoverService: IHoverService,
@ITestProfileService private readonly testProfileService: ITestProfileService,
@ICommandService private readonly commandService: ICommandService,
@IMenuService private readonly menuService: IMenuService,
) {
super(options, keybindingService, contextMenuService, configurationService, contextKeyService, viewDescriptorService, instantiationService, openerService, themeService, telemetryService, hoverService);
const relayout = this._register(new RunOnceScheduler(() => this.layoutBody(), 1));
this._register(this.onDidChangeViewWelcomeState(() => {
if (!this.shouldShowWelcome()) {
relayout.schedule();
}
}));
this._register(testService.collection.onBusyProvidersChange(busy => {
this.updateDiscoveryProgress(busy);
}));
this._register(testProfileService.onDidChange(() => this.updateActions()));
}
public override shouldShowWelcome() {
return this.viewModel?.welcomeExperience === WelcomeExperience.ForWorkspace ?? true;
}
public override focus() {
super.focus();
if (this.lastFocusState === LastFocusState.Tree) {
this.viewModel.tree.domFocus();
} else {
this.filter.value?.focus();
}
}
/**
* Gets include/exclude items in the tree, based either on visible tests
* or a use selection.
*/
public getTreeIncludeExclude(withinItems?: InternalTestItem[], profile?: ITestRunProfile, filterToType: 'visible' | 'selected' = 'visible') {
const projection = this.viewModel.projection.value;
if (!projection) {
return { include: [], exclude: [] };
}
// To calculate includes and excludes, we include the first children that
// have a majority of their items included too, and then apply exclusions.
const include = new Set<InternalTestItem>();
const exclude: InternalTestItem[] = [];
const attempt = (element: TestExplorerTreeElement, alreadyIncluded: boolean) => {
// sanity check hasElement since updates are debounced and they may exist
// but not be rendered yet
if (!(element instanceof TestItemTreeElement) || !this.viewModel.tree.hasElement(element)) {
return;
}
// If the current node is not visible or runnable in the current profile, it's excluded
const inTree = this.viewModel.tree.getNode(element);
if (!inTree.visible) {
if (alreadyIncluded) { exclude.push(element.test); }
return;
}
// If it's not already included but most of its children are, then add it
// if it can be run under the current profile (when specified)
if (
// If it's not already included...
!alreadyIncluded
// And it can be run using the current profile (if any)
&& (!profile || canUseProfileWithTest(profile, element.test))
// And either it's a leaf node or most children are included, the include it.
&& (inTree.children.length === 0 || inTree.visibleChildrenCount * 2 >= inTree.children.length)
// And not if we're only showing a single of its children, since it
// probably fans out later. (Worse case we'll directly include its single child)
&& inTree.visibleChildrenCount !== 1
) {
include.add(element.test);
alreadyIncluded = true;
}
// Recurse ✨
for (const child of element.children) {
attempt(child, alreadyIncluded);
}
};
if (filterToType === 'selected') {
const sel = this.viewModel.tree.getSelection().filter(isDefined);
if (sel.length) {
L:
for (const node of sel) {
if (node instanceof TestItemTreeElement) {
// avoid adding an item if its parent is already included
for (let i: TestItemTreeElement | null = node; i; i = i.parent) {
if (include.has(i.test)) {
continue L;
}
}
include.add(node.test);
node.children.forEach(c => attempt(c, true));
}
}
return { include: [...include], exclude };
}
}
for (const root of withinItems || this.testService.collection.rootItems) {
const element = projection.getElementByTestId(root.item.extId);
if (!element) {
continue;
}
if (profile && !canUseProfileWithTest(profile, root)) {
continue;
}
// single controllers won't have visible root ID nodes, handle that case specially
if (!this.viewModel.tree.hasElement(element)) {
const visibleChildren = [...element.children].reduce((acc, c) =>
this.viewModel.tree.hasElement(c) && this.viewModel.tree.getNode(c).visible ? acc + 1 : acc, 0);
// note we intentionally check children > 0 here, unlike above, since
// we don't want to bother dispatching to controllers who have no discovered tests
if (element.children.size > 0 && visibleChildren * 2 >= element.children.size) {
include.add(element.test);
element.children.forEach(c => attempt(c, true));
} else {
element.children.forEach(c => attempt(c, false));
}
} else {
attempt(element, false);
}
}
return { include: [...include], exclude };
}
override render(): void {
super.render();
this._register(registerNavigableContainer({
name: 'testingExplorerView',
focusNotifiers: [this],
focusNextWidget: () => {
if (!this.viewModel.tree.isDOMFocused()) {
this.viewModel.tree.domFocus();
}
},
focusPreviousWidget: () => {
if (this.viewModel.tree.isDOMFocused()) {
this.filter.value?.focus();
}
}
}));
}
/**
* @override
*/
protected override renderBody(container: HTMLElement): void {
super.renderBody(container);
this.container = dom.append(container, dom.$('.test-explorer'));
this.treeHeader = dom.append(this.container, dom.$('.test-explorer-header'));
this.filterActionBar.value = this.createFilterActionBar();
const messagesContainer = dom.append(this.treeHeader, dom.$('.result-summary-container'));
this._register(this.instantiationService.createInstance(ResultSummaryView, messagesContainer));
const listContainer = dom.append(this.container, dom.$('.test-explorer-tree'));
this.viewModel = this.instantiationService.createInstance(TestingExplorerViewModel, listContainer, this.onDidChangeBodyVisibility);
this._register(this.viewModel.tree.onDidFocus(() => this.lastFocusState = LastFocusState.Tree));
this._register(this.viewModel.onChangeWelcomeVisibility(() => this._onDidChangeViewWelcomeState.fire()));
this._register(this.viewModel);
this._onDidChangeViewWelcomeState.fire();
}
/** @override */
public override getActionViewItem(action: IAction, options: IActionViewItemOptions): IActionViewItem | undefined {
switch (action.id) {
case TestCommandId.FilterAction:
this.filter.value = this.instantiationService.createInstance(TestingExplorerFilter, action, options);
this.filterFocusListener.value = this.filter.value.onDidFocus(() => this.lastFocusState = LastFocusState.Input);
return this.filter.value;
case TestCommandId.RunSelectedAction:
return this.getRunGroupDropdown(TestRunProfileBitset.Run, action, options);
case TestCommandId.DebugSelectedAction:
return this.getRunGroupDropdown(TestRunProfileBitset.Debug, action, options);
default:
return super.getActionViewItem(action, options);
}
}
/** @inheritdoc */
private getTestConfigGroupActions(group: TestRunProfileBitset) {
const profileActions: IAction[] = [];
let participatingGroups = 0;
let hasConfigurable = false;
const defaults = this.testProfileService.getGroupDefaultProfiles(group);
for (const { profiles, controller } of this.testProfileService.all()) {
let hasAdded = false;
for (const profile of profiles) {
if (profile.group !== group) {
continue;
}
if (!hasAdded) {
hasAdded = true;
participatingGroups++;
profileActions.push(new Action(`${controller.id}.$root`, controller.label.value, undefined, false));
}
hasConfigurable = hasConfigurable || profile.hasConfigurationHandler;
profileActions.push(new Action(
`${controller.id}.${profile.profileId}`,
defaults.includes(profile) ? localize('defaultTestProfile', '{0} (Default)', profile.label) : profile.label,
undefined,
undefined,
() => {
const { include, exclude } = this.getTreeIncludeExclude(undefined, profile);
this.testService.runResolvedTests({
exclude: exclude.map(e => e.item.extId),
group: profile.group,
targets: [{
profileId: profile.profileId,
controllerId: profile.controllerId,
testIds: include.map(i => i.item.extId),
}]
});
},
));
}
}
const menuActions: IAction[] = [];
const contextKeys: [string, unknown][] = [];
// allow extension author to define context for when to show the test menu actions for run or debug menus
if (group === TestRunProfileBitset.Run) {
contextKeys.push(['testing.profile.context.group', 'run']);
}
if (group === TestRunProfileBitset.Debug) {
contextKeys.push(['testing.profile.context.group', 'debug']);
}
if (group === TestRunProfileBitset.Coverage) {
contextKeys.push(['testing.profile.context.group', 'coverage']);
}
const key = this.contextKeyService.createOverlay(contextKeys);
const menu = this.menuService.getMenuActions(MenuId.TestProfilesContext, key);
// fill if there are any actions
createAndFillInContextMenuActions(menu, menuActions);
const postActions: IAction[] = [];
if (profileActions.length > 1) {
postActions.push(new Action(
'selectDefaultTestConfigurations',
localize('selectDefaultConfigs', 'Select Default Profile'),
undefined,
undefined,
() => this.commandService.executeCommand<ITestRunProfile>(TestCommandId.SelectDefaultTestProfiles, group),
));
}
if (hasConfigurable) {
postActions.push(new Action(
'configureTestProfiles',
localize('configureTestProfiles', 'Configure Test Profiles'),
undefined,
undefined,
() => this.commandService.executeCommand<ITestRunProfile>(TestCommandId.ConfigureTestProfilesAction, group),
));
}
// show menu actions if there are any otherwise don't
return menuActions.length > 0
? Separator.join(profileActions, menuActions, postActions)
: Separator.join(profileActions, postActions);
}
/**
* @override
*/
public override saveState() {
this.filter.value?.saveState();
super.saveState();
}
private getRunGroupDropdown(group: TestRunProfileBitset, defaultAction: IAction, options: IActionViewItemOptions) {
const dropdownActions = this.getTestConfigGroupActions(group);
if (dropdownActions.length < 2) {
return super.getActionViewItem(defaultAction, options);
}
const primaryAction = this.instantiationService.createInstance(MenuItemAction, {
id: defaultAction.id,
title: defaultAction.label,
icon: group === TestRunProfileBitset.Run
? icons.testingRunAllIcon
: icons.testingDebugAllIcon,
}, undefined, undefined, undefined, undefined);
const dropdownAction = new Action('selectRunConfig', 'Select Configuration...', 'codicon-chevron-down', true);
return this.instantiationService.createInstance(
DropdownWithPrimaryActionViewItem,
primaryAction, dropdownAction, dropdownActions,
'',
this.contextMenuService,
options
);
}
private createFilterActionBar() {
const bar = new ActionBar(this.treeHeader, {
actionViewItemProvider: (action, options) => this.getActionViewItem(action, options),
triggerKeys: { keyDown: false, keys: [] },
});
bar.push(new Action(TestCommandId.FilterAction));
bar.getContainer().classList.add('testing-filter-action-bar');
return bar;
}
private updateDiscoveryProgress(busy: number) {
if (!busy && this.discoveryProgress) {
this.discoveryProgress.clear();
} else if (busy && !this.discoveryProgress.value) {
this.discoveryProgress.value = this.instantiationService.createInstance(UnmanagedProgress, { location: this.getProgressLocation() });
}
}
/**
* @override
*/
protected override layoutBody(height = this.dimensions.height, width = this.dimensions.width): void {
super.layoutBody(height, width);
this.dimensions.height = height;
this.dimensions.width = width;
this.container.style.height = `${height}px`;
this.viewModel?.layout(height - this.treeHeader.clientHeight, width);
this.filter.value?.layout(width);
}
}
const SUMMARY_RENDER_INTERVAL = 200;
class ResultSummaryView extends Disposable {
private elementsWereAttached = false;
private badgeType: TestingCountBadge;
private lastBadge?: NumberBadge | IconBadge;
private countHover: IManagedHover;
private readonly badgeDisposable = this._register(new MutableDisposable());
private readonly renderLoop = this._register(new RunOnceScheduler(() => this.render(), SUMMARY_RENDER_INTERVAL));
private readonly elements = dom.h('div.result-summary', [
dom.h('div@status'),
dom.h('div@count'),
dom.h('div@count'),
dom.h('span'),
dom.h('duration@duration'),
dom.h('a@rerun'),
]);
constructor(
private readonly container: HTMLElement,
@ITestResultService private readonly resultService: ITestResultService,
@IActivityService private readonly activityService: IActivityService,
@ITestingContinuousRunService private readonly crService: ITestingContinuousRunService,
@IConfigurationService configurationService: IConfigurationService,
@IInstantiationService instantiationService: IInstantiationService,
@IHoverService hoverService: IHoverService,
) {
super();
this.badgeType = configurationService.getValue<TestingCountBadge>(TestingConfigKeys.CountBadge);
this._register(resultService.onResultsChanged(this.render, this));
this._register(configurationService.onDidChangeConfiguration(e => {
if (e.affectsConfiguration(TestingConfigKeys.CountBadge)) {
this.badgeType = configurationService.getValue(TestingConfigKeys.CountBadge);
this.render();
}
}));
this.countHover = this._register(hoverService.setupManagedHover(getDefaultHoverDelegate('mouse'), this.elements.count, ''));
const ab = this._register(new ActionBar(this.elements.rerun, {
actionViewItemProvider: (action, options) => createActionViewItem(instantiationService, action, options),
}));
ab.push(instantiationService.createInstance(MenuItemAction,
{ ...new ReRunLastRun().desc, icon: icons.testingRerunIcon },
{ ...new DebugLastRun().desc, icon: icons.testingDebugIcon },
{},
undefined, undefined
), { icon: true, label: false });
this.render();
}
private render() {
const { results } = this.resultService;
const { count, root, status, duration, rerun } = this.elements;
if (!results.length) {
if (this.elementsWereAttached) {
root.remove();
this.elementsWereAttached = false;
}
this.container.innerText = localize('noResults', 'No test results yet.');
this.badgeDisposable.clear();
return;
}
const live = results.filter(r => !r.completedAt) as LiveTestResult[];
let counts: CountSummary;
if (live.length) {
status.className = ThemeIcon.asClassName(spinningLoading);
counts = collectTestStateCounts(true, live);
this.renderLoop.schedule();
const last = live[live.length - 1];
duration.textContent = formatDuration(Date.now() - last.startedAt);
rerun.style.display = 'none';
} else {
const last = results[0];
const dominantState = mapFindFirst(statesInOrder, s => last.counts[s] > 0 ? s : undefined);
status.className = ThemeIcon.asClassName(icons.testingStatesToIcons.get(dominantState ?? TestResultState.Unset)!);
counts = collectTestStateCounts(false, [last]);
duration.textContent = last instanceof LiveTestResult ? formatDuration(last.completedAt! - last.startedAt) : '';
rerun.style.display = 'block';
}
count.textContent = `${counts.passed}/${counts.totalWillBeRun}`;
this.countHover.update(getTestProgressText(counts));
this.renderActivityBadge(counts);
if (!this.elementsWereAttached) {
dom.clearNode(this.container);
this.container.appendChild(root);
this.elementsWereAttached = true;
}
}
private renderActivityBadge(countSummary: CountSummary) {
if (countSummary && this.badgeType !== TestingCountBadge.Off && countSummary[this.badgeType] !== 0) {
if (this.lastBadge instanceof NumberBadge && this.lastBadge.number === countSummary[this.badgeType]) {
return;
}
this.lastBadge = new NumberBadge(countSummary[this.badgeType], num => this.getLocalizedBadgeString(this.badgeType, num));
} else if (this.crService.isEnabled()) {
if (this.lastBadge instanceof IconBadge && this.lastBadge.icon === icons.testingContinuousIsOn) {
return;
}
this.lastBadge = new IconBadge(icons.testingContinuousIsOn, () => localize('testingContinuousBadge', 'Tests are being watched for changes'));
} else {
if (!this.lastBadge) {
return;
}
this.lastBadge = undefined;
}
this.badgeDisposable.value = this.lastBadge && this.activityService.showViewActivity(Testing.ExplorerViewId, { badge: this.lastBadge });
}
private getLocalizedBadgeString(countBadgeType: TestingCountBadge, count: number): string {
switch (countBadgeType) {
case TestingCountBadge.Passed:
return localize('testingCountBadgePassed', '{0} passed tests', count);
case TestingCountBadge.Skipped:
return localize('testingCountBadgeSkipped', '{0} skipped tests', count);
default:
return localize('testingCountBadgeFailed', '{0} failed tests', count);
}
}
}
const enum WelcomeExperience {
None,
ForWorkspace,
ForDocument,
}
class TestingExplorerViewModel extends Disposable {
public tree: TestingObjectTree<FuzzyScore>;
private filter: TestsFilter;
public readonly projection = this._register(new MutableDisposable<ITestTreeProjection>());
private readonly revealTimeout = new MutableDisposable();
private readonly _viewMode = TestingContextKeys.viewMode.bindTo(this.contextKeyService);
private readonly _viewSorting = TestingContextKeys.viewSorting.bindTo(this.contextKeyService);
private readonly welcomeVisibilityEmitter = new Emitter<WelcomeExperience>();
private readonly actionRunner = new TestExplorerActionRunner(() => this.tree.getSelection().filter(isDefined));
private readonly lastViewState = this._register(new StoredValue<ISerializedTestTreeCollapseState>({
key: 'testing.treeState',
scope: StorageScope.WORKSPACE,
target: StorageTarget.MACHINE,
}, this.storageService));
private readonly noTestForDocumentWidget: NoTestsForDocumentWidget;
/**
* Whether there's a reveal request which has not yet been delivered. This
* can happen if the user asks to reveal before the test tree is loaded.
* We check to see if the reveal request is present on each tree update,
* and do it then if so.
*/
private hasPendingReveal = false;
/**
* Fires when the visibility of the placeholder state changes.
*/
public readonly onChangeWelcomeVisibility = this.welcomeVisibilityEmitter.event;
/**
* Gets whether the welcome should be visible.
*/
public welcomeExperience = WelcomeExperience.None;
public get viewMode() {
return this._viewMode.get() ?? TestExplorerViewMode.Tree;
}
public set viewMode(newMode: TestExplorerViewMode) {
if (newMode === this._viewMode.get()) {
return;
}
this._viewMode.set(newMode);
this.updatePreferredProjection();
this.storageService.store('testing.viewMode', newMode, StorageScope.WORKSPACE, StorageTarget.MACHINE);
}
public get viewSorting() {
return this._viewSorting.get() ?? TestExplorerViewSorting.ByStatus;
}
public set viewSorting(newSorting: TestExplorerViewSorting) {
if (newSorting === this._viewSorting.get()) {
return;
}
this._viewSorting.set(newSorting);
this.tree.resort(null);
this.storageService.store('testing.viewSorting', newSorting, StorageScope.WORKSPACE, StorageTarget.MACHINE);
}
constructor(
listContainer: HTMLElement,
onDidChangeVisibility: Event<boolean>,
@IConfigurationService configurationService: IConfigurationService,
@IEditorService editorService: IEditorService,
@IEditorGroupsService editorGroupsService: IEditorGroupsService,
@IMenuService private readonly menuService: IMenuService,
@IContextMenuService private readonly contextMenuService: IContextMenuService,
@ITestService private readonly testService: ITestService,
@ITestExplorerFilterState private readonly filterState: TestExplorerFilterState,
@IInstantiationService private readonly instantiationService: IInstantiationService,
@IStorageService private readonly storageService: IStorageService,
@IContextKeyService private readonly contextKeyService: IContextKeyService,
@ITestResultService private readonly testResults: ITestResultService,
@ITestingPeekOpener private readonly peekOpener: ITestingPeekOpener,
@ITestProfileService private readonly testProfileService: ITestProfileService,
@ITestingContinuousRunService private readonly crService: ITestingContinuousRunService,
@ICommandService commandService: ICommandService,
) {
super();
this.hasPendingReveal = !!filterState.reveal.value;
this.noTestForDocumentWidget = this._register(instantiationService.createInstance(NoTestsForDocumentWidget, listContainer));
this._viewMode.set(this.storageService.get('testing.viewMode', StorageScope.WORKSPACE, TestExplorerViewMode.Tree) as TestExplorerViewMode);
this._viewSorting.set(this.storageService.get('testing.viewSorting', StorageScope.WORKSPACE, TestExplorerViewSorting.ByLocation) as TestExplorerViewSorting);
this.reevaluateWelcomeState();
this.filter = this.instantiationService.createInstance(TestsFilter, testService.collection);
this.tree = instantiationService.createInstance(
TestingObjectTree,
'Test Explorer List',
listContainer,
new ListDelegate(),
[
instantiationService.createInstance(TestItemRenderer, this.actionRunner),
instantiationService.createInstance(ErrorRenderer),
],
{
identityProvider: instantiationService.createInstance(IdentityProvider),
hideTwistiesOfChildlessElements: false,
sorter: instantiationService.createInstance(TreeSorter, this),
keyboardNavigationLabelProvider: instantiationService.createInstance(TreeKeyboardNavigationLabelProvider),
accessibilityProvider: instantiationService.createInstance(ListAccessibilityProvider),
filter: this.filter,
findWidgetEnabled: false,
openOnSingleClick: false,
}) as TestingObjectTree<FuzzyScore>;
// saves the collapse state so that if items are removed or refreshed, they
// retain the same state (#170169)
const collapseStateSaver = this._register(new RunOnceScheduler(() => {
// reuse the last view state to avoid making a bunch of object garbage:
const state = this.tree.getOptimizedViewState(this.lastViewState.get({}));
const projection = this.projection.value;
if (projection) {
projection.lastState = state;
}
}, 3000));
this._register(this.tree.onDidChangeCollapseState(evt => {
if (evt.node.element instanceof TestItemTreeElement) {
if (!evt.node.collapsed) {
this.projection.value?.expandElement(evt.node.element, evt.deep ? Infinity : 0);
}
collapseStateSaver.schedule();
}
}));
this._register(this.crService.onDidChange(testId => {
if (testId) {
// a continuous run test will sort to the top:
const elem = this.projection.value?.getElementByTestId(testId);
this.tree.resort(elem?.parent && this.tree.hasElement(elem.parent) ? elem.parent : null, false);
}
}));
this._register(onDidChangeVisibility(visible => {
if (visible) {
this.ensureProjection();
}
}));
this._register(this.tree.onContextMenu(e => this.onContextMenu(e)));
this._register(Event.any(
filterState.text.onDidChange,
filterState.fuzzy.onDidChange,
testService.excluded.onTestExclusionsChanged,
)(this.tree.refilter, this.tree));
this._register(this.tree.onDidOpen(e => {
if (e.element instanceof TestItemTreeElement && !e.element.children.size && e.element.test.item.uri) {
commandService.executeCommand('vscode.revealTest', e.element.test.item.extId);
}
}));
this._register(this.tree);
this._register(this.onChangeWelcomeVisibility(e => {
this.noTestForDocumentWidget.setVisible(e === WelcomeExperience.ForDocument);
}));
this._register(dom.addStandardDisposableListener(this.tree.getHTMLElement(), 'keydown', evt => {
if (evt.equals(KeyCode.Enter)) {
this.handleExecuteKeypress(evt);
} else if (DefaultKeyboardNavigationDelegate.mightProducePrintableCharacter(evt)) {
filterState.text.value = evt.browserEvent.key;
filterState.focusInput();
}
}));
this._register(filterState.reveal.onDidChange(id => this.revealById(id, undefined, false)));
this._register(onDidChangeVisibility(visible => {
if (visible) {
filterState.focusInput();
}
}));
this._register(this.tree.onDidChangeSelection(evt => {
if (dom.isMouseEvent(evt.browserEvent) && (evt.browserEvent.altKey || evt.browserEvent.shiftKey)) {
return; // don't focus when alt-clicking to multi select
}
const selected = evt.elements[0];
if (selected && evt.browserEvent && selected instanceof TestItemTreeElement
&& selected.children.size === 0 && selected.test.expand === TestItemExpandState.NotExpandable) {
this.tryPeekError(selected);
}
}));
let followRunningTests = getTestingConfiguration(configurationService, TestingConfigKeys.FollowRunningTest);
this._register(configurationService.onDidChangeConfiguration(e => {
if (e.affectsConfiguration(TestingConfigKeys.FollowRunningTest)) {
followRunningTests = getTestingConfiguration(configurationService, TestingConfigKeys.FollowRunningTest);
}
}));
let alwaysRevealTestAfterStateChange = getTestingConfiguration(configurationService, TestingConfigKeys.AlwaysRevealTestOnStateChange);
this._register(configurationService.onDidChangeConfiguration(e => {
if (e.affectsConfiguration(TestingConfigKeys.AlwaysRevealTestOnStateChange)) {
alwaysRevealTestAfterStateChange = getTestingConfiguration(configurationService, TestingConfigKeys.AlwaysRevealTestOnStateChange);
}
}));
this._register(testResults.onTestChanged(evt => {
if (!followRunningTests) {
return;
}
if (evt.reason !== TestResultItemChangeReason.OwnStateChange) {
return;
}
if (this.tree.selectionSize > 1) {
return; // don't change a multi-selection #180950
}
// follow running tests, or tests whose state changed. Tests that
// complete very fast may not enter the running state at all.
if (evt.item.ownComputedState !== TestResultState.Running && !(evt.previousState === TestResultState.Queued && isStateWithResult(evt.item.ownComputedState))) {
return;
}
this.revealById(evt.item.item.extId, alwaysRevealTestAfterStateChange, false);
}));
this._register(testResults.onResultsChanged(() => {
this.tree.resort(null);
}));
this._register(this.testProfileService.onDidChange(() => {
this.tree.rerender();
}));
const allOpenEditorInputs = observableFromEvent(this,
editorService.onDidEditorsChange,
() => new Set(editorGroupsService.groups.flatMap(g => g.editors).map(e => e.resource).filter(isDefined)),
);
const activeResource = observableFromEvent(this, editorService.onDidActiveEditorChange, () => {
if (editorService.activeEditor instanceof DiffEditorInput) {
return editorService.activeEditor.primary.resource;
} else {
return editorService.activeEditor?.resource;
}
});
const filterText = observableFromEvent(this.filterState.text.onDidChange, () => this.filterState.text);
this._register(autorun(reader => {
filterText.read(reader);
if (this.filterState.isFilteringFor(TestFilterTerm.OpenedFiles)) {
this.filter.filterToDocumentUri([...allOpenEditorInputs.read(reader)]);
} else {
this.filter.filterToDocumentUri([activeResource.read(reader)].filter(isDefined));
}
if (this.filterState.isFilteringFor(TestFilterTerm.CurrentDoc) || this.filterState.isFilteringFor(TestFilterTerm.OpenedFiles)) {
this.tree.refilter();
}
}));
this._register(this.storageService.onWillSaveState(({ reason, }) => {
if (reason === WillSaveStateReason.SHUTDOWN) {
this.lastViewState.store(this.tree.getOptimizedViewState());
}
}));
}
/**
* Re-layout the tree.
*/
public layout(height?: number, width?: number): void {
this.tree.layout(height, width);
}
/**
* Tries to reveal by extension ID. Queues the request if the extension
* ID is not currently available.
*/
private revealById(id: string | undefined, expand = true, focus = true) {
if (!id) {
this.hasPendingReveal = false;
return;
}
const projection = this.ensureProjection();
// If the item itself is visible in the tree, show it. Otherwise, expand
// its closest parent.
let expandToLevel = 0;
const idPath = [...TestId.fromString(id).idsFromRoot()];
for (let i = idPath.length - 1; i >= expandToLevel; i--) {
const element = projection.getElementByTestId(idPath[i].toString());
// Skip all elements that aren't in the tree.
if (!element || !this.tree.hasElement(element)) {
continue;
}
// If this 'if' is true, we're at the closest-visible parent to the node
// we want to expand. Expand that, and then start the loop again because
// we might already have children for it.
if (i < idPath.length - 1) {
if (expand) {
this.tree.expand(element);
expandToLevel = i + 1; // avoid an infinite loop if the test does not exist
i = idPath.length - 1; // restart the loop since new children may now be visible
continue;
}
}
// Otherwise, we've arrived!
// If the node or any of its children are excluded, flip on the 'show
// excluded tests' checkbox automatically. If we didn't expand, then set
// target focus target to the first collapsed element.
let focusTarget = element;
for (let n: TestItemTreeElement | null = element; n instanceof TestItemTreeElement; n = n.parent) {
if (n.test && this.testService.excluded.contains(n.test)) {
this.filterState.toggleFilteringFor(TestFilterTerm.Hidden, true);
break;
}
if (!expand && (this.tree.hasElement(n) && this.tree.isCollapsed(n))) {
focusTarget = n;
}
}
this.filterState.reveal.value = undefined;
this.hasPendingReveal = false;
if (focus) {
this.tree.domFocus();
}
if (this.tree.getRelativeTop(focusTarget) === null) {
this.tree.reveal(focusTarget, 0.5);
}
this.revealTimeout.value = disposableTimeout(() => {
this.tree.setFocus([focusTarget]);
this.tree.setSelection([focusTarget]);
}, 1);
return;
}
// If here, we've expanded all parents we can. Waiting on data to come
// in to possibly show the revealed test.
this.hasPendingReveal = true;
}
/**
* Collapse all items in the tree.
*/
public async collapseAll() {
this.tree.collapseAll();
}
/**
* Tries to peek the first test error, if the item is in a failed state.
*/
private tryPeekError(item: TestItemTreeElement) {
const lookup = item.test && this.testResults.getStateById(item.test.item.extId);
return lookup && lookup[1].tasks.some(s => isFailedState(s.state))
? this.peekOpener.tryPeekFirstError(lookup[0], lookup[1], { preserveFocus: true })
: false;
}
private onContextMenu(evt: ITreeContextMenuEvent<TestExplorerTreeElement | null>) {
const element = evt.element;
if (!(element instanceof TestItemTreeElement)) {
return;
}
const { actions } = getActionableElementActions(this.contextKeyService, this.menuService, this.testService, this.crService, this.testProfileService, element);
this.contextMenuService.showContextMenu({
getAnchor: () => evt.anchor,
getActions: () => actions.secondary,
getActionsContext: () => element,
actionRunner: this.actionRunner,
});
}
private handleExecuteKeypress(evt: IKeyboardEvent) {
const focused = this.tree.getFocus();
const selected = this.tree.getSelection();
let targeted: (TestExplorerTreeElement | null)[];
if (focused.length === 1 && selected.includes(focused[0])) {
evt.browserEvent?.preventDefault();
targeted = selected;
} else {
targeted = focused;
}