@theia/plugin-ext 1.71.0-next.6 → 1.71.0-next.64

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (86) hide show
  1. package/lib/common/plugin-api-rpc.d.ts +5 -0
  2. package/lib/common/plugin-api-rpc.d.ts.map +1 -1
  3. package/lib/common/plugin-api-rpc.js +1 -0
  4. package/lib/common/plugin-api-rpc.js.map +1 -1
  5. package/lib/hosted/browser/hosted-plugin.d.ts.map +1 -1
  6. package/lib/hosted/browser/hosted-plugin.js +13 -6
  7. package/lib/hosted/browser/hosted-plugin.js.map +1 -1
  8. package/lib/main/browser/main-context.d.ts.map +1 -1
  9. package/lib/main/browser/main-context.js +2 -6
  10. package/lib/main/browser/main-context.js.map +1 -1
  11. package/lib/main/browser/main-file-system-event-service.d.ts +10 -2
  12. package/lib/main/browser/main-file-system-event-service.d.ts.map +1 -1
  13. package/lib/main/browser/main-file-system-event-service.js +19 -2
  14. package/lib/main/browser/main-file-system-event-service.js.map +1 -1
  15. package/lib/main/browser/menus/plugin-menu-command-adapter.js +1 -1
  16. package/lib/main/browser/menus/plugin-menu-command-adapter.js.map +1 -1
  17. package/lib/main/browser/menus/vscode-theia-menu-mappings.d.ts +1 -1
  18. package/lib/main/browser/menus/vscode-theia-menu-mappings.d.ts.map +1 -1
  19. package/lib/main/browser/menus/vscode-theia-menu-mappings.js +2 -2
  20. package/lib/main/browser/menus/vscode-theia-menu-mappings.js.map +1 -1
  21. package/lib/main/browser/scm-main.d.ts.map +1 -1
  22. package/lib/main/browser/scm-main.js +24 -1
  23. package/lib/main/browser/scm-main.js.map +1 -1
  24. package/lib/main/browser/scm-main.spec.d.ts +2 -0
  25. package/lib/main/browser/scm-main.spec.d.ts.map +1 -0
  26. package/lib/main/browser/scm-main.spec.js +87 -0
  27. package/lib/main/browser/scm-main.spec.js.map +1 -0
  28. package/lib/main/browser/test-main.d.ts +3 -2
  29. package/lib/main/browser/test-main.d.ts.map +1 -1
  30. package/lib/main/browser/test-main.js +12 -1
  31. package/lib/main/browser/test-main.js.map +1 -1
  32. package/lib/plugin/file-system-event-service-ext-impl.d.ts +11 -5
  33. package/lib/plugin/file-system-event-service-ext-impl.d.ts.map +1 -1
  34. package/lib/plugin/file-system-event-service-ext-impl.js +28 -9
  35. package/lib/plugin/file-system-event-service-ext-impl.js.map +1 -1
  36. package/lib/plugin/plugin-context.js +4 -4
  37. package/lib/plugin/plugin-context.js.map +1 -1
  38. package/lib/plugin/scm.d.ts +1 -1
  39. package/lib/plugin/scm.d.ts.map +1 -1
  40. package/lib/plugin/scm.js +23 -5
  41. package/lib/plugin/scm.js.map +1 -1
  42. package/lib/plugin/terminal-ext.d.ts +13 -3
  43. package/lib/plugin/terminal-ext.d.ts.map +1 -1
  44. package/lib/plugin/terminal-ext.js +51 -10
  45. package/lib/plugin/terminal-ext.js.map +1 -1
  46. package/lib/plugin/terminal-ext.spec.d.ts +2 -0
  47. package/lib/plugin/terminal-ext.spec.d.ts.map +1 -0
  48. package/lib/plugin/terminal-ext.spec.js +285 -0
  49. package/lib/plugin/terminal-ext.spec.js.map +1 -0
  50. package/lib/plugin/test-item.d.ts.map +1 -1
  51. package/lib/plugin/test-item.js +8 -3
  52. package/lib/plugin/test-item.js.map +1 -1
  53. package/lib/plugin/tests.d.ts.map +1 -1
  54. package/lib/plugin/tests.js +15 -3
  55. package/lib/plugin/tests.js.map +1 -1
  56. package/lib/plugin/type-converters.d.ts +2 -2
  57. package/lib/plugin/type-converters.d.ts.map +1 -1
  58. package/lib/plugin/type-converters.js +3 -9
  59. package/lib/plugin/type-converters.js.map +1 -1
  60. package/lib/plugin/types-impl.d.ts +1 -1
  61. package/lib/plugin/types-impl.d.ts.map +1 -1
  62. package/lib/plugin/types-impl.js +1 -1
  63. package/lib/plugin/types-impl.js.map +1 -1
  64. package/lib/plugin/workspace.d.ts.map +1 -1
  65. package/lib/plugin/workspace.js +17 -3
  66. package/lib/plugin/workspace.js.map +1 -1
  67. package/package.json +38 -38
  68. package/src/common/plugin-api-rpc.ts +6 -0
  69. package/src/hosted/browser/hosted-plugin.ts +13 -6
  70. package/src/main/browser/main-context.ts +3 -7
  71. package/src/main/browser/main-file-system-event-service.ts +26 -6
  72. package/src/main/browser/menus/plugin-menu-command-adapter.ts +1 -1
  73. package/src/main/browser/menus/vscode-theia-menu-mappings.ts +3 -3
  74. package/src/main/browser/scm-main.spec.ts +105 -0
  75. package/src/main/browser/scm-main.ts +25 -1
  76. package/src/main/browser/test-main.ts +13 -3
  77. package/src/plugin/file-system-event-service-ext-impl.ts +40 -14
  78. package/src/plugin/plugin-context.ts +7 -7
  79. package/src/plugin/scm.ts +26 -4
  80. package/src/plugin/terminal-ext.spec.ts +350 -0
  81. package/src/plugin/terminal-ext.ts +58 -12
  82. package/src/plugin/test-item.ts +8 -3
  83. package/src/plugin/tests.ts +14 -3
  84. package/src/plugin/type-converters.ts +7 -13
  85. package/src/plugin/types-impl.ts +2 -2
  86. package/src/plugin/workspace.ts +17 -3
