mirror of
https://github.com/YunoHost/package_linter.git
synced 2024-09-03 20:06:12 +02:00
Warning -> Info for not-so-important-warnings
This commit is contained in:
parent
8970d3b960
commit
fe90e3acec
1 changed files with 14 additions and 30 deletions
|
@ -361,24 +361,8 @@ class App(TestSuite):
|
||||||
if any(isinstance(report, Error) for _, report in tests_reports):
|
if any(isinstance(report, Error) for _, report in tests_reports):
|
||||||
return
|
return
|
||||||
|
|
||||||
non_mandatory_warnings = [
|
# If any warning, nope
|
||||||
"helpers_now_official",
|
if any(isinstance(report, Warning) for test_report in tests_reports):
|
||||||
"sed",
|
|
||||||
"url",
|
|
||||||
"sudo",
|
|
||||||
"progression_meaningful_weights",
|
|
||||||
"license",
|
|
||||||
"chmod777",
|
|
||||||
"check_process_consistency",
|
|
||||||
"check_process_syntax",
|
|
||||||
]
|
|
||||||
|
|
||||||
def is_important_warning(test_report):
|
|
||||||
test, report = test_report
|
|
||||||
return isinstance(report, Warning) and test.split(".")[1] not in non_mandatory_warnings
|
|
||||||
|
|
||||||
# If any warning (except the non-mandatory ones), nope
|
|
||||||
if any(is_important_warning(test_report) for test_report in tests_reports):
|
|
||||||
return
|
return
|
||||||
|
|
||||||
# Last condition is to be long-term good quality
|
# Last condition is to be long-term good quality
|
||||||
|
@ -434,7 +418,7 @@ class App(TestSuite):
|
||||||
|
|
||||||
for custom_helper in custom_helpers:
|
for custom_helper in custom_helpers:
|
||||||
if custom_helper in official_helpers.keys():
|
if custom_helper in official_helpers.keys():
|
||||||
yield Warning("%s is now an official helper since version '%s'" % (custom_helper, official_helpers[custom_helper] or '?'))
|
yield Info("%s is now an official helper since version '%s'" % (custom_helper, official_helpers[custom_helper] or '?'))
|
||||||
|
|
||||||
@test()
|
@test()
|
||||||
def helpers_version_requirement(app):
|
def helpers_version_requirement(app):
|
||||||
|
@ -557,7 +541,7 @@ class Configurations(TestSuite):
|
||||||
yield Error("Do not force Level 5=1 in check_process...")
|
yield Error("Do not force Level 5=1 in check_process...")
|
||||||
|
|
||||||
if os.system("grep -q ' *Level [^5]=' '%s'" % check_process_file) == 0:
|
if os.system("grep -q ' *Level [^5]=' '%s'" % check_process_file) == 0:
|
||||||
yield Warning("Setting Level x=y in check_process is obsolete / not relevant anymore")
|
yield Info("Setting Level x=y in check_process is obsolete / not relevant anymore")
|
||||||
|
|
||||||
@test()
|
@test()
|
||||||
def check_process_consistency(self):
|
def check_process_consistency(self):
|
||||||
|
@ -571,23 +555,23 @@ class Configurations(TestSuite):
|
||||||
has_is_public_arg = any(a["name"] == "is_public" for a in app.manifest["arguments"].get("install", []))
|
has_is_public_arg = any(a["name"] == "is_public" for a in app.manifest["arguments"].get("install", []))
|
||||||
if has_is_public_arg:
|
if has_is_public_arg:
|
||||||
if os.system(r"grep -q '^\s*setup_public=1' '%s'" % check_process_file) != 0:
|
if os.system(r"grep -q '^\s*setup_public=1' '%s'" % check_process_file) != 0:
|
||||||
yield Warning("It looks like you forgot to enable setup_public test in check_process ?")
|
yield Info("It looks like you forgot to enable setup_public test in check_process ?")
|
||||||
|
|
||||||
if os.system(r"grep -q '^\s*setup_private=1' '%s'" % check_process_file) != 0:
|
if os.system(r"grep -q '^\s*setup_private=1' '%s'" % check_process_file) != 0:
|
||||||
yield Warning("It looks like you forgot to enable setup_private test in check_process ?")
|
yield Info("It looks like you forgot to enable setup_private test in check_process ?")
|
||||||
|
|
||||||
has_path_arg = any(a["name"] == "path" for a in app.manifest["arguments"].get("install", []))
|
has_path_arg = any(a["name"] == "path" for a in app.manifest["arguments"].get("install", []))
|
||||||
if has_path_arg:
|
if has_path_arg:
|
||||||
if os.system(r"grep -q '^\s*setup_sub_dir=1' '%s'" % check_process_file) != 0:
|
if os.system(r"grep -q '^\s*setup_sub_dir=1' '%s'" % check_process_file) != 0:
|
||||||
yield Warning("It looks like you forgot to enable setup_sub_dir test in check_process ?")
|
yield Info("It looks like you forgot to enable setup_sub_dir test in check_process ?")
|
||||||
|
|
||||||
if app.manifest.get("multi_instance") in [True, 1, "True", "true"]:
|
if app.manifest.get("multi_instance") in [True, 1, "True", "true"]:
|
||||||
if os.system(r"grep -q '^\s*multi_instance=1' '%s'" % check_process_file) != 0:
|
if os.system(r"grep -q '^\s*multi_instance=1' '%s'" % check_process_file) != 0:
|
||||||
yield Warning("It looks like you forgot to enable multi_instance test in check_process ?")
|
yield Info("It looks like you forgot to enable multi_instance test in check_process ?")
|
||||||
|
|
||||||
if app.scripts["backup"].exists:
|
if app.scripts["backup"].exists:
|
||||||
if os.system(r"grep -q '^\s*backup_restore=1' '%s'" % check_process_file) != 0:
|
if os.system(r"grep -q '^\s*backup_restore=1' '%s'" % check_process_file) != 0:
|
||||||
yield Warning("It looks like you forgot to enable backup_restore test in check_process ?")
|
yield Info("It looks like you forgot to enable backup_restore test in check_process ?")
|
||||||
|
|
||||||
@test()
|
@test()
|
||||||
def misc_legacy_phpini(self):
|
def misc_legacy_phpini(self):
|
||||||
|
@ -943,7 +927,7 @@ class Manifest(TestSuite):
|
||||||
@test()
|
@test()
|
||||||
def url(self):
|
def url(self):
|
||||||
if self.manifest.get("url", "").endswith("_ynh"):
|
if self.manifest.get("url", "").endswith("_ynh"):
|
||||||
yield Warning(
|
yield Info(
|
||||||
"'url' is not meant to be the url of the yunohost package, "
|
"'url' is not meant to be the url of the yunohost package, "
|
||||||
"but rather the website or repo of the upstream app itself..."
|
"but rather the website or repo of the upstream app itself..."
|
||||||
)
|
)
|
||||||
|
@ -1333,12 +1317,12 @@ class Script(TestSuite):
|
||||||
@test()
|
@test()
|
||||||
def sed(self):
|
def sed(self):
|
||||||
if self.containsregex(r"sed\s+(-i|--in-place)\s+(-r\s+)?s") or self.containsregex(r"sed\s+s\S*\s+(-i|--in-place)"):
|
if self.containsregex(r"sed\s+(-i|--in-place)\s+(-r\s+)?s") or self.containsregex(r"sed\s+s\S*\s+(-i|--in-place)"):
|
||||||
yield Warning("You should avoid using 'sed -i' for substitutions, please use 'ynh_replace_string' instead")
|
yield Info("You should avoid using 'sed -i' for substitutions, please use 'ynh_replace_string' instead")
|
||||||
|
|
||||||
@test()
|
@test()
|
||||||
def sudo(self):
|
def sudo(self):
|
||||||
if self.containsregex(r"sudo \w"): # \w is here to not match sudo -u, legit use because ynh_exec_as not official yet...
|
if self.containsregex(r"sudo \w"): # \w is here to not match sudo -u, legit use because ynh_exec_as not official yet...
|
||||||
yield Warning(
|
yield Info(
|
||||||
"You should not need to use 'sudo', the self is being run as root. "
|
"You should not need to use 'sudo', the self is being run as root. "
|
||||||
"(If you need to run a command using a specific user, use 'ynh_exec_as')"
|
"(If you need to run a command using a specific user, use 'ynh_exec_as')"
|
||||||
)
|
)
|
||||||
|
@ -1393,12 +1377,12 @@ class Script(TestSuite):
|
||||||
return
|
return
|
||||||
|
|
||||||
if len(weights) > 3 and statistics.stdev(weights) > 50:
|
if len(weights) > 3 and statistics.stdev(weights) > 50:
|
||||||
yield Warning("To have a meaningful progress bar, try to keep the weights in the same range of values, for example [1,10], or [10,100] ... otherwise, if you have super-huge weight differentes, the progress bar rendering will be completely dominated by one or two steps... If these steps are really long, just try to indicated in the message that this will take a while.")
|
yield Info("To have a meaningful progress bar, try to keep the weights in the same range of values, for example [1,10], or [10,100] ... otherwise, if you have super-huge weight differentes, the progress bar rendering will be completely dominated by one or two steps... If these steps are really long, just try to indicated in the message that this will take a while.")
|
||||||
|
|
||||||
@test(only=["install", "_common.sh"])
|
@test(only=["install", "_common.sh"])
|
||||||
def php_deps(self):
|
def php_deps(self):
|
||||||
if self.containsregex("dependencies.*php-"):
|
if self.containsregex("dependencies.*php-"):
|
||||||
yield Warning("You should avoid having dependencies like 'php-foobar'. Instead, specify the exact version you want like 'php7.0-foobar'. Otherwise, the *wrong* version of the dependency may be installed if sury is also installed. Note that for Stretch/Buster/Bullseye/... transition, Yunohost will automatically patch your file so there's no need to care about that.")
|
yield Info("You should avoid having dependencies like 'php-foobar'. Instead, specify the exact version you want like 'php7.0-foobar'. Otherwise, the *wrong* version of the dependency may be installed if sury is also installed. Note that for Stretch/Buster/Bullseye/... transition, Yunohost will automatically patch your file so there's no need to care about that.")
|
||||||
|
|
||||||
@test(only=["backup"])
|
@test(only=["backup"])
|
||||||
def systemd_during_backup(self):
|
def systemd_during_backup(self):
|
||||||
|
|
Loading…
Reference in a new issue