3
3
4
4
import { expect } from 'chai' ;
5
5
import * as path from 'path' ;
6
+ import * as sinon from 'sinon' ;
6
7
import * as TypeMoq from 'typemoq' ;
7
8
import {
8
9
Disposable ,
@@ -22,6 +23,7 @@ import { IDisposableRegistry } from '../../../client/common/types';
22
23
import { IServiceContainer } from '../../../client/ioc/types' ;
23
24
import { ITerminalAutoActivation } from '../../../client/terminals/types' ;
24
25
import { createPythonInterpreter } from '../../utils/interpreters' ;
26
+ import * as workspaceApis from '../../../client/common/vscodeApis/workspaceApis' ;
25
27
26
28
suite ( 'Terminal Service' , ( ) => {
27
29
let service : TerminalService ;
@@ -37,6 +39,9 @@ suite('Terminal Service', () => {
37
39
let terminalShellIntegration : TypeMoq . IMock < TerminalShellIntegration > ;
38
40
let onDidEndTerminalShellExecutionEmitter : EventEmitter < TerminalShellExecutionEndEvent > ;
39
41
let event : TerminalShellExecutionEndEvent ;
42
+ let getConfigurationStub : sinon . SinonStub ;
43
+ let pythonConfig : TypeMoq . IMock < WorkspaceConfiguration > ;
44
+ let editorConfig : TypeMoq . IMock < WorkspaceConfiguration > ;
40
45
41
46
setup ( ( ) => {
42
47
terminal = TypeMoq . Mock . ofType < VSCodeTerminal > ( ) ;
@@ -88,12 +93,22 @@ suite('Terminal Service', () => {
88
93
mockServiceContainer . setup ( ( c ) => c . get ( IWorkspaceService ) ) . returns ( ( ) => workspaceService . object ) ;
89
94
mockServiceContainer . setup ( ( c ) => c . get ( ITerminalActivator ) ) . returns ( ( ) => terminalActivator . object ) ;
90
95
mockServiceContainer . setup ( ( c ) => c . get ( ITerminalAutoActivation ) ) . returns ( ( ) => terminalAutoActivator . object ) ;
96
+ getConfigurationStub = sinon . stub ( workspaceApis , 'getConfiguration' ) ;
97
+ pythonConfig = TypeMoq . Mock . ofType < WorkspaceConfiguration > ( ) ;
98
+ editorConfig = TypeMoq . Mock . ofType < WorkspaceConfiguration > ( ) ;
99
+ getConfigurationStub . callsFake ( ( section : string ) => {
100
+ if ( section === 'python' ) {
101
+ return pythonConfig . object ;
102
+ }
103
+ return editorConfig . object ;
104
+ } ) ;
91
105
} ) ;
92
106
teardown ( ( ) => {
93
107
if ( service ) {
94
108
service . dispose ( ) ;
95
109
}
96
110
disposables . filter ( ( item ) => ! ! item ) . forEach ( ( item ) => item . dispose ( ) ) ;
111
+ sinon . restore ( ) ;
97
112
} ) ;
98
113
99
114
test ( 'Ensure terminal is disposed' , async ( ) => {
@@ -103,13 +118,15 @@ suite('Terminal Service', () => {
103
118
const os : string = 'windows' ;
104
119
service = new TerminalService ( mockServiceContainer . object ) ;
105
120
const shellPath = 'powershell.exe' ;
121
+ // TODO: switch over legacy Terminal code to use workspace getConfiguration from workspaceApis instead of directly from vscode.workspace
106
122
workspaceService
107
123
. setup ( ( w ) => w . getConfiguration ( TypeMoq . It . isValue ( 'terminal.integrated.shell' ) ) )
108
124
. returns ( ( ) => {
109
125
const workspaceConfig = TypeMoq . Mock . ofType < WorkspaceConfiguration > ( ) ;
110
126
workspaceConfig . setup ( ( c ) => c . get ( os ) ) . returns ( ( ) => shellPath ) ;
111
127
return workspaceConfig . object ;
112
128
} ) ;
129
+ pythonConfig . setup ( ( p ) => p . get ( 'terminal.shellIntegration.enabled' ) ) . returns ( ( ) => false ) ;
113
130
114
131
platformService . setup ( ( p ) => p . isWindows ) . returns ( ( ) => os === 'windows' ) ;
115
132
platformService . setup ( ( p ) => p . isLinux ) . returns ( ( ) => os === 'linux' ) ;
@@ -134,6 +151,7 @@ suite('Terminal Service', () => {
134
151
} ) ;
135
152
136
153
test ( 'Ensure command is sent to terminal and it is shown' , async ( ) => {
154
+ pythonConfig . setup ( ( p ) => p . get ( 'terminal.shellIntegration.enabled' ) ) . returns ( ( ) => false ) ;
137
155
terminalHelper
138
156
. setup ( ( helper ) => helper . getEnvironmentActivationCommands ( TypeMoq . It . isAny ( ) , TypeMoq . It . isAny ( ) ) )
139
157
. returns ( ( ) => Promise . resolve ( undefined ) ) ;
@@ -171,6 +189,69 @@ suite('Terminal Service', () => {
171
189
terminal . verify ( ( t ) => t . sendText ( TypeMoq . It . isValue ( textToSend ) ) , TypeMoq . Times . exactly ( 1 ) ) ;
172
190
} ) ;
173
191
192
+ test ( 'Ensure sendText is used when Python shell integration is disabled' , async ( ) => {
193
+ pythonConfig
194
+ . setup ( ( p ) => p . get ( 'terminal.shellIntegration.enabled' ) )
195
+ . returns ( ( ) => false )
196
+ . verifiable ( TypeMoq . Times . once ( ) ) ;
197
+
198
+ terminalHelper
199
+ . setup ( ( helper ) => helper . getEnvironmentActivationCommands ( TypeMoq . It . isAny ( ) , TypeMoq . It . isAny ( ) ) )
200
+ . returns ( ( ) => Promise . resolve ( undefined ) ) ;
201
+ service = new TerminalService ( mockServiceContainer . object ) ;
202
+ const textToSend = 'Some Text' ;
203
+ terminalHelper . setup ( ( h ) => h . identifyTerminalShell ( TypeMoq . It . isAny ( ) ) ) . returns ( ( ) => TerminalShellType . bash ) ;
204
+ terminalManager . setup ( ( t ) => t . createTerminal ( TypeMoq . It . isAny ( ) ) ) . returns ( ( ) => terminal . object ) ;
205
+
206
+ service . ensureTerminal ( ) ;
207
+ service . executeCommand ( textToSend , true ) ;
208
+
209
+ terminal . verify ( ( t ) => t . show ( TypeMoq . It . isValue ( true ) ) , TypeMoq . Times . exactly ( 1 ) ) ;
210
+ terminal . verify ( ( t ) => t . sendText ( TypeMoq . It . isValue ( textToSend ) ) , TypeMoq . Times . exactly ( 1 ) ) ;
211
+ } ) ;
212
+
213
+ test ( 'Ensure sendText is called when terminal.shellIntegration enabled but Python shell integration disabled' , async ( ) => {
214
+ pythonConfig
215
+ . setup ( ( p ) => p . get ( 'terminal.shellIntegration.enabled' ) )
216
+ . returns ( ( ) => false )
217
+ . verifiable ( TypeMoq . Times . once ( ) ) ;
218
+
219
+ terminalHelper
220
+ . setup ( ( helper ) => helper . getEnvironmentActivationCommands ( TypeMoq . It . isAny ( ) , TypeMoq . It . isAny ( ) ) )
221
+ . returns ( ( ) => Promise . resolve ( undefined ) ) ;
222
+ service = new TerminalService ( mockServiceContainer . object ) ;
223
+ const textToSend = 'Some Text' ;
224
+ terminalHelper . setup ( ( h ) => h . identifyTerminalShell ( TypeMoq . It . isAny ( ) ) ) . returns ( ( ) => TerminalShellType . bash ) ;
225
+ terminalManager . setup ( ( t ) => t . createTerminal ( TypeMoq . It . isAny ( ) ) ) . returns ( ( ) => terminal . object ) ;
226
+
227
+ service . ensureTerminal ( ) ;
228
+ service . executeCommand ( textToSend , true ) ;
229
+
230
+ terminal . verify ( ( t ) => t . show ( TypeMoq . It . isValue ( true ) ) , TypeMoq . Times . exactly ( 1 ) ) ;
231
+ terminal . verify ( ( t ) => t . sendText ( TypeMoq . It . isValue ( textToSend ) ) , TypeMoq . Times . exactly ( 1 ) ) ;
232
+ } ) ;
233
+
234
+ test ( 'Ensure sendText is NOT called when Python shell integration and terminal shell integration are both enabled' , async ( ) => {
235
+ pythonConfig
236
+ . setup ( ( p ) => p . get ( 'terminal.shellIntegration.enabled' ) )
237
+ . returns ( ( ) => true )
238
+ . verifiable ( TypeMoq . Times . once ( ) ) ;
239
+
240
+ terminalHelper
241
+ . setup ( ( helper ) => helper . getEnvironmentActivationCommands ( TypeMoq . It . isAny ( ) , TypeMoq . It . isAny ( ) ) )
242
+ . returns ( ( ) => Promise . resolve ( undefined ) ) ;
243
+ service = new TerminalService ( mockServiceContainer . object ) ;
244
+ const textToSend = 'Some Text' ;
245
+ terminalHelper . setup ( ( h ) => h . identifyTerminalShell ( TypeMoq . It . isAny ( ) ) ) . returns ( ( ) => TerminalShellType . bash ) ;
246
+ terminalManager . setup ( ( t ) => t . createTerminal ( TypeMoq . It . isAny ( ) ) ) . returns ( ( ) => terminal . object ) ;
247
+
248
+ service . ensureTerminal ( ) ;
249
+ service . executeCommand ( textToSend , true ) ;
250
+
251
+ terminal . verify ( ( t ) => t . show ( TypeMoq . It . isValue ( true ) ) , TypeMoq . Times . exactly ( 1 ) ) ;
252
+ terminal . verify ( ( t ) => t . sendText ( TypeMoq . It . isValue ( textToSend ) ) , TypeMoq . Times . never ( ) ) ;
253
+ } ) ;
254
+
174
255
test ( 'Ensure terminal is not shown if `hideFromUser` option is set to `true`' , async ( ) => {
175
256
terminalHelper
176
257
. setup ( ( helper ) => helper . getEnvironmentActivationCommands ( TypeMoq . It . isAny ( ) , TypeMoq . It . isAny ( ) ) )
0 commit comments