package/src/plugin/scm.ts CHANGED
@@ -543,6 +543,8 @@ class SourceControlImpl implements theia.SourceControl {
543
543
  private static handlePool: number = 0;
544
544
  private groups: Map<GroupHandle, ScmResourceGroupImpl> = new Map<GroupHandle, ScmResourceGroupImpl>();
545
545
 
546
+ readonly apiObject: theia.SourceControl;
547
+
546
548
  get id(): string {
547
549
  return this._id;
548
550
  }
@@ -702,11 +704,13 @@ class SourceControlImpl implements theia.SourceControl {
702
704
  private _label: string,
703
705
  private _rootUri?: theia.Uri,
704
706
  _iconPath?: theia.IconPath,
707
+ _isHidden?: boolean,
705
708
  _parent?: SourceControlImpl
706
709
  ) {
707
710
  this.inputBox = new ScmInputBoxImpl(plugin, this.proxy, this.handle);
708
711
  this.proxy.$registerSourceControl(this.handle, _id, _label, _rootUri, _parent?.handle);
709
712
  this.onDidDisposeParent = _parent ? _parent.onDidDispose : Event.None;
713
+ this.apiObject = createAPIObject(this);
710
714
  }
711
715
 
712
716
  private createdResourceGroups = new Map<ScmResourceGroupImpl, Disposable>();
@@ -824,7 +828,7 @@ export class ScmExtImpl implements ScmExt {
824
828
  return undefined;
825
829
  }
826
830
  if (typeof arg.resourceGroupHandle !== 'number') {
827
- return sourceControl;
831
+ return sourceControl.apiObject;
828
832
  }
829
833
  const resourceGroup = sourceControl.getResourceGroup(arg.resourceGroupHandle);
830
834
  if (typeof arg.resourceStateHandle !== 'number') {
@@ -836,17 +840,35 @@ export class ScmExtImpl implements ScmExt {
836
840
  }
837
841
 
838
842
  createSourceControl(extension: Plugin, id: string, label: string, rootUri: theia.Uri | undefined,
839
- iconPath?: theia.IconPath, parent?: theia.SourceControl): theia.SourceControl {
843
+ iconPath?: theia.IconPath, isHidden?: boolean, parent?: theia.SourceControl): theia.SourceControl {
840
844
  const handle = ScmExtImpl.handlePool++;
841
845
  const parentImpl = parent ? this.findSourceControlImpl(parent) : undefined;
842
- const sourceControl = new SourceControlImpl(extension, this.proxy, this.commands, id, label, rootUri, iconPath, parentImpl);
846
+ const sourceControl = new SourceControlImpl(extension, this.proxy, this.commands, id, label, rootUri, iconPath, isHidden, parentImpl);
843
847
  this.sourceControls.set(handle, sourceControl);
844
848
 
845
849
  const sourceControls = this.sourceControlsByExtension.get(extension.model.id) || [];
846
850
  sourceControls.push(sourceControl);
847
851
  this.sourceControlsByExtension.set(extension.model.id, sourceControls);
848
852
 
849
- return sourceControl;
853
+ // Clean up registries when the source control is disposed. Without this,
854
+ // disposed entries leak and findSourceControlImpl() may return a stale
855
+ // (disposed) instance as a parent for a later-created source control
856
+ // with the same id + rootUri (e.g. a worktree recreated after removal).
857
+ sourceControl.onDidDispose(() => {
858
+ this.sourceControls.delete(handle);
859
+ const list = this.sourceControlsByExtension.get(extension.model.id);
860
+ if (list) {
861
+ const index = list.indexOf(sourceControl);
862
+ if (index >= 0) {
863
+ list.splice(index, 1);
864
+ }
865
+ if (list.length === 0) {
866
+ this.sourceControlsByExtension.delete(extension.model.id);
867
+ }
868
+ }
869
+ });
870
+
871
+ return sourceControl.apiObject;
850
872
  }
851
873
 
852
874
  private findSourceControlImpl(apiObject: theia.SourceControl): SourceControlImpl | undefined {
@@ -0,0 +1,350 @@
1
+ // *****************************************************************************
2
+ // Copyright (C) 2026 EclipseSource and others.
3
+ //
4
+ // This program and the accompanying materials are made available under the
5
+ // terms of the Eclipse Public License v. 2.0 which is available at
6
+ // http://www.eclipse.org/legal/epl-2.0.
7
+ //
8
+ // This Source Code may also be made available under the following Secondary
9
+ // Licenses when the conditions for such availability set forth in the Eclipse
10
+ // Public License v. 2.0 are satisfied: GNU General Public License, version 2
11
+ // with the GNU Classpath Exception which is available at
12
+ // https://www.gnu.org/software/classpath/license.html.
13
+ //
14
+ // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
15
+ // *****************************************************************************
16
+
17
+ import * as chai from 'chai';
18
+ import * as theia from '@theia/plugin';
19
+ import { TerminalServiceMain, Plugin, TerminalOptions } from '../common/plugin-api-rpc';
20
+ import { RPCProtocol, ProxyIdentifier } from '../common/rpc-protocol';
21
+ import { TerminalServiceExtImpl, TerminalExtImpl } from './terminal-ext';
22
+ import { TerminalExitReason } from './types-impl';
23
+
24
+ const expect = chai.expect;
25
+
26
+ /**
27
+ * Creates a mock RPCProtocol that returns the given proxy for TERMINAL_MAIN.
28
+ */
29
+ function createMockRpc(proxy: Partial<TerminalServiceMain>): RPCProtocol {
30
+ return {
31
+ getProxy<T>(_proxyId: ProxyIdentifier<T>): T {
32
+ return proxy as unknown as T;
33
+ },
34
+ set<T, R extends T>(_identifier: ProxyIdentifier<T>, instance: R): R {
35
+ return instance;
36
+ },
37
+ dispose(): void { }
38
+ } as RPCProtocol;
39
+ }
40
+
41
+ /**
42
+ * Creates a minimal mock Plugin object.
43
+ */
44
+ function createMockPlugin(): Plugin {
45
+ return {
46
+ pluginPath: '/test',
47
+ pluginFolder: '/test',
48
+ pluginUri: 'file:///test',
49
+ model: { id: 'test.plugin' } as Plugin['model'],
50
+ rawModel: {} as Plugin['rawModel'],
51
+ lifecycle: {} as Plugin['lifecycle'],
52
+ isUnderDevelopment: false
53
+ };
54
+ }
55
+
56
+ /**
57
+ * Creates a stub TerminalServiceMain that records calls.
58
+ */
59
+ function createMockProxy(): TerminalServiceMain & { createdTerminals: { id: string; options: TerminalOptions }[] } {
60
+ const createdTerminals: { id: string; options: TerminalOptions }[] = [];
61
+ return {
62
+ createdTerminals,
63
+ $createTerminal(id: string, options: TerminalOptions): Promise<string> {
64
+ createdTerminals.push({ id, options });
65
+ return Promise.resolve(id);
66
+ },
67
+ $sendText(): void { },
68
+ $write(): void { },
69
+ $resize(): void { },
70
+ $show(): void { },
71
+ $hide(): void { },
72
+ $dispose(): void { },
73
+ $setName(): void { },
74
+ $writeByTerminalId(): void { },
75
+ $resizeByTerminalId(): void { },
76
+ $disposeByTerminalId(): void { },
77
+ $setNameByTerminalId(): void { },
78
+ $setEnvironmentVariableCollection(): void { },
79
+ $registerTerminalLinkProvider(): void { },
80
+ $unregisterTerminalLinkProvider(): void { },
81
+ $registerTerminalObserver(): void { },
82
+ $unregisterTerminalObserver(): void { },
83
+ } as unknown as TerminalServiceMain & { createdTerminals: { id: string; options: TerminalOptions }[] };
84
+ }
85
+
86
+ describe('TerminalServiceExtImpl', () => {
87
+ let proxy: ReturnType<typeof createMockProxy>;
88
+ let service: TerminalServiceExtImpl;
89
+ let plugin: Plugin;
90
+
91
+ beforeEach(() => {
92
+ proxy = createMockProxy();
93
+ const rpc = createMockRpc(proxy);
94
+ service = new TerminalServiceExtImpl(rpc);
95
+ plugin = createMockPlugin();
96
+ });
97
+
98
+ describe('terminals list', () => {
99
+ it('returns empty array initially', () => {
100
+ expect(service.terminals).to.deep.equal([]);
101
+ });
102
+
103
+ it('includes terminals after creation via $terminalCreated', () => {
104
+ service.$terminalCreated('t1', 'Terminal 1');
105
+ expect(service.terminals).to.have.length(1);
106
+ });
107
+
108
+ it('removes terminals after $terminalClosed', () => {
109
+ service.$terminalCreated('t1', 'Terminal 1');
110
+ service.$terminalClosed('t1', { code: 0, reason: TerminalExitReason.Process });
111
+ expect(service.terminals).to.have.length(0);
112
+ });
113
+ });
114
+
115
+ describe('API object identity', () => {
116
+ it('returns the raw TerminalExtImpl when no wrapper is provided', () => {
117
+ const terminal = service.createTerminal(plugin, 'Test Terminal');
118
+ expect(terminal).to.be.instanceOf(TerminalExtImpl);
119
+ });
120
+
121
+ it('returns the wrapped API object when a wrapper is provided', () => {
122
+ const wrapper = (t: TerminalExtImpl): theia.Terminal => ({ ...t, name: 'wrapped' } as unknown as theia.Terminal);
123
+ service.createTerminal(plugin, 'Test Terminal', undefined, undefined, wrapper);
124
+ const id = proxy.createdTerminals[0].id;
125
+ service.$terminalCreated(id, 'Test Terminal');
126
+ const terminal = service.terminals[0];
127
+ expect(terminal.name).to.equal('wrapped');
128
+ expect(terminal).to.not.be.instanceOf(TerminalExtImpl);
129
+ });
130
+
131
+ it('fires onDidOpenTerminal with the API object, not the raw terminal', () => {
132
+ const apiObject = { marker: 'api-object' } as unknown as theia.Terminal;
133
+ const wrapper = (_t: TerminalExtImpl): theia.Terminal => apiObject;
134
+ service.createTerminal(plugin, 'Test Terminal', undefined, undefined, wrapper);
135
+
136
+ const opened: theia.Terminal[] = [];
137
+ service.onDidOpenTerminal(t => opened.push(t));
138
+
139
+ // Get the ID from the proxy call
140
+ const id = proxy.createdTerminals[0].id;
141
+ service.$terminalCreated(id, 'Test Terminal');
142
+
143
+ expect(opened).to.have.length(1);
144
+ expect(opened[0]).to.equal(apiObject);
145
+ });
146
+
147
+ it('fires onDidCloseTerminal with the API object', () => {
148
+ const apiObject = { marker: 'api-object' } as unknown as theia.Terminal;
149
+ const wrapper = (_t: TerminalExtImpl): theia.Terminal => apiObject;
150
+ service.createTerminal(plugin, 'Test Terminal', undefined, undefined, wrapper);
151
+
152
+ const closed: theia.Terminal[] = [];
153
+ service.onDidCloseTerminal(t => closed.push(t));
154
+
155
+ const id = proxy.createdTerminals[0].id;
156
+ service.$terminalCreated(id, 'Test Terminal');
157
+ service.$terminalClosed(id, { code: 0, reason: TerminalExitReason.Process });
158
+
159
+ expect(closed).to.have.length(1);
160
+ expect(closed[0]).to.equal(apiObject);
161
+ });
162
+
163
+ it('fires onDidChangeTerminalState with the API object on interaction', () => {
164
+ const apiObject = { marker: 'api-object' } as unknown as theia.Terminal;
165
+ const wrapper = (_t: TerminalExtImpl): theia.Terminal => apiObject;
166
+ service.createTerminal(plugin, 'Test Terminal', undefined, undefined, wrapper);
167
+
168
+ const stateChanged: theia.Terminal[] = [];
169
+ service.onDidChangeTerminalState(t => stateChanged.push(t));
170
+
171
+ const id = proxy.createdTerminals[0].id;
172
+ service.$terminalCreated(id, 'Test Terminal');
173
+ service.$terminalOnInteraction(id);
174
+
175
+ expect(stateChanged).to.have.length(1);
176
+ expect(stateChanged[0]).to.equal(apiObject);
177
+ });
178
+
179
+ it('fires onDidChangeTerminalState with the API object on shell type change', () => {
180
+ const apiObject = { marker: 'api-object' } as unknown as theia.Terminal;
181
+ const wrapper = (_t: TerminalExtImpl): theia.Terminal => apiObject;
182
+ service.createTerminal(plugin, 'Test Terminal', undefined, undefined, wrapper);
183
+
184
+ const stateChanged: theia.Terminal[] = [];
185
+ service.onDidChangeTerminalState(t => stateChanged.push(t));
186
+
187
+ const id = proxy.createdTerminals[0].id;
188
+ service.$terminalCreated(id, 'Test Terminal');
189
+ service.$terminalShellTypeChanged(id, '/bin/zsh');
190
+
191
+ expect(stateChanged).to.have.length(1);
192
+ expect(stateChanged[0]).to.equal(apiObject);
193
+ });
194
+
195
+ it('returns the API object from the terminals list', () => {
196
+ const apiObject = { marker: 'api-object' } as unknown as theia.Terminal;
197
+ const wrapper = (_t: TerminalExtImpl): theia.Terminal => apiObject;
198
+ service.createTerminal(plugin, 'Test Terminal', undefined, undefined, wrapper);
199
+
200
+ const id = proxy.createdTerminals[0].id;
201
+ service.$terminalCreated(id, 'Test Terminal');
202
+
203
+ const terminals = service.terminals;
204
+ expect(terminals).to.have.length(1);
205
+ expect(terminals[0]).to.equal(apiObject);
206
+ });
207
+
208
+ it('returns the API object as activeTerminal', () => {
209
+ const apiObject = { marker: 'api-object' } as unknown as theia.Terminal;
210
+ const wrapper = (_t: TerminalExtImpl): theia.Terminal => apiObject;
211
+ service.createTerminal(plugin, 'Test Terminal', undefined, undefined, wrapper);
212
+
213
+ const id = proxy.createdTerminals[0].id;
214
+ service.$terminalCreated(id, 'Test Terminal');
215
+ service.$currentTerminalChanged(id);
216
+
217
+ expect(service.activeTerminal).to.equal(apiObject);
218
+ });
219
+
220
+ it('cleans up API object on terminal close', () => {
221
+ const apiObject = { marker: 'api-object' } as unknown as theia.Terminal;
222
+ const wrapper = (_t: TerminalExtImpl): theia.Terminal => apiObject;
223
+ service.createTerminal(plugin, 'Test Terminal', undefined, undefined, wrapper);
224
+
225
+ const id = proxy.createdTerminals[0].id;
226
+ service.$terminalCreated(id, 'Test Terminal');
227
+ service.$terminalClosed(id, { code: 0, reason: TerminalExitReason.Process });
228
+
229
+ expect(service.terminals).to.have.length(0);
230
+ });
231
+ });
232
+
233
+ describe('parentTerminal resolution', () => {
234
+ it('resolves parentTerminal from API proxy objects', () => {
235
+ const apiObject = { marker: 'parent-api' } as unknown as theia.Terminal;
236
+ const wrapper = (_t: TerminalExtImpl): theia.Terminal => apiObject;
237
+ service.createTerminal(plugin, 'Parent', undefined, undefined, wrapper);
238
+
239
+ const parentId = proxy.createdTerminals[0].id;
240
+ service.$terminalCreated(parentId, 'Parent');
241
+
242
+ // Create a child with parentTerminal set to the API object
243
+ service.createTerminal(plugin, {
244
+ name: 'Child',
245
+ location: { parentTerminal: apiObject }
246
+ } as theia.TerminalOptions);
247
+
248
+ expect(proxy.createdTerminals).to.have.length(2);
249
+ // The second createTerminal call should have passed the parent ID
250
+ // We verify it was called on the proxy (the parentId arg is the 3rd parameter)
251
+ });
252
+
253
+ it('resolves parentTerminal from raw terminal objects', () => {
254
+ const rawTerminal = service.createTerminal(plugin, 'Parent');
255
+
256
+ const parentId = proxy.createdTerminals[0].id;
257
+ service.$terminalCreated(parentId, 'Parent');
258
+
259
+ // Create a child with parentTerminal set to the raw terminal
260
+ service.createTerminal(plugin, {
261
+ name: 'Child',
262
+ location: { parentTerminal: rawTerminal }
263
+ } as theia.TerminalOptions);
264
+
265
+ expect(proxy.createdTerminals).to.have.length(2);
266
+ });
267
+ });
268
+
269
+ describe('events for terminals without wrapper', () => {
270
+ it('fires onDidOpenTerminal with the raw terminal when no wrapper is used', () => {
271
+ const opened: theia.Terminal[] = [];
272
+ service.onDidOpenTerminal(t => opened.push(t));
273
+
274
+ service.$terminalCreated('ext-t1', 'External Terminal');
275
+
276
+ expect(opened).to.have.length(1);
277
+ expect(opened[0]).to.be.instanceOf(TerminalExtImpl);
278
+ expect(opened[0].name).to.equal('External Terminal');
279
+ });
280
+
281
+ it('fires onDidCloseTerminal with the raw terminal when no wrapper is used', () => {
282
+ const closed: theia.Terminal[] = [];
283
+ service.onDidCloseTerminal(t => closed.push(t));
284
+
285
+ service.$terminalCreated('ext-t1', 'External Terminal');
286
+ service.$terminalClosed('ext-t1', { code: 0, reason: TerminalExitReason.Process });
287
+
288
+ expect(closed).to.have.length(1);
289
+ expect(closed[0]).to.be.instanceOf(TerminalExtImpl);
290
+ });
291
+ });
292
+
293
+ describe('shell change', () => {
294
+ it('fires onDidChangeShell when shell changes', async () => {
295
+ const shells: string[] = [];
296
+ service.onDidChangeShell(s => shells.push(s));
297
+
298
+ await service.$setShell('/bin/zsh');
299
+
300
+ expect(shells).to.deep.equal(['/bin/zsh']);
301
+ expect(service.defaultShell).to.equal('/bin/zsh');
302
+ });
303
+
304
+ it('does not fire onDidChangeShell when shell is the same', async () => {
305
+ const shells: string[] = [];
306
+ await service.$setShell('/bin/zsh');
307
+
308
+ service.onDidChangeShell(s => shells.push(s));
309
+ await service.$setShell('/bin/zsh');
310
+
311
+ expect(shells).to.deep.equal([]);
312
+ });
313
+ });
314
+
315
+ describe('$terminalNameChanged', () => {
316
+ it('updates the terminal name', () => {
317
+ service.$terminalCreated('t1', 'Old Name');
318
+ service.$terminalNameChanged('t1', 'New Name');
319
+
320
+ expect(service.terminals[0].name).to.equal('New Name');
321
+ });
322
+ });
323
+
324
+ describe('activeTerminal', () => {
325
+ it('is undefined initially', () => {
326
+ expect(service.activeTerminal).to.equal(undefined);
327
+ });
328
+
329
+ it('reflects the current active terminal', () => {
330
+ service.$terminalCreated('t1', 'Terminal 1');
331
+ service.$currentTerminalChanged('t1');
332
+
333
+ expect(service.activeTerminal).to.not.equal(undefined);
334
+ expect(service.activeTerminal!.name).to.equal('Terminal 1');
335
+ });
336
+
337
+ it('fires onDidChangeActiveTerminal', () => {
338
+ const changes: (theia.Terminal | undefined)[] = [];
339
+ service.onDidChangeActiveTerminal(t => changes.push(t));
340
+
341
+ service.$terminalCreated('t1', 'Terminal 1');
342
+ service.$currentTerminalChanged('t1');
343
+ service.$currentTerminalChanged(undefined);
344
+
345
+ expect(changes).to.have.length(2);
346
+ expect(changes[0]!.name).to.equal('Terminal 1');
347
+ expect(changes[1]).to.equal(undefined);
348
+ });
349
+ });
350
+ });
@@ -38,6 +38,13 @@ export class TerminalServiceExtImpl implements TerminalServiceExt {
38
38
 
39
39
  private readonly _terminals = new Map<string, TerminalExtImpl>();
40
40
 
41
+ /**
42
+ * Stores the API objects (Proxies) returned to plugins for each terminal.
43
+ * This ensures that events fire with the same object instance that plugins received,
44
+ * allowing strict equality checks (===) to work correctly.
45
+ */
46
+ private readonly _terminalApiObjects = new Map<string, theia.Terminal>();
47
+
41
48
  private readonly _pseudoTerminals = new Map<string, PseudoTerminal>();
42
49
 
43
50
  private static nextProviderId = 0;
@@ -66,8 +73,8 @@ export class TerminalServiceExtImpl implements TerminalServiceExt {
66
73
  this.proxy = rpc.getProxy(PLUGIN_RPC_CONTEXT.TERMINAL_MAIN);
67
74
  }
68
75
 
69
- get terminals(): TerminalExtImpl[] {
70
- return [...this._terminals.values()];
76
+ get terminals(): theia.Terminal[] {
77
+ return [...this._terminals.keys()].map(id => this.getApiObject(id)).filter((t): t is theia.Terminal => t !== undefined);
71
78
  }
72
79
 
73
80
  get defaultShell(): string {
@@ -84,7 +91,9 @@ export class TerminalServiceExtImpl implements TerminalServiceExt {
84
91
  createTerminal(
85
92
  plugin: Plugin,
86
93
  nameOrOptions: theia.TerminalOptions | theia.PseudoTerminalOptions | theia.ExtensionTerminalOptions | string | undefined,
87
- shellPath?: string, shellArgs?: string[] | string
94
+ shellPath?: string,
95
+ shellArgs?: string[] | string,
96
+ apiObjectWrapper?: (terminal: TerminalExtImpl) => theia.Terminal
88
97
  ): theia.Terminal {
89
98
  const id = `plugin-terminal-${UUID.uuid4()}`;
90
99
  let options: TerminalOptions;
@@ -110,7 +119,15 @@ export class TerminalServiceExtImpl implements TerminalServiceExt {
110
119
  let parentId;
111
120
  if (options.location && typeof options.location === 'object' && 'parentTerminal' in options.location) {
112
121
  const parentTerminal = options.location.parentTerminal;
113
- if (parentTerminal instanceof TerminalExtImpl) {
122
+ // Check both the API proxy objects and the raw terminals, since
123
+ // plugins receive the proxy but _terminals stores the raw object.
124
+ for (const [k, v] of this._terminalApiObjects) {
125
+ if (v === parentTerminal) {
126
+ parentId = k;
127
+ break;
128
+ }
129
+ }
130
+ if (!parentId) {
114
131
  for (const [k, v] of this._terminals) {
115
132
  if (v === parentTerminal) {
116
133
  parentId = k;
@@ -136,7 +153,16 @@ export class TerminalServiceExtImpl implements TerminalServiceExt {
136
153
  if (typeof nameOrOptions === 'object' && 'pty' in nameOrOptions) {
137
154
  creationOptions = nameOrOptions;
138
155
  }
139
- return this.obtainTerminal(id, options.name || 'Terminal', creationOptions);
156
+ const terminal = this.obtainTerminal(id, options.name || 'Terminal', creationOptions);
157
+
158
+ // If a wrapper function is provided, wrap the terminal and register the API object
159
+ // This ensures events fire with the same object instance that plugins received
160
+ if (apiObjectWrapper) {
161
+ const apiObject = apiObjectWrapper(terminal);
162
+ this._terminalApiObjects.set(id, apiObject);
163
+ return apiObject;
164
+ }
165
+ return terminal;
140
166
  }
141
167
 
142
168
  attachPtyToTerminal(terminalId: number, pty: theia.Pseudoterminal): void {
@@ -153,6 +179,13 @@ export class TerminalServiceExtImpl implements TerminalServiceExt {
153
179
  return terminal;
154
180
  }
155
181
 
182
+ /**
183
+ * Gets the API object for a terminal by ID, falling back to the raw terminal if not set.
184
+ */
185
+ protected getApiObject(id: string): theia.Terminal | undefined {
186
+ return this._terminalApiObjects.get(id) ?? this._terminals.get(id);
187
+ }
188
+
156
189
  $terminalOnInput(id: string, data: string): void {
157
190
  const terminal = this._pseudoTerminals.get(id);
158
191
  if (!terminal) {
@@ -168,7 +201,10 @@ export class TerminalServiceExtImpl implements TerminalServiceExt {
168
201
  }
169
202
  if (!terminal.state.isInteractedWith) {
170
203
  terminal.state = { ...terminal.state, isInteractedWith: true };
171
- this.onDidChangeTerminalStateEmitter.fire(terminal);
204
+ const apiObject = this.getApiObject(id);
205
+ if (apiObject) {
206
+ this.onDidChangeTerminalStateEmitter.fire(apiObject);
207
+ }
172
208
  }
173
209
  }
174
210
 
@@ -179,7 +215,10 @@ export class TerminalServiceExtImpl implements TerminalServiceExt {
179
215
  }
180
216
  if (terminal.state.shell !== shellType) {
181
217
  terminal.state = { ...terminal.state, shell: shellType };
182
- this.onDidChangeTerminalStateEmitter.fire(terminal);
218
+ const apiObject = this.getApiObject(id);
219
+ if (apiObject) {
220
+ this.onDidChangeTerminalStateEmitter.fire(apiObject);
221
+ }
183
222
  }
184
223
  }
185
224
 
@@ -194,7 +233,10 @@ export class TerminalServiceExtImpl implements TerminalServiceExt {
194
233
  $terminalCreated(id: string, name: string): void {
195
234
  const terminal = this.obtainTerminal(id, name);
196
235
  terminal.id.resolve(id);
197
- this.onDidOpenTerminalEmitter.fire(terminal);
236
+ const apiObject = this.getApiObject(id);
237
+ if (apiObject) {
238
+ this.onDidOpenTerminalEmitter.fire(apiObject);
239
+ }
198
240
  }
199
241
 
200
242
  $terminalNameChanged(id: string, name: string): void {
@@ -234,8 +276,12 @@ export class TerminalServiceExtImpl implements TerminalServiceExt {
234
276
  const terminal = this._terminals.get(id);
235
277
  if (terminal) {
236
278
  terminal.exitStatus = exitStatus ?? { code: undefined, reason: TerminalExitReason.Unknown };
237
- this.onDidCloseTerminalEmitter.fire(terminal);
279
+ const apiObject = this.getApiObject(id);
280
+ if (apiObject) {
281
+ this.onDidCloseTerminalEmitter.fire(apiObject);
282
+ }
238
283
  this._terminals.delete(id);
284
+ this._terminalApiObjects.delete(id);
239
285
  }
240
286
  const pseudoTerminal = this._pseudoTerminals.get(id);
241
287
  if (pseudoTerminal) {
@@ -245,8 +291,8 @@ export class TerminalServiceExtImpl implements TerminalServiceExt {
245
291
  }
246
292
 
247
293
  private activeTerminalId: string | undefined;
248
- get activeTerminal(): TerminalExtImpl | undefined {
249
- return this.activeTerminalId && this._terminals.get(this.activeTerminalId) || undefined;
294
+ get activeTerminal(): theia.Terminal | undefined {
295
+ return this.activeTerminalId && this.getApiObject(this.activeTerminalId) || undefined;
250
296
  }
251
297
  $currentTerminalChanged(id: string | undefined): void {
252
298
  this.activeTerminalId = id;
@@ -319,7 +365,7 @@ export class TerminalServiceExtImpl implements TerminalServiceExt {
319
365
 
320
366
  async $provideTerminalLinks(line: string, terminalId: string, token: theia.CancellationToken): Promise<ProvidedTerminalLink[]> {
321
367
  const links: ProvidedTerminalLink[] = [];
322
- const terminal = this._terminals.get(terminalId);
368
+ const terminal = this.getApiObject(terminalId);
323
369
  if (terminal) {
324
370
  for (const [providerId, provider] of this.terminalLinkProviders) {
325
371
  const providedLinks = await provider.provideTerminalLinks({ line, terminal }, token);
@@ -132,9 +132,14 @@ export class TestItemCollection implements theia.TestItemCollection {
132
132
  return this.values.size;
133
133
  }
134
134
  replace(items: readonly theia.TestItem[]): void {
135
- const toRemove = this.values.values.map(item => item.id);
136
- items.forEach(item => this.add(item));
137
- toRemove.forEach(key => this.delete(key));
135
+ const toDelete = new Set(this.values.values.map(item => item.id));
136
+ for (const item of items) {
137
+ toDelete.delete(item.id);
138
+ this.add(item);
139
+ }
140
+ for (const id of toDelete) {
141
+ this.delete(id);
142
+ }
138
143
  }
139
144
 
140
145
  forEach(callback: (item: theia.TestItem, collection: theia.TestItemCollection) => unknown, thisArg?: unknown): void {
@@ -299,6 +299,10 @@ export class TestRun implements theia.TestRun {
299
299
  }
300
300
 
301
301
  end(): void {
302
+ if (this.ended) {
303
+ return;
304
+ }
305
+ this.changeBatcher.flush();
302
306
  this.ended = true;
303
307
  this.proxy.$notifyTestRunEnded(this.controller.id, this.id);
304
308
  }
@@ -428,9 +432,16 @@ export class TestingExtImpl implements TestingExt {
428
432
  $onResolveChildren(controllerId: string, path: string[]): void {
429
433
  const controller = this.withController(controllerId);
430
434
  if (controller.resolveHandler) {
431
- const item = controller.items.find(path);
432
- if (item?.canResolveChildren) { // the item and resolve handler might have been been changed, but not sent to the front end
433
- controller.resolveHandler?.(item);
435
+ if (path.length === 0) {
436
+ // Root-level resolve: discover top-level test items
437
+ controller.resolveHandler(undefined);
438
+ } else {
439
+ const item = controller.items.find(path);
440
+ // The `main` side should only request resolution for items with `canResolveChildren`, but with event batching,
441
+ // the flag can be out of sync with the state on the `plugin` side. The state on the `plugin` side is authoritative.
442
+ if (item?.canResolveChildren) {
443
+ controller.resolveHandler(item);
444
+ }
434
445
  }
435
446
  }
436
447
  }
@@ -22,7 +22,7 @@ import {
22
22
  DecorationOptions, EditorPosition, Plugin, Position, WorkspaceTextEditDto, WorkspaceFileEditDto, Selection, TaskDto, WorkspaceEditDto
23
23
  } from '../common/plugin-api-rpc';
24
24
  import * as model from '../common/plugin-api-rpc-model';
25
- import { LanguageFilter, LanguageSelector, RelativePattern } from '@theia/editor/lib/common/language-selector';
25
+ import { LanguageFilter, LanguageSelector } from '@theia/editor/lib/common/language-selector';
26
26
  import { MarkdownString as PluginMarkdownStringImpl } from './markdown-string';
27
27
  import * as types from './types-impl';
28
28
  import { UriComponents } from '../common/uri-components';
@@ -246,27 +246,21 @@ export function fromDocumentSelector(selector: theia.DocumentSelector | undefine
246
246
  return {
247
247
  language: selector.language,
248
248
  scheme: selector.scheme,
249
- pattern: fromGlobPattern(selector.pattern!)
249
+ pattern: selector.pattern && fromGlobPattern(selector.pattern)
250
250
  } as LanguageFilter;
251
251
  }
252
252
 
253
253
  }
254
254
 
255
- export function fromGlobPattern(pattern: theia.GlobPattern): string | RelativePattern {
255
+ export function fromGlobPattern(pattern: theia.GlobPattern): string | types.RelativePattern {
256
256
  if (typeof pattern === 'string') {
257
257
  return pattern;
258
258
  }
259
259
 
260
- if (isRelativePattern(pattern)) {
261
- return new types.RelativePattern(pattern.baseUri, pattern.pattern);
262
- }
263
-
264
- return pattern;
265
- }
266
-
267
- function isRelativePattern(obj: {}): obj is theia.RelativePattern {
268
- const rp = obj as theia.RelativePattern;
269
- return rp && typeof rp.baseUri === 'string' && typeof rp.pattern === 'string';
260
+ return new types.RelativePattern(
261
+ pattern.baseUri ?? pattern.base, // preserve backwards compatibility with older extensions: legacy relative pattern shape did not have the `baseUri` property
262
+ pattern.pattern
263
+ );
270
264
  }
271
265
 
272
266
  export function fromCompletionItemKind(kind?: types.CompletionItemKind): model.CompletionItemKind {