forked from tmux-python/tmuxp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_cli.py
641 lines (505 loc) · 19.7 KB
/
test_cli.py
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
# -*- coding: utf-8 -*-
"""Test for tmuxp command line interface."""
from __future__ import absolute_import
import json
import os
import pytest
import click
from click.testing import CliRunner
import libtmux
from libtmux.common import has_lt_version
from tmuxp import cli, config
from tmuxp.cli import (
command_ls,
get_config_dir,
is_pure_name,
load_workspace,
scan_config,
)
from .fixtures._util import curjoin, loadfixture
def test_creates_config_dir_not_exists(tmpdir):
"""cli.startup() creates config dir if not exists."""
cli.startup(str(tmpdir))
assert os.path.exists(str(tmpdir))
def test_in_dir_from_config_dir(tmpdir):
"""config.in_dir() finds configs config dir."""
cli.startup(str(tmpdir))
tmpdir.join("myconfig.yaml").write("")
tmpdir.join("myconfig.json").write("")
configs_found = config.in_dir(str(tmpdir))
assert len(configs_found) == 2
def test_ignore_non_configs_from_current_dir(tmpdir):
"""cli.in_dir() ignore non-config from config dir."""
cli.startup(str(tmpdir))
tmpdir.join("myconfig.psd").write("")
tmpdir.join("watmyconfig.json").write("")
configs_found = config.in_dir(str(tmpdir))
assert len(configs_found) == 1
def test_get_configs_cwd(tmpdir):
"""config.in_cwd() find config in shell current working directory."""
confdir = tmpdir.mkdir("tmuxpconf2")
with confdir.as_cwd():
config1 = open('.tmuxp.json', 'w+b')
config1.close()
configs_found = config.in_cwd()
assert len(configs_found) == 1
assert '.tmuxp.json' in configs_found
@pytest.mark.parametrize(
'path,expect',
[
('.', False),
('./', False),
('', False),
('.tmuxp.yaml', False),
('../.tmuxp.yaml', False),
('../', False),
('/hello/world', False),
('~/.tmuxp/hey', False),
('~/work/c/tmux/', False),
('~/work/c/tmux/.tmuxp.yaml', False),
('myproject', True),
],
)
def test_is_pure_name(path, expect):
assert is_pure_name(path) == expect
"""
scans for .tmuxp.{yaml,yml,json} in directory, returns first result
log warning if multiple found:
- current directory: ., ./, noarg
- relative to cwd directory: ../, ./hello/, hello/, ./hello/
- absolute directory: /path/to/dir, /path/to/dir/, ~/
- no path, no ext, config_dir: projectname, tmuxp
load file directly -
- no directory (cwd): .tmuxp.yaml
- relative to cwd: ../.tmuxp.yaml, ./hello/.tmuxp.yaml
- absolute path: /path/to/file.yaml, ~/path/to/file/.tmuxp.yaml
Any case where file is not found should return error.
"""
@pytest.fixture
def homedir(tmpdir):
return tmpdir.join('home').mkdir()
@pytest.fixture
def configdir(homedir):
return homedir.join('.tmuxp').mkdir()
@pytest.fixture
def projectdir(homedir):
return homedir.join('work').join('project')
def test_tmuxp_configdir_env_var(tmpdir, monkeypatch):
monkeypatch.setenv('TMUXP_CONFIGDIR', str(tmpdir))
assert get_config_dir() == tmpdir
def test_tmuxp_configdir_xdg_config_dir(tmpdir, monkeypatch):
monkeypatch.setenv('XDG_CONFIG_HOME', str(tmpdir))
tmux_dir = tmpdir.mkdir("tmuxp")
assert get_config_dir() == str(tmux_dir)
def test_resolve_dot(tmpdir, homedir, configdir, projectdir, monkeypatch):
monkeypatch.setenv('HOME', str(homedir))
projectdir.join('.tmuxp.yaml').ensure()
user_config_name = 'myconfig'
user_config = configdir.join('%s.yaml' % user_config_name).ensure()
project_config = str(projectdir.join('.tmuxp.yaml'))
with projectdir.as_cwd():
expect = project_config
assert scan_config('.') == expect
assert scan_config('./') == expect
assert scan_config('') == expect
assert scan_config('../project') == expect
assert scan_config('../project/') == expect
assert scan_config('.tmuxp.yaml') == expect
assert scan_config('../../.tmuxp/%s.yaml' % user_config_name) == str(
user_config
)
assert scan_config('myconfig') == str(user_config)
assert scan_config('~/.tmuxp/myconfig.yaml') == str(user_config)
with pytest.raises(Exception):
scan_config('.tmuxp.json')
with pytest.raises(Exception):
scan_config('.tmuxp.ini')
with pytest.raises(Exception):
scan_config('../')
with pytest.raises(Exception):
scan_config('mooooooo')
with homedir.as_cwd():
expect = project_config
assert scan_config('work/project') == expect
assert scan_config('work/project/') == expect
assert scan_config('./work/project') == expect
assert scan_config('./work/project/') == expect
assert scan_config('.tmuxp/%s.yaml' % user_config_name) == str(user_config)
assert scan_config('./.tmuxp/%s.yaml' % user_config_name) == str(user_config)
assert scan_config('myconfig') == str(user_config)
assert scan_config('~/.tmuxp/myconfig.yaml') == str(user_config)
with pytest.raises(Exception):
scan_config('')
with pytest.raises(Exception):
scan_config('.')
with pytest.raises(Exception):
scan_config('.tmuxp.yaml')
with pytest.raises(Exception):
scan_config('../')
with pytest.raises(Exception):
scan_config('mooooooo')
with configdir.as_cwd():
expect = project_config
assert scan_config('../work/project') == expect
assert scan_config('../../home/work/project') == expect
assert scan_config('../work/project/') == expect
assert scan_config('%s.yaml' % user_config_name) == str(user_config)
assert scan_config('./%s.yaml' % user_config_name) == str(user_config)
assert scan_config('myconfig') == str(user_config)
assert scan_config('~/.tmuxp/myconfig.yaml') == str(user_config)
with pytest.raises(Exception):
scan_config('')
with pytest.raises(Exception):
scan_config('.')
with pytest.raises(Exception):
scan_config('.tmuxp.yaml')
with pytest.raises(Exception):
scan_config('../')
with pytest.raises(Exception):
scan_config('mooooooo')
with tmpdir.as_cwd():
expect = project_config
assert scan_config('home/work/project') == expect
assert scan_config('./home/work/project/') == expect
assert scan_config('home/.tmuxp/%s.yaml' % user_config_name) == str(user_config)
assert scan_config('./home/.tmuxp/%s.yaml' % user_config_name) == str(
user_config
)
assert scan_config('myconfig') == str(user_config)
assert scan_config('~/.tmuxp/myconfig.yaml') == str(user_config)
with pytest.raises(Exception):
scan_config('')
with pytest.raises(Exception):
scan_config('.')
with pytest.raises(Exception):
scan_config('.tmuxp.yaml')
with pytest.raises(Exception):
scan_config('../')
with pytest.raises(Exception):
scan_config('mooooooo')
def test_scan_config_arg(homedir, configdir, projectdir, monkeypatch):
runner = CliRunner()
@click.command()
@click.argument('config', type=cli.ConfigPath(exists=True), nargs=-1)
def config_cmd(config):
click.echo(config)
monkeypatch.setenv('HOME', str(homedir))
projectdir.join('.tmuxp.yaml').ensure()
user_config_name = 'myconfig'
user_config = configdir.join('%s.yaml' % user_config_name).ensure()
project_config = str(projectdir.join('.tmuxp.yaml'))
def check_cmd(config_arg):
return runner.invoke(config_cmd, [config_arg]).output
with projectdir.as_cwd():
expect = project_config
assert expect in check_cmd('.')
assert expect in check_cmd('./')
assert expect in check_cmd('')
assert expect in check_cmd('../project')
assert expect in check_cmd('../project/')
assert expect in check_cmd('.tmuxp.yaml')
assert str(user_config) in check_cmd('../../.tmuxp/%s.yaml' % user_config_name)
assert user_config.purebasename in check_cmd('myconfig')
assert str(user_config) in check_cmd('~/.tmuxp/myconfig.yaml')
assert 'file not found' in check_cmd('.tmuxp.json')
assert 'file not found' in check_cmd('.tmuxp.ini')
assert 'No tmuxp files found' in check_cmd('../')
assert 'config not found in config dir' in check_cmd('moo')
def test_load_workspace(server, monkeypatch):
# this is an implementation test. Since this testsuite may be ran within
# a tmux session by the developer himself, delete the TMUX variable
# temporarily.
monkeypatch.delenv('TMUX', raising=False)
session_file = curjoin("workspacebuilder/two_pane.yaml")
# open it detached
session = load_workspace(
session_file, socket_name=server.socket_name, detached=True
)
assert isinstance(session, libtmux.Session)
assert session.name == 'sampleconfig'
def test_load_workspace_named_session(server, monkeypatch):
# this is an implementation test. Since this testsuite may be ran within
# a tmux session by the developer himself, delete the TMUX variable
# temporarily.
monkeypatch.delenv('TMUX', raising=False)
session_file = curjoin("workspacebuilder/two_pane.yaml")
# open it detached
session = load_workspace(
session_file,
socket_name=server.socket_name,
new_session_name='tmuxp-new',
detached=True,
)
assert isinstance(session, libtmux.Session)
assert session.name == 'tmuxp-new'
@pytest.mark.skipif(
has_lt_version('2.1'), reason='exact session name matches only tmux >= 2.1'
)
def test_load_workspace_name_match_regression_252(tmpdir, server, monkeypatch):
monkeypatch.delenv('TMUX', raising=False)
session_file = curjoin("workspacebuilder/two_pane.yaml")
# open it detached
session = load_workspace(
session_file, socket_name=server.socket_name, detached=True
)
assert isinstance(session, libtmux.Session)
assert session.name == 'sampleconfig'
projfile = tmpdir.join('simple.yaml')
projfile.write(
"""
session_name: sampleconfi
start_directory: './'
windows:
- panes:
- echo 'hey'"""
)
# open it detached
session = load_workspace(
projfile.strpath, socket_name=server.socket_name, detached=True
)
assert session.name == 'sampleconfi'
def test_load_symlinked_workspace(server, tmpdir, monkeypatch):
# this is an implementation test. Since this testsuite may be ran within
# a tmux session by the developer himself, delete the TMUX variable
# temporarily.
monkeypatch.delenv('TMUX', raising=False)
realtemp = tmpdir.mkdir('myrealtemp')
linktemp = tmpdir.join('symlinktemp')
linktemp.mksymlinkto(realtemp)
projfile = linktemp.join('simple.yaml')
projfile.write(
"""
session_name: samplesimple
start_directory: './'
windows:
- panes:
- echo 'hey'"""
)
# open it detached
session = load_workspace(
projfile.strpath, socket_name=server.socket_name, detached=True
)
pane = session.attached_window.attached_pane
assert isinstance(session, libtmux.Session)
assert session.name == 'samplesimple'
assert pane.current_path == realtemp.strpath
def test_regression_00132_session_name_with_dots(tmpdir, server, session):
yaml_config = curjoin("workspacebuilder/regression_00132_dots.yaml")
cli_args = [yaml_config]
inputs = []
runner = CliRunner()
result = runner.invoke(
cli.command_load, cli_args, input=''.join(inputs), standalone_mode=False
)
assert result.exception
assert isinstance(result.exception, libtmux.exc.BadSessionName)
@pytest.mark.parametrize("cli_args", [(['load', '.']), (['load', '.tmuxp.yaml'])])
def test_load_zsh_autotitle_warning(cli_args, tmpdir, monkeypatch):
# create dummy tmuxp yaml so we don't get yelled at
tmpdir.join('.tmuxp.yaml').ensure()
tmpdir.join('.oh-my-zsh').ensure(dir=True)
monkeypatch.setenv('HOME', str(tmpdir))
with tmpdir.as_cwd():
runner = CliRunner()
monkeypatch.delenv('DISABLE_AUTO_TITLE', raising=False)
monkeypatch.setenv('SHELL', 'zsh')
result = runner.invoke(cli.cli, cli_args)
assert 'Please set' in result.output
monkeypatch.setenv('DISABLE_AUTO_TITLE', 'false')
result = runner.invoke(cli.cli, cli_args)
assert 'Please set' in result.output
monkeypatch.setenv('DISABLE_AUTO_TITLE', 'true')
result = runner.invoke(cli.cli, cli_args)
assert 'Please set' not in result.output
monkeypatch.delenv('DISABLE_AUTO_TITLE', raising=False)
monkeypatch.setenv('SHELL', 'sh')
result = runner.invoke(cli.cli, cli_args)
assert 'Please set' not in result.output
@pytest.mark.parametrize(
"cli_args",
[
(['convert', '.']),
(['convert', '.tmuxp.yaml']),
(['convert', '.tmuxp.yaml', '-y']),
],
)
def test_convert(cli_args, tmpdir, monkeypatch):
# create dummy tmuxp yaml so we don't get yelled at
tmpdir.join('.tmuxp.yaml').write(
"""
session_name: hello
"""
)
tmpdir.join('.oh-my-zsh').ensure(dir=True)
monkeypatch.setenv('HOME', str(tmpdir))
with tmpdir.as_cwd():
runner = CliRunner()
# If autoconfirm (-y) no need to prompt y
input_args = 'y\ny\n' if '-y' not in cli_args else ''
runner.invoke(cli.cli, cli_args, input=input_args)
assert tmpdir.join('.tmuxp.json').check()
assert tmpdir.join('.tmuxp.json').open().read() == json.dumps(
{'session_name': 'hello'}, indent=2
)
@pytest.mark.parametrize("cli_args", [(['import'])])
def test_import(cli_args, monkeypatch):
runner = CliRunner()
result = runner.invoke(cli.cli, cli_args)
assert 'tmuxinator' in result.output
assert 'teamocil' in result.output
@pytest.mark.parametrize(
"cli_args,inputs",
[
(
['import', 'teamocil', './.teamocil/config.yaml'],
['\n', 'y\n', './la.yaml\n', 'y\n'],
),
(
['import', 'teamocil', './.teamocil/config.yaml'],
['\n', 'y\n', './exists.yaml\n', './la.yaml\n', 'y\n'],
),
(
['import', 'teamocil', 'config'],
['\n', 'y\n', './exists.yaml\n', './la.yaml\n', 'y\n'],
),
],
)
def test_import_teamocil(cli_args, inputs, tmpdir, monkeypatch):
teamocil_config = loadfixture('config_teamocil/test4.yaml')
teamocil_dir = tmpdir.join('.teamocil').mkdir()
teamocil_dir.join('config.yaml').write(teamocil_config)
tmpdir.join('exists.yaml').ensure()
monkeypatch.setenv('HOME', str(tmpdir))
with tmpdir.as_cwd():
runner = CliRunner()
runner.invoke(cli.cli, cli_args, input=''.join(inputs))
assert tmpdir.join('la.yaml').check()
@pytest.mark.parametrize(
"cli_args,inputs",
[
(
['import', 'tmuxinator', './.tmuxinator/config.yaml'],
['\n', 'y\n', './la.yaml\n', 'y\n'],
),
(
['import', 'tmuxinator', './.tmuxinator/config.yaml'],
['\n', 'y\n', './exists.yaml\n', './la.yaml\n', 'y\n'],
),
(
['import', 'tmuxinator', 'config'],
['\n', 'y\n', './exists.yaml\n', './la.yaml\n', 'y\n'],
),
],
)
def test_import_tmuxinator(cli_args, inputs, tmpdir, monkeypatch):
tmuxinator_config = loadfixture('config_tmuxinator/test3.yaml')
tmuxinator_dir = tmpdir.join('.tmuxinator').mkdir()
tmuxinator_dir.join('config.yaml').write(tmuxinator_config)
tmpdir.join('exists.yaml').ensure()
monkeypatch.setenv('HOME', str(tmpdir))
with tmpdir.as_cwd():
runner = CliRunner()
out = runner.invoke(cli.cli, cli_args, input=''.join(inputs))
print(out.output)
assert tmpdir.join('la.yaml').check()
@pytest.mark.parametrize(
"cli_args,inputs",
[
(['freeze', 'mysession'], ['\n', 'y\n', './la.yaml\n', 'y\n']),
( # Exists
['freeze', 'mysession'],
['\n', 'y\n', './exists.yaml\n', './la.yaml\n', 'y\n'],
),
( # Imply current session if not entered
['freeze'],
['\n', 'y\n', './la.yaml\n', 'y\n'],
),
(['freeze'], ['\n', 'y\n', './exists.yaml\n', './la.yaml\n', 'y\n']), # Exists
],
)
def test_freeze(server, cli_args, inputs, tmpdir, monkeypatch):
monkeypatch.setenv('HOME', str(tmpdir))
tmpdir.join('exists.yaml').ensure()
server.new_session(session_name='mysession')
with tmpdir.as_cwd():
runner = CliRunner()
# Use tmux server (socket name) used in the test
cli_args = cli_args + ['-L', server.socket_name]
out = runner.invoke(cli.cli, cli_args, input=''.join(inputs))
print(out.output)
assert tmpdir.join('la.yaml').check()
def test_get_abs_path(tmpdir):
expect = str(tmpdir)
with tmpdir.as_cwd():
cli.get_abs_path('../') == os.path.dirname(expect)
cli.get_abs_path('.') == expect
cli.get_abs_path('./') == expect
cli.get_abs_path(expect) == expect
def test_get_tmuxinator_dir(monkeypatch):
assert cli.get_tmuxinator_dir() == os.path.expanduser('~/.tmuxinator/')
monkeypatch.setenv('HOME', '/moo')
assert cli.get_tmuxinator_dir() == '/moo/.tmuxinator/'
assert cli.get_tmuxinator_dir() == os.path.expanduser('~/.tmuxinator/')
def test_get_cwd(tmpdir):
assert cli.get_cwd() == os.getcwd()
with tmpdir.as_cwd():
assert cli.get_cwd() == str(tmpdir)
assert cli.get_cwd() == os.getcwd()
def test_get_teamocil_dir(monkeypatch):
assert cli.get_teamocil_dir() == os.path.expanduser('~/.teamocil/')
monkeypatch.setenv('HOME', '/moo')
assert cli.get_teamocil_dir() == '/moo/.teamocil/'
assert cli.get_teamocil_dir() == os.path.expanduser('~/.teamocil/')
def test_validate_choices():
validate = cli._validate_choices(['choice1', 'choice2'])
assert validate('choice1')
assert validate('choice2')
with pytest.raises(click.BadParameter):
assert validate('choice3')
def test_pass_config_dir_ClickPath(tmpdir):
configdir = tmpdir.join('myconfigdir')
configdir.mkdir()
user_config_name = 'myconfig'
user_config = configdir.join('%s.yaml' % user_config_name).ensure()
expect = str(configdir.join('myconfig.yaml'))
runner = CliRunner()
@click.command()
@click.argument(
'config',
type=cli.ConfigPath(exists=True, config_dir=(str(configdir))),
nargs=-1,
)
def config_cmd(config):
click.echo(config)
def check_cmd(config_arg):
return runner.invoke(config_cmd, [config_arg]).output
with configdir.as_cwd():
assert expect in check_cmd('myconfig')
assert expect in check_cmd('myconfig.yaml')
assert expect in check_cmd('./myconfig.yaml')
assert str(user_config) in check_cmd(str(configdir.join('myconfig.yaml')))
assert 'file not found' in check_cmd('.tmuxp.json')
def test_ls_cli(monkeypatch, tmpdir):
monkeypatch.setenv("HOME", str(tmpdir))
filenames = [
'.git/',
'.gitignore/',
'session_1.yaml',
'session_2.yaml',
'session_3.json',
'session_4.txt',
]
# should ignore:
# - directories should be ignored
# - extensions not covered in VALID_CONFIG_DIR_FILE_EXTENSIONS
ignored_filenames = ['.git/', '.gitignore/', 'session_4.txt']
stems = [os.path.splitext(f)[0] for f in filenames if f not in ignored_filenames]
for filename in filenames:
location = tmpdir.join('.tmuxp/{}'.format(filename))
if filename.endswith('/'):
location.ensure_dir()
else:
location.ensure()
runner = CliRunner()
cli_output = runner.invoke(command_ls).output
assert cli_output == '\n'.join(stems) + '\n'