-
Notifications
You must be signed in to change notification settings - Fork 232
/
Copy pathtest_cli.py
1337 lines (1075 loc) · 38.4 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
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
"""Test for tmuxp command line interface."""
import json
import os
import pathlib
from unittest.mock import MagicMock
import pytest
import click
import kaptan
from click.testing import CliRunner
import libtmux
from libtmux.common import has_lt_version
from libtmux.exc import LibTmuxException
from tmuxp import cli, config, exc
from tmuxp.cli import (
_load_append_windows_to_current_session,
_load_attached,
_reattach,
command_debug_info,
command_ls,
get_config_dir,
is_pure_name,
load_plugins,
load_workspace,
scan_config,
)
from tmuxp.workspacebuilder import WorkspaceBuilder
from .fixtures._util import FIXTURE_PATH, load_fixture
def test_creates_config_dir_not_exists(tmp_path: pathlib.Path):
"""cli.startup() creates config dir if not exists."""
cli.startup(tmp_path)
assert os.path.exists(tmp_path)
def test_in_dir_from_config_dir(tmp_path: pathlib.Path):
"""config.in_dir() finds configs config dir."""
cli.startup(tmp_path)
yaml_config = tmp_path / "myconfig.yaml"
yaml_config.touch()
json_config = tmp_path / "myconfig.json"
json_config.touch()
configs_found = config.in_dir(tmp_path)
assert len(configs_found) == 2
def test_ignore_non_configs_from_current_dir(tmp_path: pathlib.Path):
"""cli.in_dir() ignore non-config from config dir."""
cli.startup(tmp_path)
junk_config = tmp_path / "myconfig.psd"
junk_config.touch()
conf = tmp_path / "watmyconfig.json"
conf.touch()
configs_found = config.in_dir(tmp_path)
assert len(configs_found) == 1
def test_get_configs_cwd(tmp_path: pathlib.Path, monkeypatch: pytest.MonkeyPatch):
"""config.in_cwd() find config in shell current working directory."""
confdir = tmp_path / "tmuxpconf2"
confdir.mkdir()
monkeypatch.chdir(confdir)
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(tmp_path: pathlib.Path):
home = tmp_path / "home"
home.mkdir()
return home
@pytest.fixture
def configdir(homedir):
conf = homedir / ".tmuxp"
conf.mkdir()
return conf
@pytest.fixture
def projectdir(homedir):
proj = homedir / "work" / "project"
proj.mkdir(parents=True)
return proj
def test_tmuxp_configdir_env_var(tmp_path: pathlib.Path, monkeypatch):
monkeypatch.setenv("TMUXP_CONFIGDIR", str(tmp_path))
assert get_config_dir() == str(tmp_path)
def test_tmuxp_configdir_xdg_config_dir(tmp_path: pathlib.Path, monkeypatch):
monkeypatch.setenv("XDG_CONFIG_HOME", str(tmp_path))
tmux_dir = tmp_path / "tmuxp"
tmux_dir.mkdir()
assert get_config_dir() == str(tmux_dir)
def test_resolve_dot(
tmp_path: pathlib.Path,
homedir: pathlib.Path,
configdir: pathlib.Path,
projectdir: pathlib.Path,
monkeypatch: pytest.MonkeyPatch,
):
monkeypatch.setenv("HOME", str(homedir))
monkeypatch.setenv("XDG_CONFIG_HOME", str(homedir / ".config"))
tmuxp_conf_path = projectdir / ".tmuxp.yaml"
tmuxp_conf_path.touch()
user_config_name = "myconfig"
user_config = configdir / f"{user_config_name}.yaml"
user_config.touch()
project_config = tmuxp_conf_path
monkeypatch.chdir(projectdir)
expect = str(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")
monkeypatch.chdir(homedir)
expect = str(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")
monkeypatch.chdir(configdir)
expect = str(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")
monkeypatch.chdir(tmp_path)
expect = str(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: pytest.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))
tmuxp_config_path = projectdir / ".tmuxp.yaml"
tmuxp_config_path.touch()
user_config_name = "myconfig"
user_config = configdir / f"{user_config_name}.yaml"
user_config.touch()
project_config = projectdir / ".tmuxp.yaml"
def check_cmd(config_arg):
return runner.invoke(config_cmd, [config_arg]).output
monkeypatch.chdir(projectdir)
expect = str(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.stem 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 = FIXTURE_PATH / "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 = FIXTURE_PATH / "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(
tmp_path: pathlib.Path, server, monkeypatch
):
monkeypatch.delenv("TMUX", raising=False)
session_file = FIXTURE_PATH / "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 = tmp_path / "simple.yaml"
projfile.write_text(
"""
session_name: sampleconfi
start_directory: './'
windows:
- panes:
- echo 'hey'""",
encoding="utf-8",
)
# open it detached
session = load_workspace(
str(projfile), socket_name=server.socket_name, detached=True
)
assert session.name == "sampleconfi"
def test_load_symlinked_workspace(server, tmp_path, 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 = tmp_path / "myrealtemp"
realtemp.mkdir()
linktemp = tmp_path / "symlinktemp"
linktemp.symlink_to(realtemp)
projfile = linktemp / "simple.yaml"
projfile.write_text(
"""
session_name: samplesimple
start_directory: './'
windows:
- panes:
- echo 'hey'""",
encoding="utf-8",
)
# open it detached
session = load_workspace(
str(projfile), 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 == str(realtemp)
def test_regression_00132_session_name_with_dots(
tmp_path: pathlib.Path, server, session
):
yaml_config = FIXTURE_PATH / "workspacebuilder" / "regression_00132_dots.yaml"
cli_args = [str(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, tmp_path, monkeypatch):
# create dummy tmuxp yaml so we don't get yelled at
yaml_config = tmp_path / ".tmuxp.yaml"
yaml_config.touch()
oh_my_zsh_path = tmp_path / ".oh-my-zsh"
oh_my_zsh_path.mkdir()
monkeypatch.setenv("HOME", str(tmp_path))
monkeypatch.chdir(tmp_path)
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",
[
(["load", ".", "--log-file", "log.txt"]),
],
)
def test_load_log_file(cli_args, tmp_path, monkeypatch):
# create dummy tmuxp yaml that breaks to prevent actually loading tmux
tmuxp_config_path = tmp_path / ".tmuxp.yaml"
tmuxp_config_path.write_text(
"""
session_name: hello
""",
encoding="utf-8",
)
oh_my_zsh_path = tmp_path / ".oh-my-zsh"
oh_my_zsh_path.mkdir()
monkeypatch.setenv("HOME", str(tmp_path))
monkeypatch.chdir(tmp_path)
print(f"tmp_path: {tmp_path}")
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)
log_file_path = tmp_path / "log.txt"
assert "Loading" in log_file_path.open().read()
@pytest.mark.parametrize("cli_cmd", ["shell", ("shell", "--pdb")])
@pytest.mark.parametrize(
"cli_args,inputs,env,expected_output",
[
(
["-L{SOCKET_NAME}", "-c", "print(str(server.socket_name))"],
[],
{},
"{SERVER_SOCKET_NAME}",
),
(
[
"-L{SOCKET_NAME}",
"{SESSION_NAME}",
"-c",
"print(session.name)",
],
[],
{},
"{SESSION_NAME}",
),
(
[
"-L{SOCKET_NAME}",
"{SESSION_NAME}",
"{WINDOW_NAME}",
"-c",
"print(server.has_session(session.name))",
],
[],
{},
"True",
),
(
[
"-L{SOCKET_NAME}",
"{SESSION_NAME}",
"{WINDOW_NAME}",
"-c",
"print(window.name)",
],
[],
{},
"{WINDOW_NAME}",
),
(
[
"-L{SOCKET_NAME}",
"{SESSION_NAME}",
"{WINDOW_NAME}",
"-c",
"print(pane.id)",
],
[],
{},
"{PANE_ID}",
),
(
[
"-L{SOCKET_NAME}",
"-c",
"print(pane.id)",
],
[],
{"TMUX_PANE": "{PANE_ID}"},
"{PANE_ID}",
),
],
)
def test_shell(
cli_cmd,
cli_args,
inputs,
expected_output,
env,
tmp_path,
monkeypatch,
server,
session,
):
monkeypatch.setenv("HOME", str(tmp_path))
window_name = "my_window"
window = session.new_window(window_name=window_name)
window.split_window()
template_ctx = dict(
SOCKET_NAME=server.socket_name,
SOCKET_PATH=server.socket_path,
SESSION_NAME=session.name,
WINDOW_NAME=window_name,
PANE_ID=window.attached_pane.id,
SERVER_SOCKET_NAME=server.socket_name,
)
cli_cmd = list(cli_cmd) if isinstance(cli_cmd, (list, tuple)) else [cli_cmd]
cli_args = cli_cmd + [cli_arg.format(**template_ctx) for cli_arg in cli_args]
for k, v in env.items():
monkeypatch.setenv(k, v.format(**template_ctx))
monkeypatch.chdir(tmp_path)
runner = CliRunner()
result = runner.invoke(
cli.cli, cli_args, input="".join(inputs), catch_exceptions=False
)
assert expected_output.format(**template_ctx) in result.output
@pytest.mark.parametrize(
"cli_cmd",
[
"shell",
("shell", "--pdb"),
],
)
@pytest.mark.parametrize(
"cli_args,inputs,env,template_ctx,exception,message",
[
(
["-LDoesNotExist", "-c", "print(str(server.socket_name))"],
[],
{},
{},
LibTmuxException,
r".*DoesNotExist.*",
),
(
[
"-L{SOCKET_NAME}",
"nonexistant_session",
"-c",
"print(str(server.socket_name))",
],
[],
{},
{"session_name": "nonexistant_session"},
exc.TmuxpException,
"Session not found: nonexistant_session",
),
(
[
"-L{SOCKET_NAME}",
"{SESSION_NAME}",
"nonexistant_window",
"-c",
"print(str(server.socket_name))",
],
[],
{},
{"window_name": "nonexistant_window"},
exc.TmuxpException,
"Window not found: {WINDOW_NAME}",
),
],
)
def test_shell_target_missing(
cli_cmd,
cli_args,
inputs,
env,
template_ctx,
exception,
message,
tmp_path,
monkeypatch,
socket_name,
server,
session,
):
monkeypatch.setenv("HOME", str(tmp_path))
window_name = "my_window"
window = session.new_window(window_name=window_name)
window.split_window()
template_ctx = dict(
SOCKET_NAME=server.socket_name,
SOCKET_PATH=server.socket_path,
SESSION_NAME=session.name,
WINDOW_NAME=template_ctx.get("window_name", window_name),
PANE_ID=template_ctx.get("pane_id"),
SERVER_SOCKET_NAME=server.socket_name,
)
cli_cmd = list(cli_cmd) if isinstance(cli_cmd, (list, tuple)) else [cli_cmd]
cli_args = cli_cmd + [cli_arg.format(**template_ctx) for cli_arg in cli_args]
for k, v in env.items():
monkeypatch.setenv(k, v.format(**template_ctx))
monkeypatch.chdir(tmp_path)
runner = CliRunner()
if exception is not None:
with pytest.raises(exception, match=message.format(**template_ctx)):
result = runner.invoke(
cli.cli, cli_args, input="".join(inputs), catch_exceptions=False
)
else:
result = runner.invoke(
cli.cli, cli_args, input="".join(inputs), catch_exceptions=False
)
assert message.format(**template_ctx) in result.output
@pytest.mark.parametrize(
"cli_cmd",
[
# 'shell',
# ('shell', '--pdb'),
("shell", "--code"),
# ('shell', '--bpython'),
# ('shell', '--ptipython'),
# ('shell', '--ptpython'),
# ('shell', '--ipython'),
],
)
@pytest.mark.parametrize(
"cli_args,inputs,env,message",
[
(
[
"-L{SOCKET_NAME}",
],
[],
{},
"(InteractiveConsole)",
),
(
[
"-L{SOCKET_NAME}",
],
[],
{"PANE_ID": "{PANE_ID}"},
"(InteractiveConsole)",
),
],
)
def test_shell_plus(
cli_cmd,
cli_args,
inputs,
env,
message,
tmp_path,
monkeypatch,
server,
session,
):
monkeypatch.setenv("HOME", str(tmp_path))
window_name = "my_window"
window = session.new_window(window_name=window_name)
window.split_window()
template_ctx = dict(
SOCKET_NAME=server.socket_name,
SOCKET_PATH=server.socket_path,
SESSION_NAME=session.name,
WINDOW_NAME=window_name,
PANE_ID=window.attached_pane.id,
SERVER_SOCKET_NAME=server.socket_name,
)
cli_cmd = list(cli_cmd) if isinstance(cli_cmd, (list, tuple)) else [cli_cmd]
cli_args = cli_cmd + [cli_arg.format(**template_ctx) for cli_arg in cli_args]
for k, v in env.items():
monkeypatch.setenv(k, v.format(**template_ctx))
monkeypatch.chdir(tmp_path)
runner = CliRunner()
result = runner.invoke(
cli.cli, cli_args, input="".join(inputs), catch_exceptions=True
)
assert message.format(**template_ctx) in result.output
@pytest.mark.parametrize(
"cli_args",
[
(["convert", "."]),
(["convert", ".tmuxp.yaml"]),
(["convert", ".tmuxp.yaml", "-y"]),
(["convert", ".tmuxp.yml"]),
(["convert", ".tmuxp.yml", "-y"]),
],
)
def test_convert(cli_args, tmp_path, monkeypatch):
# create dummy tmuxp yaml so we don't get yelled at
filename = cli_args[1]
if filename == ".":
filename = ".tmuxp.yaml"
file_ext = filename.rsplit(".", 1)[-1]
assert file_ext in ["yaml", "yml"], file_ext
config_file_path = tmp_path / filename
config_file_path.write_text("\nsession_name: hello\n", encoding="utf-8")
oh_my_zsh_path = tmp_path / ".oh-my-zsh"
oh_my_zsh_path.mkdir()
monkeypatch.setenv("HOME", str(tmp_path))
monkeypatch.chdir(tmp_path)
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)
tmuxp_json = tmp_path / ".tmuxp.json"
assert tmuxp_json.exists()
assert tmuxp_json.open().read() == json.dumps({"session_name": "hello"}, indent=2)
@pytest.mark.parametrize(
"cli_args",
[
(["convert", "."]),
(["convert", ".tmuxp.json"]),
(["convert", ".tmuxp.json", "-y"]),
],
)
def test_convert_json(cli_args, tmp_path, monkeypatch):
# create dummy tmuxp yaml so we don't get yelled at
json_config = tmp_path / ".tmuxp.json"
json_config.write_text('{"session_name": "hello"}', encoding="utf-8")
oh_my_zsh_path = tmp_path / ".oh-my-zsh"
oh_my_zsh_path.mkdir()
monkeypatch.setenv("HOME", str(tmp_path))
monkeypatch.chdir(tmp_path)
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)
tmuxp_yaml = tmp_path / ".tmuxp.yaml"
assert tmuxp_yaml.exists()
assert tmuxp_yaml.open().read() == "session_name: hello\n"
@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",
[
(["--help"]),
(["-h"]),
],
)
def test_help(cli_args, monkeypatch):
runner = CliRunner()
result = runner.invoke(cli.cli, cli_args)
assert "Usage: cli [OPTIONS] COMMAND [ARGS]..." 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, tmp_path, monkeypatch):
teamocil_config = load_fixture("config_teamocil/test4.yaml")
teamocil_path = tmp_path / ".teamocil"
teamocil_path.mkdir()
teamocil_config_path = teamocil_path / "config.yaml"
teamocil_config_path.write_text(teamocil_config, encoding="utf-8")
exists_yaml = tmp_path / "exists.yaml"
exists_yaml.touch()
monkeypatch.setenv("HOME", str(tmp_path))
monkeypatch.chdir(tmp_path)
runner = CliRunner()
runner.invoke(cli.cli, cli_args, input="".join(inputs))
new_config_yaml = tmp_path / "la.yaml"
assert new_config_yaml.exists()
@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, tmp_path, monkeypatch):
tmuxinator_config = load_fixture("config_tmuxinator/test3.yaml")
tmuxinator_path = tmp_path / ".tmuxinator"
tmuxinator_path.mkdir()
tmuxinator_config_path = tmuxinator_path / "config.yaml"
tmuxinator_config_path.write_text(tmuxinator_config, encoding="utf-8")
exists_yaml = tmp_path / "exists.yaml"
exists_yaml.touch()
monkeypatch.setenv("HOME", str(tmp_path))
monkeypatch.chdir(tmp_path)
runner = CliRunner()
out = runner.invoke(cli.cli, cli_args, input="".join(inputs))
print(out.output)
new_config_yaml = tmp_path / "la.yaml"
assert new_config_yaml.exists()
@pytest.mark.parametrize(
"cli_args,inputs",
[
(["freeze", "myfrozensession"], ["y\n", "./la.yaml\n", "y\n"]),
( # Exists
["freeze", "myfrozensession"],
["y\n", "./exists.yaml\n", "./la.yaml\n", "y\n"],
),
( # Imply current session if not entered
["freeze"],
["y\n", "./la.yaml\n", "y\n"],
),
(["freeze"], ["y\n", "./exists.yaml\n", "./la.yaml\n", "y\n"]), # Exists
],
)
def test_freeze(server, cli_args, inputs, tmp_path, monkeypatch):
monkeypatch.setenv("HOME", str(tmp_path))
exists_yaml = tmp_path / "exists.yaml"
exists_yaml.touch()
server.new_session(session_name="myfirstsession")
server.new_session(session_name="myfrozensession")
# Assign an active pane to the session
second_session = server.list_sessions()[1]
first_pane_on_second_session_id = second_session.list_windows()[0].list_panes()[0][
"pane_id"
]
monkeypatch.setenv("TMUX_PANE", first_pane_on_second_session_id)
monkeypatch.chdir(tmp_path)
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)
yaml_config_path = tmp_path / "la.yaml"
assert yaml_config_path.exists()
yaml_config = yaml_config_path.open().read()
frozen_config = kaptan.Kaptan(handler="yaml").import_config(yaml_config).get()
assert frozen_config["session_name"] == "myfrozensession"
@pytest.mark.parametrize(
"cli_args,inputs",
[
( # Overwrite
["freeze", "mysession", "--force"],
["\n", "y\n", "./exists.yaml\n", "y\n"],
),
( # Imply current session if not entered
["freeze", "--force"],
["\n", "y\n", "./exists.yaml\n", "y\n"],
),
],
)
def test_freeze_overwrite(server, cli_args, inputs, tmp_path, monkeypatch):
monkeypatch.setenv("HOME", str(tmp_path))
exists_yaml = tmp_path / "exists.yaml"
exists_yaml.touch()
server.new_session(session_name="mysession")
monkeypatch.chdir(tmp_path)
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)
yaml_config_path = tmp_path / "exists.yaml"
assert yaml_config_path.exists()