mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
373 lines
13 KiB
Python
373 lines
13 KiB
Python
import glob
|
|
import os
|
|
import pytest
|
|
import shutil
|
|
import requests
|
|
|
|
from conftest import message, raiseYunohostError
|
|
|
|
from moulinette import m18n
|
|
from moulinette.utils.filesystem import mkdir
|
|
|
|
from yunohost.app import app_install, app_remove, app_ssowatconf, _is_installed, app_upgrade
|
|
from yunohost.domain import _get_maindomain, domain_add, domain_remove, domain_list
|
|
from yunohost.utils.error import YunohostError
|
|
from yunohost.tests.test_permission import check_LDAP_db_integrity, check_permission_for_apps
|
|
from yunohost.permission import user_permission_list, permission_delete
|
|
|
|
|
|
def setup_function(function):
|
|
|
|
clean()
|
|
|
|
def teardown_function(function):
|
|
|
|
clean()
|
|
|
|
def clean():
|
|
|
|
# Make sure we have a ssowat
|
|
os.system("mkdir -p /etc/ssowat/")
|
|
app_ssowatconf()
|
|
|
|
# Gotta first remove break yo system
|
|
# because some remaining stuff might
|
|
# make the other app_remove crashs ;P
|
|
if _is_installed("break_yo_system"):
|
|
app_remove("break_yo_system")
|
|
|
|
if _is_installed("legacy_app"):
|
|
app_remove("legacy_app")
|
|
|
|
if _is_installed("full_domain_app"):
|
|
app_remove("full_domain_app")
|
|
|
|
to_remove = []
|
|
to_remove += glob.glob("/etc/nginx/conf.d/*.d/*legacy*")
|
|
to_remove += glob.glob("/etc/nginx/conf.d/*.d/*full_domain*")
|
|
to_remove += glob.glob("/etc/nginx/conf.d/*.d/*break_yo_system*")
|
|
for filepath in to_remove:
|
|
os.remove(filepath)
|
|
|
|
to_remove = []
|
|
to_remove += glob.glob("/etc/yunohost/apps/*legacy_app*")
|
|
to_remove += glob.glob("/etc/yunohost/apps/*full_domain_app*")
|
|
to_remove += glob.glob("/etc/yunohost/apps/*break_yo_system*")
|
|
to_remove += glob.glob("/var/www/*legacy*")
|
|
to_remove += glob.glob("/var/www/*full_domain*")
|
|
for folderpath in to_remove:
|
|
shutil.rmtree(folderpath, ignore_errors=True)
|
|
|
|
os.system("systemctl reset-failed nginx") # Reset failed quota for service to avoid running into start-limit rate ?
|
|
os.system("systemctl start nginx")
|
|
|
|
# Clean permission
|
|
for permission_name in user_permission_list(short=True)["permissions"]:
|
|
if "legacy_app" in permission_name or \
|
|
"full_domain_app" in permission_name or \
|
|
"break_yo_system" in permission_name:
|
|
permission_delete(permission_name, force=True)
|
|
|
|
# Clean database
|
|
os.system("bash -c \"mysql -u root --password=$(cat /etc/yunohost/mysql) 2>/dev/null <<< 'DROP DATABASE legacy_app' \"")
|
|
os.system("bash -c \"mysql -u root --password=$(cat /etc/yunohost/mysql) 2>/dev/null <<< 'DROP USER legacy_app@localhost'\"")
|
|
os.system("bash -c \"mysql -u root --password=$(cat /etc/yunohost/mysql) 2>/dev/null <<< 'DROP DATABASE legacy_app__2'\"")
|
|
os.system("bash -c \"mysql -u root --password=$(cat /etc/yunohost/mysql) 2>/dev/null <<< 'DROP USER legacy_app__2@localhost'\"")
|
|
os.system("bash -c \"mysql -u root --password=$(cat /etc/yunohost/mysql) 2>/dev/null <<< 'DROP DATABASE legacy_app__3'\"")
|
|
os.system("bash -c \"mysql -u root --password=$(cat /etc/yunohost/mysql) 2>/dev/null <<< 'DROP USER legacy_app__3@localhost'\"")
|
|
os.system("bash -c \"mysql -u root --password=$(cat /etc/yunohost/mysql) 2>/dev/null <<< 'DROP DATABASE full_domain'\"")
|
|
os.system("bash -c \"mysql -u root --password=$(cat /etc/yunohost/mysql) 2>/dev/null <<< 'DROP USER full_domain@localhost'\"")
|
|
os.system("bash -c \"mysql -u root --password=$(cat /etc/yunohost/mysql) 2>/dev/null <<< 'DROP DATABASE full_domain__2'\"")
|
|
os.system("bash -c \"mysql -u root --password=$(cat /etc/yunohost/mysql) 2>/dev/null <<< 'DROP USER full_domain__2@localhost'\"")
|
|
os.system("bash -c \"mysql -u root --password=$(cat /etc/yunohost/mysql) 2>/dev/null <<< 'DROP DATABASE full_domain__3'\"")
|
|
os.system("bash -c \"mysql -u root --password=$(cat /etc/yunohost/mysql) 2>/dev/null <<< 'DROP USER full_domain__3@localhost'\"")
|
|
os.system("bash -c \"mysql -u root --password=$(cat /etc/yunohost/mysql) 2>/dev/null <<< 'DROP DATABASE break_yo_system'\"")
|
|
os.system("bash -c \"mysql -u root --password=$(cat /etc/yunohost/mysql) 2>/dev/null <<< 'DROP USER break_yo_system@localhost'\"")
|
|
os.system("bash -c \"mysql -u root --password=$(cat /etc/yunohost/mysql) 2>/dev/null <<< 'DROP DATABASE break_yo_system__2'\"")
|
|
os.system("bash -c \"mysql -u root --password=$(cat /etc/yunohost/mysql) 2>/dev/null <<< 'DROP USER break_yo_system__2@localhost'\"")
|
|
os.system("bash -c \"mysql -u root --password=$(cat /etc/yunohost/mysql) 2>/dev/null <<< 'DROP DATABASE break_yo_system__3'\"")
|
|
os.system("bash -c \"mysql -u root --password=$(cat /etc/yunohost/mysql) 2>/dev/null <<< 'DROP USER break_yo_system__3@localhost'\"")
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def check_LDAP_db_integrity_call():
|
|
check_LDAP_db_integrity()
|
|
yield
|
|
check_LDAP_db_integrity()
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def check_permission_for_apps_call():
|
|
check_permission_for_apps()
|
|
yield
|
|
check_permission_for_apps()
|
|
|
|
@pytest.fixture(scope="module")
|
|
def secondary_domain(request):
|
|
|
|
if "example.test" not in domain_list()["domains"]:
|
|
domain_add("example.test")
|
|
|
|
def remove_example_domain():
|
|
domain_remove("example.test")
|
|
request.addfinalizer(remove_example_domain)
|
|
|
|
return "example.test"
|
|
|
|
|
|
#
|
|
# Helpers #
|
|
#
|
|
|
|
def app_expected_files(domain, app):
|
|
|
|
yield "/etc/nginx/conf.d/%s.d/%s.conf" % (domain, app)
|
|
if app.startswith("legacy_app"):
|
|
yield "/var/www/%s/index.html" % app
|
|
yield "/etc/yunohost/apps/%s/settings.yml" % app
|
|
yield "/etc/yunohost/apps/%s/manifest.json" % app
|
|
yield "/etc/yunohost/apps/%s/scripts/install" % app
|
|
yield "/etc/yunohost/apps/%s/scripts/remove" % app
|
|
|
|
|
|
def app_is_installed(domain, app):
|
|
|
|
return _is_installed(app) and all(os.path.exists(f) for f in app_expected_files(domain, app))
|
|
|
|
|
|
def app_is_not_installed(domain, app):
|
|
|
|
return not _is_installed(app) and not all(os.path.exists(f) for f in app_expected_files(domain, app))
|
|
|
|
|
|
def app_is_exposed_on_http(domain, path, message_in_page):
|
|
|
|
try:
|
|
r = requests.get("http://127.0.0.1" + path + "/", headers={"Host": domain}, timeout=10, verify=False)
|
|
return r.status_code == 200 and message_in_page in r.text
|
|
except Exception as e:
|
|
return False
|
|
|
|
|
|
def install_legacy_app(domain, path, public=True):
|
|
|
|
app_install("./tests/apps/legacy_app_ynh",
|
|
args="domain=%s&path=%s&is_public=%s" % (domain, path, 1 if public else 0),
|
|
force=True)
|
|
|
|
|
|
def install_full_domain_app(domain):
|
|
|
|
app_install("./tests/apps/full_domain_app_ynh",
|
|
args="domain=%s" % domain,
|
|
force=True)
|
|
|
|
|
|
def install_break_yo_system(domain, breakwhat):
|
|
|
|
app_install("./tests/apps/break_yo_system_ynh",
|
|
args="domain=%s&breakwhat=%s" % (domain, breakwhat),
|
|
force=True)
|
|
|
|
|
|
def test_legacy_app_install_main_domain():
|
|
|
|
main_domain = _get_maindomain()
|
|
|
|
install_legacy_app(main_domain, "/legacy")
|
|
|
|
assert app_is_installed(main_domain, "legacy_app")
|
|
assert app_is_exposed_on_http(main_domain, "/legacy", "This is a dummy app")
|
|
|
|
app_remove("legacy_app")
|
|
|
|
assert app_is_not_installed(main_domain, "legacy_app")
|
|
|
|
|
|
def test_legacy_app_install_secondary_domain(secondary_domain):
|
|
|
|
install_legacy_app(secondary_domain, "/legacy")
|
|
|
|
assert app_is_installed(secondary_domain, "legacy_app")
|
|
assert app_is_exposed_on_http(secondary_domain, "/legacy", "This is a dummy app")
|
|
|
|
app_remove("legacy_app")
|
|
|
|
assert app_is_not_installed(secondary_domain, "legacy_app")
|
|
|
|
|
|
def test_legacy_app_install_secondary_domain_on_root(secondary_domain):
|
|
|
|
install_legacy_app(secondary_domain, "/")
|
|
|
|
assert app_is_installed(secondary_domain, "legacy_app")
|
|
assert app_is_exposed_on_http(secondary_domain, "/", "This is a dummy app")
|
|
|
|
app_remove("legacy_app")
|
|
|
|
assert app_is_not_installed(secondary_domain, "legacy_app")
|
|
|
|
|
|
def test_legacy_app_install_private(secondary_domain):
|
|
|
|
install_legacy_app(secondary_domain, "/legacy", public=False)
|
|
|
|
assert app_is_installed(secondary_domain, "legacy_app")
|
|
assert not app_is_exposed_on_http(secondary_domain, "/legacy", "This is a dummy app")
|
|
|
|
app_remove("legacy_app")
|
|
|
|
assert app_is_not_installed(secondary_domain, "legacy_app")
|
|
|
|
|
|
def test_legacy_app_install_unknown_domain(mocker):
|
|
|
|
with pytest.raises(YunohostError):
|
|
with message(mocker, "app_argument_invalid"):
|
|
install_legacy_app("whatever.nope", "/legacy")
|
|
|
|
assert app_is_not_installed("whatever.nope", "legacy_app")
|
|
|
|
|
|
def test_legacy_app_install_multiple_instances(secondary_domain):
|
|
|
|
install_legacy_app(secondary_domain, "/foo")
|
|
install_legacy_app(secondary_domain, "/bar")
|
|
|
|
assert app_is_installed(secondary_domain, "legacy_app")
|
|
assert app_is_exposed_on_http(secondary_domain, "/foo", "This is a dummy app")
|
|
|
|
assert app_is_installed(secondary_domain, "legacy_app__2")
|
|
assert app_is_exposed_on_http(secondary_domain, "/bar", "This is a dummy app")
|
|
|
|
app_remove("legacy_app")
|
|
|
|
assert app_is_not_installed(secondary_domain, "legacy_app")
|
|
assert app_is_installed(secondary_domain, "legacy_app__2")
|
|
|
|
app_remove("legacy_app__2")
|
|
|
|
assert app_is_not_installed(secondary_domain, "legacy_app")
|
|
assert app_is_not_installed(secondary_domain, "legacy_app__2")
|
|
|
|
|
|
def test_legacy_app_install_path_unavailable(mocker, secondary_domain):
|
|
|
|
# These will be removed in teardown
|
|
install_legacy_app(secondary_domain, "/legacy")
|
|
|
|
with pytest.raises(YunohostError):
|
|
with message(mocker, "app_location_unavailable"):
|
|
install_legacy_app(secondary_domain, "/")
|
|
|
|
assert app_is_installed(secondary_domain, "legacy_app")
|
|
assert app_is_not_installed(secondary_domain, "legacy_app__2")
|
|
|
|
|
|
def test_legacy_app_install_with_nginx_down(mocker, secondary_domain):
|
|
|
|
os.system("systemctl stop nginx")
|
|
|
|
with raiseYunohostError(mocker, "app_action_cannot_be_ran_because_required_services_down"):
|
|
install_legacy_app(secondary_domain, "/legacy")
|
|
|
|
|
|
def test_legacy_app_failed_install(mocker, secondary_domain):
|
|
|
|
# This will conflict with the folder that the app
|
|
# attempts to create, making the install fail
|
|
mkdir("/var/www/legacy_app/", 0o750)
|
|
|
|
with pytest.raises(YunohostError):
|
|
with message(mocker, 'app_install_script_failed'):
|
|
install_legacy_app(secondary_domain, "/legacy")
|
|
|
|
assert app_is_not_installed(secondary_domain, "legacy_app")
|
|
|
|
|
|
def test_legacy_app_failed_remove(mocker, secondary_domain):
|
|
|
|
install_legacy_app(secondary_domain, "/legacy")
|
|
|
|
# The remove script runs with set -eu and attempt to remove this
|
|
# file without -f, so will fail if it's not there ;)
|
|
os.remove("/etc/nginx/conf.d/%s.d/%s.conf" % (secondary_domain, "legacy_app"))
|
|
|
|
# TODO / FIXME : can't easily validate that 'app_not_properly_removed'
|
|
# is triggered for weird reasons ...
|
|
app_remove("legacy_app")
|
|
|
|
#
|
|
# Well here, we hit the classical issue where if an app removal script
|
|
# fails, so far there's no obvious way to make sure that all files related
|
|
# to this app got removed ...
|
|
#
|
|
assert app_is_not_installed(secondary_domain, "legacy")
|
|
|
|
|
|
def test_full_domain_app(secondary_domain):
|
|
|
|
install_full_domain_app(secondary_domain)
|
|
|
|
assert app_is_exposed_on_http(secondary_domain, "/", "This is a dummy app")
|
|
|
|
|
|
def test_full_domain_app_with_conflicts(mocker, secondary_domain):
|
|
|
|
install_legacy_app(secondary_domain, "/legacy")
|
|
|
|
with raiseYunohostError(mocker, "app_full_domain_unavailable"):
|
|
install_full_domain_app(secondary_domain)
|
|
|
|
|
|
def test_systemfuckedup_during_app_install(mocker, secondary_domain):
|
|
|
|
with pytest.raises(YunohostError):
|
|
with message(mocker, "app_install_failed"):
|
|
with message(mocker, 'app_action_broke_system'):
|
|
install_break_yo_system(secondary_domain, breakwhat="install")
|
|
|
|
assert app_is_not_installed(secondary_domain, "break_yo_system")
|
|
|
|
|
|
def test_systemfuckedup_during_app_remove(mocker, secondary_domain):
|
|
|
|
install_break_yo_system(secondary_domain, breakwhat="remove")
|
|
|
|
with pytest.raises(YunohostError):
|
|
with message(mocker, 'app_action_broke_system'):
|
|
with message(mocker, 'app_removed'):
|
|
app_remove("break_yo_system")
|
|
|
|
assert app_is_not_installed(secondary_domain, "break_yo_system")
|
|
|
|
|
|
def test_systemfuckedup_during_app_install_and_remove(mocker, secondary_domain):
|
|
|
|
with pytest.raises(YunohostError):
|
|
with message(mocker, "app_install_failed"):
|
|
with message(mocker, 'app_action_broke_system'):
|
|
install_break_yo_system(secondary_domain, breakwhat="everything")
|
|
|
|
assert app_is_not_installed(secondary_domain, "break_yo_system")
|
|
|
|
|
|
def test_systemfuckedup_during_app_upgrade(mocker, secondary_domain):
|
|
|
|
install_break_yo_system(secondary_domain, breakwhat="upgrade")
|
|
|
|
with pytest.raises(YunohostError):
|
|
with message(mocker, 'app_action_broke_system'):
|
|
app_upgrade("break_yo_system", file="./tests/apps/break_yo_system_ynh")
|
|
|
|
|
|
def test_failed_multiple_app_upgrade(mocker, secondary_domain):
|
|
|
|
install_legacy_app(secondary_domain, "/legacy")
|
|
install_break_yo_system(secondary_domain, breakwhat="upgrade")
|
|
|
|
with pytest.raises(YunohostError):
|
|
with message(mocker, "app_not_upgraded"):
|
|
app_upgrade(["break_yo_system", "legacy_app"],
|
|
file={"break_yo_system": "./tests/apps/break_yo_system_ynh",
|
|
"legacy": "./tests/apps/legacy_app_ynh"})
|