@@ -295,9 +295,14 @@ internal class CoderCLIManagerTest {
295
295
val remove : String ,
296
296
val headerCommand : String = " " ,
297
297
val disableAutostart : Boolean = false ,
298
- val features : Features = Features (),
298
+ // Default to the most common feature settings.
299
+ val features : Features = Features (
300
+ disableAutostart = false,
301
+ reportWorkspaceUsage = true,
302
+ ),
299
303
val extraConfig : String = " " ,
300
304
val env : Environment = Environment (),
305
+ val sshLogDirectory : Path ? = null ,
301
306
)
302
307
303
308
@Test
@@ -309,27 +314,26 @@ internal class CoderCLIManagerTest {
309
314
).joinToString(System .lineSeparator())
310
315
val tests =
311
316
listOf (
312
- SSHTest (listOf (" foo" , " bar" ), null , " multiple-workspaces" , " blank" , features = Features ( false , true ) ),
313
- SSHTest (listOf (" foo" , " bar" ), null , " multiple-workspaces" , " blank" , features = Features ( false , true ) ),
314
- SSHTest (listOf (" foo-bar" ), " blank" , " append-blank" , " blank" , features = Features ( false , true ) ),
315
- SSHTest (listOf (" foo-bar" ), " blank-newlines" , " append-blank-newlines" , " blank" , features = Features ( false , true ) ),
316
- SSHTest (listOf (" foo-bar" ), " existing-end" , " replace-end" , " no-blocks" , features = Features ( false , true ) ),
317
- SSHTest (listOf (" foo-bar" ), " existing-end-no-newline" , " replace-end-no-newline" , " no-blocks" , features = Features ( false , true ) ),
318
- SSHTest (listOf (" foo-bar" ), " existing-middle" , " replace-middle" , " no-blocks" , features = Features ( false , true ) ),
319
- SSHTest (listOf (" foo-bar" ), " existing-middle-and-unrelated" , " replace-middle-ignore-unrelated" , " no-related-blocks" , features = Features ( false , true ) ),
320
- SSHTest (listOf (" foo-bar" ), " existing-only" , " replace-only" , " blank" , features = Features ( false , true ) ),
321
- SSHTest (listOf (" foo-bar" ), " existing-start" , " replace-start" , " no-blocks" , features = Features ( false , true ) ),
322
- SSHTest (listOf (" foo-bar" ), " no-blocks" , " append-no-blocks" , " no-blocks" , features = Features ( false , true ) ),
323
- SSHTest (listOf (" foo-bar" ), " no-related-blocks" , " append-no-related-blocks" , " no-related-blocks" , features = Features ( false , true ) ),
324
- SSHTest (listOf (" foo-bar" ), " no-newline" , " append-no-newline" , " no-blocks" , features = Features ( false , true ) ),
317
+ SSHTest (listOf (" foo" , " bar" ), null , " multiple-workspaces" , " blank" ),
318
+ SSHTest (listOf (" foo" , " bar" ), null , " multiple-workspaces" , " blank" ),
319
+ SSHTest (listOf (" foo-bar" ), " blank" , " append-blank" , " blank" ),
320
+ SSHTest (listOf (" foo-bar" ), " blank-newlines" , " append-blank-newlines" , " blank" ),
321
+ SSHTest (listOf (" foo-bar" ), " existing-end" , " replace-end" , " no-blocks" ),
322
+ SSHTest (listOf (" foo-bar" ), " existing-end-no-newline" , " replace-end-no-newline" , " no-blocks" ),
323
+ SSHTest (listOf (" foo-bar" ), " existing-middle" , " replace-middle" , " no-blocks" ),
324
+ SSHTest (listOf (" foo-bar" ), " existing-middle-and-unrelated" , " replace-middle-ignore-unrelated" , " no-related-blocks" ),
325
+ SSHTest (listOf (" foo-bar" ), " existing-only" , " replace-only" , " blank" ),
326
+ SSHTest (listOf (" foo-bar" ), " existing-start" , " replace-start" , " no-blocks" ),
327
+ SSHTest (listOf (" foo-bar" ), " no-blocks" , " append-no-blocks" , " no-blocks" ),
328
+ SSHTest (listOf (" foo-bar" ), " no-related-blocks" , " append-no-related-blocks" , " no-related-blocks" ),
329
+ SSHTest (listOf (" foo-bar" ), " no-newline" , " append-no-newline" , " no-blocks" ),
325
330
if (getOS() == OS .WINDOWS ) {
326
331
SSHTest (
327
332
listOf (" header" ),
328
333
null ,
329
334
" header-command-windows" ,
330
335
" blank" ,
331
336
""" "C:\Program Files\My Header Command\HeaderCommand.exe" --url="%CODER_URL%" --test="foo bar"""" ,
332
- features = Features (false , true ),
333
337
)
334
338
} else {
335
339
SSHTest (
@@ -338,27 +342,53 @@ internal class CoderCLIManagerTest {
338
342
" header-command" ,
339
343
" blank" ,
340
344
" my-header-command --url=\" \$ CODER_URL\" --test=\" foo bar\" --literal='\$ CODER_URL'" ,
341
- features = Features (false , true ),
342
345
)
343
346
},
344
- SSHTest (listOf (" foo" ), null , " disable-autostart" , " blank" , " " , true , Features (true , true )),
345
- SSHTest (listOf (" foo" ), null , " no-disable-autostart" , " blank" , " " , true , Features (false , true )),
346
- SSHTest (listOf (" foo" ), null , " no-report-usage" , " blank" , " " , true , Features (false , false )),
347
+ SSHTest (
348
+ listOf (" foo" ),
349
+ null ,
350
+ " disable-autostart" ,
351
+ " blank" ,
352
+ " " ,
353
+ true ,
354
+ Features (
355
+ disableAutostart = true ,
356
+ reportWorkspaceUsage = true ,
357
+ ),
358
+ ),
359
+ SSHTest (listOf (" foo" ), null , " no-disable-autostart" , " blank" , " " ),
360
+ SSHTest (
361
+ listOf (" foo" ),
362
+ null ,
363
+ " no-report-usage" ,
364
+ " blank" ,
365
+ " " ,
366
+ true ,
367
+ Features (
368
+ disableAutostart = false ,
369
+ reportWorkspaceUsage = false ,
370
+ ),
371
+ ),
347
372
SSHTest (
348
373
listOf (" extra" ),
349
374
null ,
350
375
" extra-config" ,
351
376
" blank" ,
352
377
extraConfig = extraConfig,
353
- features = Features (false , true ),
354
378
),
355
379
SSHTest (
356
380
listOf (" extra" ),
357
381
null ,
358
382
" extra-config" ,
359
383
" blank" ,
360
384
env = Environment (mapOf (CODER_SSH_CONFIG_OPTIONS to extraConfig)),
361
- features = Features (false , true ),
385
+ ),
386
+ SSHTest (
387
+ listOf (" foo" ),
388
+ null ,
389
+ " log-dir" ,
390
+ " blank" ,
391
+ sshLogDirectory = tmpdir.resolve(" ssh-logs" ),
362
392
),
363
393
)
364
394
@@ -372,6 +402,7 @@ internal class CoderCLIManagerTest {
372
402
dataDirectory = tmpdir.resolve(" configure-ssh" ).toString(),
373
403
headerCommand = it.headerCommand,
374
404
sshConfigOptions = it.extraConfig,
405
+ sshLogDirectory = it.sshLogDirectory?.toString() ? : " " ,
375
406
),
376
407
sshConfigPath = tmpdir.resolve(it.input + " _to_" + it.output + " .conf" ),
377
408
env = it.env,
@@ -395,12 +426,24 @@ internal class CoderCLIManagerTest {
395
426
.replace(newlineRe, System .lineSeparator())
396
427
.replace(" /tmp/coder-gateway/test.coder.invalid/config" , escape(coderConfigPath.toString()))
397
428
.replace(" /tmp/coder-gateway/test.coder.invalid/coder-linux-amd64" , escape(ccm.localBinaryPath.toString()))
429
+ .let { conf ->
430
+ if (it.sshLogDirectory != null ) {
431
+ conf.replace(" /tmp/coder-gateway/test.coder.invalid/logs" , it.sshLogDirectory.toString())
432
+ } else {
433
+ conf
434
+ }
435
+ }
398
436
399
437
// Add workspaces.
400
438
ccm.configSsh(it.workspaces.toSet(), it.features)
401
439
402
440
assertEquals(expectedConf, settings.sshConfigPath.toFile().readText())
403
441
442
+ // SSH log directory should have been created.
443
+ if (it.sshLogDirectory != null ) {
444
+ assertTrue(it.sshLogDirectory.toFile().exists())
445
+ }
446
+
404
447
// Remove configuration.
405
448
ccm.configSsh(emptySet(), it.features)
406
449
0 commit comments