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
|
from unittest import mock
from briefcase.config import AppConfig
def test_no_resources(create_command):
"""If the template defines no extra targets, none are installed."""
myapp = AppConfig(
app_name="my-app",
formal_name="My App",
bundle="com.example",
version="1.2.3",
description="This is a simple app",
sources=["src/my_app"],
license={"file": "LICENSE"},
)
# Prime the path index with no targets
create_command._briefcase_toml[myapp] = {"paths": {}}
install_image = mock.MagicMock()
create_command.install_image = install_image
# Install app resources
create_command.install_app_resources(myapp)
# No icons or document types, so no calls to install images
install_image.assert_not_called()
def test_icon_target(create_command, tmp_path):
"""If the template defines an icon target, it will be installed."""
myapp = AppConfig(
app_name="my-app",
formal_name="My App",
bundle="com.example",
version="1.2.3",
description="This is a simple app",
sources=["src/my_app"],
icon="images/icon",
license={"file": "LICENSE"},
)
# Prime the path index with 2 icon targets
create_command._briefcase_toml[myapp] = {
"paths": {
"icon": {
"10": "path/to/icon-10.png",
"20": "path/to/icon-20.png",
}
}
}
install_image = mock.MagicMock()
create_command.install_image = install_image
# Install app resources
create_command.install_app_resources(myapp)
# 2 calls to install icons will be made
install_image.assert_has_calls(
[
mock.call(
"application icon",
source="images/icon",
variant=None,
size="10",
target=tmp_path
/ "base_path"
/ "build"
/ "my-app"
/ "tester"
/ "dummy"
/ "path"
/ "to"
/ "icon-10.png",
),
mock.call(
"application icon",
source="images/icon",
variant=None,
size="20",
target=tmp_path
/ "base_path"
/ "build"
/ "my-app"
/ "tester"
/ "dummy"
/ "path"
/ "to"
/ "icon-20.png",
),
],
any_order=True,
)
def test_icon_variant_target(create_command, tmp_path):
"""If the template defines an icon target with variants, they will be installed."""
myapp = AppConfig(
app_name="my-app",
formal_name="My App",
bundle="com.example",
version="1.2.3",
description="This is a simple app",
sources=["src/my_app"],
icon={
"round": "images/round",
"square": "images/square",
},
license={"file": "LICENSE"},
)
# Prime the path index with 2 icon targets
create_command._briefcase_toml[myapp] = {
"paths": {
"icon": {
"round": "path/to/round.png",
"square": {
"10": "path/to/square-10.png",
"20": "path/to/square-20.png",
},
}
}
}
install_image = mock.MagicMock()
create_command.install_image = install_image
# Install app resources
create_command.install_app_resources(myapp)
# 3 calls to install icons will be made
install_image.assert_has_calls(
[
mock.call(
"application icon",
source={"round": "images/round", "square": "images/square"},
variant=None,
size="round", # This is expected for unsized variants
target=tmp_path
/ "base_path"
/ "build"
/ "my-app"
/ "tester"
/ "dummy"
/ "path"
/ "to"
/ "round.png",
),
mock.call(
"application icon",
source={"round": "images/round", "square": "images/square"},
variant="square",
size="10",
target=tmp_path
/ "base_path"
/ "build"
/ "my-app"
/ "tester"
/ "dummy"
/ "path"
/ "to"
/ "square-10.png",
),
mock.call(
"application icon",
source={"round": "images/round", "square": "images/square"},
variant="square",
size="20",
target=tmp_path
/ "base_path"
/ "build"
/ "my-app"
/ "tester"
/ "dummy"
/ "path"
/ "to"
/ "square-20.png",
),
],
any_order=True,
)
def test_splash_target(create_command, capsys):
"""If the template defines a splash target, a warning will be raised."""
myapp = AppConfig(
app_name="my-app",
formal_name="My App",
bundle="com.example",
version="1.2.3",
description="This is a simple app",
sources=["src/my_app"],
splash="images/splash",
license={"file": "LICENSE"},
)
# Prime an empty path index
create_command._briefcase_toml[myapp] = {"paths": {}}
install_image = mock.MagicMock()
create_command.install_image = install_image
# Install app resources
create_command.install_app_resources(myapp)
# No calls to install splashes are made
install_image.assert_not_called()
# A warning about the splash configuration was raised.
assert "The splash configuration will be ignored." in capsys.readouterr().out
def test_splash_variant_target(create_command, capsys):
"""If the template defines a splash target with variants, a warning is raised."""
myapp = AppConfig(
app_name="my-app",
formal_name="My App",
bundle="com.example",
version="1.2.3",
description="This is a simple app",
sources=["src/my_app"],
splash={
"portrait": "images/portrait",
"landscape": "images/landscape",
},
license={"file": "LICENSE"},
)
# Prime an empty path index
create_command._briefcase_toml[myapp] = {"paths": {}}
install_image = mock.MagicMock()
create_command.install_image = install_image
# Install app resources
create_command.install_app_resources(myapp)
# No calls to install splashes are made
install_image.assert_not_called()
# A warning about the splash configuration was raised.
assert "The splash configuration will be ignored." in capsys.readouterr().out
def test_doctype_icon_target(create_command, tmp_path):
"""If the template defines document types, their icons will be installed."""
myapp = AppConfig(
app_name="my-app",
formal_name="My App",
bundle="com.example",
version="1.2.3",
description="This is a simple app",
sources=["src/my_app"],
document_type={
"mydoc": {
"icon": "images/mydoc-icon",
"description": "mydoc image",
"url": "https://testexample.com",
"extension": "mydoc",
},
"other": {
"icon": "images/other-icon",
"description": "other image",
"url": "https://othertestexample.com",
"extension": "other",
},
},
license={"file": "LICENSE"},
)
# Prime the path index with 2 document types;
# * mydoc, which has a single static image; and
# * other, which has multiple size targets.
create_command._briefcase_toml[myapp] = {
"paths": {
"document_type_icon": {
"mydoc": "path/to/mydoc-icon.png",
"other": {
"10": "path/to/other-icon-10.png",
"20": "path/to/other-icon-20.png",
},
}
}
}
install_image = mock.MagicMock()
create_command.install_image = install_image
# Install app resources
create_command.install_app_resources(myapp)
# 2 calls to install doctype icon images will be made
install_image.assert_has_calls(
[
mock.call(
"icon for .mydoc documents",
source="images/mydoc-icon",
variant=None,
size=None,
target=tmp_path
/ "base_path"
/ "build"
/ "my-app"
/ "tester"
/ "dummy"
/ "path"
/ "to"
/ "mydoc-icon.png",
),
mock.call(
"icon for .other documents",
source="images/other-icon",
variant=None,
size="10",
target=tmp_path
/ "base_path"
/ "build"
/ "my-app"
/ "tester"
/ "dummy"
/ "path"
/ "to"
/ "other-icon-10.png",
),
mock.call(
"icon for .other documents",
source="images/other-icon",
variant=None,
size="20",
target=tmp_path
/ "base_path"
/ "build"
/ "my-app"
/ "tester"
/ "dummy"
/ "path"
/ "to"
/ "other-icon-20.png",
),
],
any_order=True,
)
|