mirror of
https://github.com/YunoHost/package_linter.git
synced 2024-09-03 20:06:12 +02:00
Flag set/get of is_public as warning ... is_public is really supposed to be only about initializing the perms ... Also add some advice about no need to temporarily add/remove visitors to the main permission for ynh_local_curl since 4.3
This commit is contained in:
parent
1a3841070d
commit
e1cea41ae8
1 changed files with 9 additions and 2 deletions
|
@ -2062,17 +2062,24 @@ class Script(TestSuite):
|
|||
@test()
|
||||
def set_is_public_setting(self):
|
||||
if self.containsregex(r"ynh_app_setting_set .*is_public.*"):
|
||||
yield Info(
|
||||
yield Warning(
|
||||
"permission system: it should not be needed to save is_public with ynh_app_setting_set ... this setting should only be used during installation to initialize the permission. The admin is likely to manually tweak the permission using YunoHost's interface later."
|
||||
)
|
||||
|
||||
@test(ignore=["install", "_common.sh"])
|
||||
def get_is_public_setting(self):
|
||||
if self.contains("is_public=") or self.contains("$is_public"):
|
||||
yield Info(
|
||||
yield Warning(
|
||||
"permission system: there should be no need to fetch or use $is_public ... is_public should only be used during installation to initialize the permission. The admin is likely to manually tweak the permission using YunoHost's interface later."
|
||||
)
|
||||
|
||||
@test(only=["upgrade"])
|
||||
def temporarily_enable_visitors_during_upgrade(self):
|
||||
if self.containsregex("ynh_permission_update.*add.*visitors") and self.containsregex("ynh_permission_update.*remove.*visitors"):
|
||||
yield Info(
|
||||
"permission system: since Yunohost 4.3, there should be no need to temporarily add 'visitors' to the main permission. ynh_local_curl will temporarily enable visitors access if needed"
|
||||
)
|
||||
|
||||
@test()
|
||||
def set_legacy_permissions(self):
|
||||
if self.containsregex(
|
||||
|
|
Loading…
Reference in a new issue