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
|
import pytest
from briefcase.config import AppConfig
from briefcase.exceptions import BriefcaseConfigError
def test_minimal_AppConfig():
"""A simple config can be defined."""
config = AppConfig(
app_name="myapp",
version="1.2.3",
bundle="org.beeware",
description="A simple app",
sources=["src/myapp", "somewhere/else/interesting", "local_app"],
license={"file": "LICENSE"},
)
# The basic properties have been set.
assert config.app_name == "myapp"
assert config.version == "1.2.3"
assert config.bundle == "org.beeware"
assert config.description == "A simple app"
assert config.requires is None
# Derived properties have been set.
assert config.bundle_name == "myapp"
assert config.bundle_identifier == "org.beeware.myapp"
assert config.formal_name == "myapp"
assert config.class_name == "myapp"
assert config.document_types == {}
# There is no icon of any kind
assert config.icon is None
# The PYTHONPATH is derived correctly
assert config.PYTHONPATH(False) == ["src", "somewhere/else", ""]
# The test mode PYTHONPATH is the same
assert config.PYTHONPATH(True) == ["src", "somewhere/else", ""]
# The object has a meaningful REPL
assert repr(config) == "<org.beeware.myapp v1.2.3 AppConfig>"
def test_extra_attrs():
"""A config can contain attributes in addition to those required."""
config = AppConfig(
app_name="myapp",
formal_name="My App!",
version="1.2.3",
bundle="org.beeware",
description="A simple app",
long_description="A longer description\nof the app",
license={"file": "LICENSE"},
template="/path/to/template",
sources=["src/myapp"],
requires=["first", "second", "third"],
document_type={
"document": {
"icon": "icon",
"extension": "doc",
"description": "A document",
"url": "https://testurl.com",
}
},
first="value 1",
second=42,
)
# The basic properties have been set.
assert config.app_name == "myapp"
assert config.version == "1.2.3"
assert config.bundle == "org.beeware"
assert config.description == "A simple app"
assert config.long_description == "A longer description\nof the app"
assert config.template == "/path/to/template"
assert config.requires == ["first", "second", "third"]
# Properties that are derived by default have been set explicitly
assert config.formal_name == "My App!"
assert config.class_name == "MyApp"
assert config.document_types == {
"document": {
"icon": "icon",
"extension": "doc",
"description": "A document",
"url": "https://testurl.com",
}
}
# Explicit additional properties have been set
assert config.first == "value 1"
assert config.second == 42
# An attribute that wasn't provided raises an error
with pytest.raises(AttributeError):
_ = config.unknown
@pytest.mark.parametrize(
"name",
[
"myapp", # lowercase
"myApp", # contains uppercase
"MyApp", # initial uppercase
"MyAPP", # ends in uppercase
"my-app", # contains hyphen
"my_app", # contains underscore
"myapp2", # ends with digit
"my2app", # contains digit
],
)
def test_valid_app_name(name):
try:
AppConfig(
app_name=name,
version="1.2.3",
bundle="org.beeware",
description="A simple app",
sources=["src/" + name.replace("-", "_")],
license={"file": "LICENSE"},
)
except BriefcaseConfigError:
pytest.fail(f"{name} should be valid")
@pytest.mark.parametrize(
"name",
[
"!myapp", # initial punctuation
"my!app", # contains punctuation
"myapp!", # end punctuation
"my$app", # other punctuation
"-myApp", # initial hyphen
"myApp-", # end hyphen
"_myApp", # initial underscore
"myApp_", # end underscore
],
)
def test_invalid_app_name(name):
with pytest.raises(BriefcaseConfigError, match=r"is not a valid app name\."):
AppConfig(
app_name=name,
version="1.2.3",
bundle="org.beeware",
description="A simple app",
sources=["src/invalid"],
license={"file": "LICENSE"},
)
@pytest.mark.parametrize(
"bundle",
[
"com.example",
"com.example.more",
"com.example42.more",
"com.example-42.more",
],
)
def test_valid_bundle(bundle):
try:
AppConfig(
app_name="myapp",
version="1.2.3",
bundle=bundle,
description="A simple app",
sources=["src/myapp"],
license={"file": "LICENSE"},
)
except BriefcaseConfigError:
pytest.fail(f"{bundle} should be valid")
@pytest.mark.parametrize(
"bundle",
[
"not a bundle!", # Free text.
"home", # Only one section.
"com.hello_world", # underscore
"com.hello,world", # comma
"com.hello world!", # exclamation point
],
)
def test_invalid_bundle_identifier(bundle):
with pytest.raises(
BriefcaseConfigError, match=r"is not a valid bundle identifier\."
):
AppConfig(
app_name="myapp",
version="1.2.3",
bundle=bundle,
description="A simple app",
sources=["src/invalid"],
license={"file": "LICENSE"},
)
def test_valid_app_version():
try:
AppConfig(
app_name="myapp",
version="1.2.3",
bundle="org.beeware",
description="A simple app",
sources=["src/myapp"],
license={"file": "LICENSE"},
)
except BriefcaseConfigError:
pytest.fail("1.2.3 should be a valid version number")
def test_invalid_app_version():
with pytest.raises(
BriefcaseConfigError,
match=r"Version number for 'myapp' \(foobar\) is not valid\.",
):
AppConfig(
app_name="myapp",
version="foobar",
bundle="org.beeware",
description="A simple app",
sources=["src/invalid"],
license={"file": "LICENSE"},
)
@pytest.mark.parametrize(
"name, module_name",
[
("myapp", "myapp"),
("my-app", "my_app"),
],
)
def test_module_name(name, module_name):
config = AppConfig(
app_name=name,
version="1.2.3",
bundle="org.beeware",
description="A simple app",
sources=["src/" + module_name],
license={"file": "LICENSE"},
)
assert config.module_name == module_name
@pytest.mark.parametrize(
"bundle, package_name",
[
("com.example", "com.example"),
("com.ex-ample", "com.ex_ample"),
],
)
def test_package_name(bundle, package_name):
config = AppConfig(
app_name="myapp",
version="1.2.3",
bundle=bundle,
description="A simple app",
sources=["src/myapp"],
license={"file": "LICENSE"},
)
assert config.package_name == package_name
@pytest.mark.parametrize(
"app_name, bundle_name",
[
("my-app", "my-app"),
("my_app", "my-app"),
],
)
def test_bundle_name(app_name, bundle_name):
config = AppConfig(
app_name=app_name,
version="1.2.3",
bundle="com.example",
description="A simple app",
sources=["src/my_app"],
license={"file": "LICENSE"},
)
assert config.bundle_name == bundle_name
@pytest.mark.parametrize(
"app_name, bundle_name",
[
("my-app", "my-app"),
("my_app", "my-app"),
],
)
def test_bundle_identifier(app_name, bundle_name):
bundle = "com.example"
config = AppConfig(
app_name=app_name,
version="1.2.3",
bundle=bundle,
description="A simple app",
sources=["src/my_app"],
license={"file": "LICENSE"},
)
assert config.bundle_identifier == f"{bundle}.{bundle_name}"
@pytest.mark.parametrize(
"sources",
[
["src/dupe", "src/dupe"],
["src/dupe", "src/other", "src/dupe"],
["src/dupe", "somewhere/dupe", "src/other"],
["src/dupe", "src/deep/dupe", "src/other"],
],
)
def test_duplicated_source(sources):
with pytest.raises(
BriefcaseConfigError, match=r"contains duplicated package names\."
):
AppConfig(
app_name="dupe",
version="1.2.3",
bundle="org.beeware",
description="A simple app",
sources=sources,
license={"file": "LICENSE"},
)
def test_no_source_for_app():
with pytest.raises(
BriefcaseConfigError, match=r" does not include a package named 'my_app'\."
):
AppConfig(
app_name="my-app",
version="1.2.3",
bundle="org.beeware",
description="A simple app",
sources=["src/something", "src/other"],
license={"file": "LICENSE"},
)
|