forked from conda/conda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_subcommands.py
281 lines (223 loc) · 7.09 KB
/
test_subcommands.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
# Copyright (C) 2012 Anaconda, Inc
# SPDX-License-Identifier: BSD-3-Clause
from __future__ import annotations
import json
from pathlib import Path
import pytest
from conda.common.compat import on_win
from conda.testing import CondaCLIFixture, PathFactoryFixture, TmpEnvFixture
pytestmark = pytest.mark.usefixtures("parametrized_solver_fixture")
@pytest.fixture
def environment_yml(path_factory: PathFactoryFixture) -> Path:
path = path_factory(name="environment.yml")
path.write_text(
"name: scratch\n"
"channels:\n"
" - defaults\n"
"dependencies:\n"
" - ca-certificates=2023\n"
)
return path
def test_clean(conda_cli: CondaCLIFixture):
out, err, code = conda_cli("clean", "--all", "--yes")
assert out
assert not err
assert not code
def test_create(conda_cli: CondaCLIFixture, path_factory: PathFactoryFixture, request):
out, err, code = conda_cli("create", "--prefix", path_factory(), "--yes")
assert out
assert not err
assert not code
def test_compare(
conda_cli: CondaCLIFixture,
tmp_env: TmpEnvFixture,
environment_yml: Path,
):
with tmp_env() as prefix:
out, err, code = conda_cli("compare", "--prefix", prefix, environment_yml)
assert out
assert not err
assert code
def test_config(conda_cli: CondaCLIFixture):
out, err, code = conda_cli("config", "--show-sources")
assert out
assert not err
assert not code
def test_doctor(conda_cli: CondaCLIFixture):
out, err, code = conda_cli("doctor")
assert out
assert not err
assert not code
def test_info(conda_cli: CondaCLIFixture):
out, err, code = conda_cli("info")
assert out
assert not err
assert not code
def test_info_json(conda_cli: CondaCLIFixture):
out1, err, code = conda_cli("info", "--json")
assert json.loads(out1)
assert not err
assert not code
out2, err, code = conda_cli("--json", "info")
assert json.loads(out2)
assert not err
assert not code
assert out1 == out2
def test_init(conda_cli: CondaCLIFixture):
out, err, code = conda_cli("init", "--dry-run")
assert out
assert not err
assert not code
@pytest.mark.benchmark
def test_install(conda_cli: CondaCLIFixture, tmp_env: TmpEnvFixture, request):
with tmp_env() as prefix:
out, err, code = conda_cli(
"install",
*("--prefix", prefix),
"ca-certificates",
"--yes",
)
assert out
assert not err
assert not code
@pytest.mark.benchmark
def test_list(conda_cli: CondaCLIFixture, tmp_env: TmpEnvFixture):
with tmp_env("ca-certificates") as prefix:
out, err, code = conda_cli("list", "--prefix", prefix)
assert out
assert not err
assert not code
def test_notices(conda_cli: CondaCLIFixture):
out, err, code = conda_cli("notices")
assert out
assert not err
assert not code
def test_package(conda_cli: CondaCLIFixture, tmp_env: TmpEnvFixture):
with tmp_env() as prefix:
out, err, code = conda_cli("package", "--prefix", prefix)
assert out
assert not err
assert not code
@pytest.mark.parametrize("subcommand", ["remove", "uninstall"])
def test_remove(subcommand: str, conda_cli: CondaCLIFixture, tmp_env: TmpEnvFixture):
with tmp_env() as prefix:
out, err, code = conda_cli(subcommand, "--prefix", prefix, "--all", "--yes")
assert out
assert not err
assert not code
@pytest.mark.parametrize("subcommand", ["remove", "uninstall"])
def test_remove_all_json(
subcommand: str, conda_cli: CondaCLIFixture, tmp_env: TmpEnvFixture
):
# Test that the json output is valid
# regression test for #13019
with tmp_env("ca-certificates") as prefix:
out, err, code = conda_cli(subcommand, "--prefix", prefix, "--all", "--json")
json_obj = json.loads(out)
assert "UNLINK" in json_obj["actions"]
assert not err
assert not code
def test_rename(
conda_cli: CondaCLIFixture,
tmp_env: TmpEnvFixture,
path_factory: PathFactoryFixture,
):
with tmp_env() as prefix:
out, err, code = conda_cli("rename", "--prefix", prefix, path_factory())
assert out
assert not err
assert not code
@pytest.mark.benchmark
def test_run(conda_cli: CondaCLIFixture, tmp_env: TmpEnvFixture):
with tmp_env("m2-patch" if on_win else "patch") as prefix:
out, err, code = conda_cli("run", "--prefix", prefix, "patch", "--help")
assert out
assert not err
assert not code
def test_search(conda_cli: CondaCLIFixture):
out, err, code = conda_cli("search", "python")
assert out
assert not err
assert not code
@pytest.mark.parametrize("subcommand", ["update", "upgrade"])
@pytest.mark.benchmark
def test_update(
subcommand: str, conda_cli: CondaCLIFixture, tmp_env: TmpEnvFixture, request
):
with tmp_env("ca-certificates<2023") as prefix:
out, err, code = conda_cli(subcommand, "--prefix", prefix, "--all", "--yes")
assert out
assert not err
assert not code
def test_env_list(conda_cli: CondaCLIFixture):
assert conda_cli("env", "list") == conda_cli("info", "--envs")
def test_env_export(conda_cli: CondaCLIFixture):
out, err, code = conda_cli("env", "export")
assert out
assert not err
assert not code
def test_env_remove(conda_cli: CondaCLIFixture, tmp_env: TmpEnvFixture):
with tmp_env() as prefix:
out, err, code = conda_cli("env", "remove", "--prefix", prefix, "--yes")
assert out
assert not err
assert not code
@pytest.mark.benchmark
def test_env_create(
conda_cli: CondaCLIFixture,
path_factory: PathFactoryFixture,
environment_yml: Path,
):
out, err, code = conda_cli(
"env",
"create",
*("--prefix", path_factory()),
*("--file", environment_yml),
)
assert out
assert not err
assert not code
@pytest.mark.benchmark
def test_env_update(
conda_cli: CondaCLIFixture,
tmp_env: TmpEnvFixture,
environment_yml: Path,
):
with tmp_env("ca-certificates<2023") as prefix:
out, err, code = conda_cli(
"env",
"update",
*("--prefix", prefix),
*("--file", environment_yml),
)
assert out
assert not err
assert not code
def test_env_config_vars(conda_cli: CondaCLIFixture, tmp_env: TmpEnvFixture):
with tmp_env() as prefix:
out, err, code = conda_cli(
"env",
"config",
"vars",
"set",
*("--prefix", prefix),
"FOO=foo",
)
assert not out
assert not err
assert not code
out, err, code = conda_cli("env", "config", "vars", "list", "--prefix", prefix)
assert out
assert not err
assert not code
out, err, code = conda_cli(
"env",
"config",
"vars",
"unset",
*("--prefix", prefix),
"FOO",
)
assert not out
assert not err
assert not code