-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathtest_pb_tool.py
More file actions
224 lines (187 loc) · 6.82 KB
/
test_pb_tool.py
File metadata and controls
224 lines (187 loc) · 6.82 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
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
import os
from click.testing import CliRunner
from pb_tool import pb_tool
runner = CliRunner()
MINIMAL_CFG = """
[plugin]
name: TestPlugin
[files]
python_files:
main_dialog:
compiled_ui_files:
resource_files:
extras:
extra_dirs:
locales:
[help]
dir: help/build/html
target: help
"""
def test_validate():
with runner.isolated_filesystem():
with open("pb_tool.cfg", "w") as f:
f.write(MINIMAL_CFG)
result = runner.invoke(pb_tool.cli, ["validate"])
assert result.exit_code == 0
def test_clean():
with runner.isolated_filesystem():
with open("pb_tool.cfg", "w") as f:
f.write(MINIMAL_CFG)
result = runner.invoke(pb_tool.cli, ["clean"])
assert result.exit_code == 0
def test_cleandocs():
result = runner.invoke(pb_tool.cli, ["clean-docs"])
assert result.exit_code == 0
def test_config():
with runner.isolated_filesystem():
result = runner.invoke(
pb_tool.cli,
["config", "--name", "test_from_pytest.cfg", "--package", "testname"],
input="y\n",
)
assert result.exit_code == 0
assert os.path.exists("test_from_pytest.cfg") == 1
def test_create():
with runner.isolated_filesystem():
result = runner.invoke(
pb_tool.cli,
[
"create",
"--name", "my_plugin",
"--class_name", "MyPlugin",
"--title", "My Plugin",
"--description", "A test plugin",
"--author", "Test Author",
"--email", "test@example.com",
],
)
assert result.exit_code == 0
def test_create_processing_files():
"""create --type processing produces the expected files with substituted content."""
with runner.isolated_filesystem():
result = runner.invoke(
pb_tool.cli,
[
"create",
"--type", "processing",
"--name", "my_plugin",
"--class_name", "MyPlugin",
"--title", "My Plugin",
"--description", "A test plugin",
"--author", "Test Author",
"--email", "test@example.com",
],
)
assert result.exit_code == 0
for expected in [
os.path.join("my_plugin", "__init__.py"),
os.path.join("my_plugin", "my_plugin.py"),
os.path.join("my_plugin", "my_plugin_algorithm.py"),
os.path.join("my_plugin", "my_plugin_provider.py"),
os.path.join("my_plugin", "README.md"),
os.path.join("my_plugin", "pb_tool.cfg"),
]:
assert os.path.exists(expected), f"{expected} was not created"
with open(os.path.join("my_plugin", "my_plugin.py")) as f:
content = f.read()
assert "MyPlugin" in content
assert "Test Author" in content
assert "$Template" not in content
def test_create_dialog_files():
"""create --type dialog produces the expected files with substituted content."""
with runner.isolated_filesystem():
result = runner.invoke(
pb_tool.cli,
[
"create",
"--type", "dialog",
"--name", "my_plugin",
"--class_name", "MyPlugin",
"--title", "My Plugin",
"--description", "A test plugin",
"--author", "Test Author",
"--email", "test@example.com",
],
)
assert result.exit_code == 0
for expected in [
os.path.join("my_plugin", "__init__.py"),
os.path.join("my_plugin", "my_plugin.py"),
os.path.join("my_plugin", "my_plugin_dialog.py"),
os.path.join("my_plugin", "my_plugin_dialog_base.ui"),
os.path.join("my_plugin", "icon.png"),
os.path.join("my_plugin", "README.md"),
os.path.join("my_plugin", "pb_tool.cfg"),
]:
assert os.path.exists(expected), f"{expected} was not created"
with open(os.path.join("my_plugin", "my_plugin_dialog.py")) as f:
content = f.read()
assert "MyPlugin" in content
assert "$Template" not in content
def test_create_dockwidget_files():
"""create --type dockwidget produces the expected files with substituted content."""
with runner.isolated_filesystem():
result = runner.invoke(
pb_tool.cli,
[
"create",
"--type", "dockwidget",
"--name", "my_plugin",
"--class_name", "MyPlugin",
"--title", "My Plugin",
"--description", "A test plugin",
"--author", "Test Author",
"--email", "test@example.com",
],
)
assert result.exit_code == 0
for expected in [
os.path.join("my_plugin", "__init__.py"),
os.path.join("my_plugin", "my_plugin.py"),
os.path.join("my_plugin", "my_plugin_dockwidget.py"),
os.path.join("my_plugin", "my_plugin_dockwidget_base.ui"),
os.path.join("my_plugin", "icon.png"),
os.path.join("my_plugin", "README.md"),
os.path.join("my_plugin", "pb_tool.cfg"),
]:
assert os.path.exists(expected), f"{expected} was not created"
with open(os.path.join("my_plugin", "my_plugin_dockwidget.py")) as f:
content = f.read()
assert "MyPlugin" in content
assert "$Template" not in content
def test_doc():
result = runner.invoke(pb_tool.cli, ["doc"])
assert result.exit_code == 0
def test_deploy():
with runner.isolated_filesystem():
with open("pb_tool.cfg", "w") as f:
f.write(MINIMAL_CFG)
result = runner.invoke(pb_tool.cli, ["deploy"], input="y\n")
assert result.exit_code == 0
def test_zip():
with runner.isolated_filesystem():
with open("pb_tool.cfg", "w") as f:
f.write(MINIMAL_CFG)
result = runner.invoke(pb_tool.cli, ["zip"], input="y\n")
assert result.exit_code == 0
def test_dclean():
with runner.isolated_filesystem():
with open("pb_tool.cfg", "w") as f:
f.write(MINIMAL_CFG)
result = runner.invoke(pb_tool.cli, ["dclean"], input="y\n")
assert result.exit_code == 0
def test_list():
result = runner.invoke(pb_tool.cli, ["list"])
assert result.exit_code == 0
def test_update():
result = runner.invoke(pb_tool.cli, ["update"])
assert result.exit_code == 0
def test_version():
result = runner.invoke(pb_tool.cli, ["version"])
assert result.exit_code == 0
def test_compile():
with runner.isolated_filesystem():
with open("pb_tool.cfg", "w") as f:
f.write(MINIMAL_CFG)
result = runner.invoke(pb_tool.cli, ["compile"])
assert result.exit_code == 0