forked from theskumar/python-dotenv
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_cli.py
More file actions
162 lines (100 loc) · 4.19 KB
/
test_cli.py
File metadata and controls
162 lines (100 loc) · 4.19 KB
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
# -*- coding: utf-8 -*-
import pytest
import sh
import dotenv
from dotenv.cli import cli as dotenv_cli
from dotenv.version import __version__
def test_list(cli, dotenv_file):
with open(dotenv_file, "w") as f:
f.write("a=b")
result = cli.invoke(dotenv_cli, ['--file', dotenv_file, 'list'])
assert (result.exit_code, result.output) == (0, result.output)
def test_list_non_existent_file(cli):
result = cli.invoke(dotenv_cli, ['--file', 'nx_file', 'list'])
assert result.exit_code == 2, result.output
assert "Invalid value for '-f'" in result.output
def test_list_no_file(cli):
result = cli.invoke(dotenv.cli.list, [])
assert (result.exit_code, result.output) == (1, "")
def test_get_existing_value(cli, dotenv_file):
with open(dotenv_file, "w") as f:
f.write("a=b")
result = cli.invoke(dotenv_cli, ['--file', dotenv_file, 'get', 'a'])
assert (result.exit_code, result.output) == (0, "a=b\n")
def test_get_non_existent_value(cli, dotenv_file):
result = cli.invoke(dotenv_cli, ['--file', dotenv_file, 'get', 'a'])
assert (result.exit_code, result.output) == (1, "")
def test_get_no_file(cli):
result = cli.invoke(dotenv_cli, ['--file', 'nx_file', 'get', 'a'])
assert result.exit_code == 2
assert "Invalid value for '-f'" in result.output
def test_unset_existing_value(cli, dotenv_file):
with open(dotenv_file, "w") as f:
f.write("a=b")
result = cli.invoke(dotenv_cli, ['--file', dotenv_file, 'unset', 'a'])
assert (result.exit_code, result.output) == (0, "Successfully removed a\n")
assert open(dotenv_file, "r").read() == ""
def test_unset_non_existent_value(cli, dotenv_file):
result = cli.invoke(dotenv_cli, ['--file', dotenv_file, 'unset', 'a'])
assert (result.exit_code, result.output) == (1, "")
assert open(dotenv_file, "r").read() == ""
@pytest.mark.parametrize(
"quote_mode,variable,value,expected",
(
("always", "HELLO", "WORLD", 'HELLO="WORLD"\n'),
("never", "HELLO", "WORLD", 'HELLO=WORLD\n'),
("auto", "HELLO", "WORLD", 'HELLO=WORLD\n'),
("auto", "HELLO", "HELLO WORLD", 'HELLO="HELLO WORLD"\n'),
)
)
def test_set_options(cli, dotenv_file, quote_mode, variable, value, expected):
result = cli.invoke(
dotenv_cli,
["--file", dotenv_file, "--quote", quote_mode, "set", variable, value]
)
assert (result.exit_code, result.output) == (0, "{}={}\n".format(variable, value))
assert open(dotenv_file, "r").read() == expected
def test_set_non_existent_file(cli):
result = cli.invoke(dotenv.cli.set, ["a", "b"])
assert (result.exit_code, result.output) == (1, "")
def test_set_no_file(cli):
result = cli.invoke(dotenv_cli, ["--file", "nx_file", "set"])
assert result.exit_code == 2
assert "Invalid value for '-f'" in result.output
def test_get_default_path(tmp_path):
sh.cd(str(tmp_path))
with open(str(tmp_path / ".env"), "w") as f:
f.write("a=b")
result = sh.dotenv("get", "a")
assert result == "a=b\n"
def test_run(tmp_path):
sh.cd(str(tmp_path))
dotenv_file = str(tmp_path / ".env")
with open(dotenv_file, "w") as f:
f.write("a=b")
result = sh.dotenv("run", "printenv", "a")
assert result == "b\n"
def test_run_with_none_value(tmp_path):
sh.cd(str(tmp_path))
dotenv_file = str(tmp_path / ".env")
with open(dotenv_file, "w") as f:
f.write("a=b\nc")
result = sh.dotenv("run", "printenv", "a")
assert result == "b\n"
def test_run_with_other_env(dotenv_file):
with open(dotenv_file, "w") as f:
f.write("a=b")
result = sh.dotenv("--file", dotenv_file, "run", "printenv", "a")
assert result == "b\n"
def test_run_without_cmd(cli):
result = cli.invoke(dotenv_cli, ['run'])
assert result.exit_code == 2
assert "Invalid value for '-f'" in result.output
def test_run_with_invalid_cmd(cli):
result = cli.invoke(dotenv_cli, ['run', 'i_do_not_exist'])
assert result.exit_code == 2
assert "Invalid value for '-f'" in result.output
def test_run_with_version(cli):
result = cli.invoke(dotenv_cli, ['--version'])
assert result.exit_code == 0
assert result.output.strip().endswith(__version__)