From 47b9cc186a20f9d4f2fc310e46311d375396bda6 Mon Sep 17 00:00:00 2001 From: Alexey Tikhonov Date: Wed, 9 Oct 2024 17:16:43 +0200 Subject: [PATCH] TESTS:INTG: 'implicit files domain' not supported since 501e05f46252ba6e097983a871c92b3896b596f2 --- src/tests/intg/test_files_provider.py | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/src/tests/intg/test_files_provider.py b/src/tests/intg/test_files_provider.py index c318d733cda..ba33e83b692 100644 --- a/src/tests/intg/test_files_provider.py +++ b/src/tests/intg/test_files_provider.py @@ -1216,18 +1216,6 @@ def test_realloc_groups(setup_gr_with_canary, files_domain_only): realloc_groups(setup_gr_with_canary, FILES_REALLOC_CHUNK * 3) -# Files domain autoconfiguration tests -@pytest.mark.skipif(not have_files_provider(), - reason="'files provider' disabled, skipping") -def test_no_sssd_domain(add_user_with_canary, no_sssd_domain): - """ - Test that if no sssd domain is configured, sssd will add the implicit one - """ - res, user = sssd_getpwnam_sync(USER1["name"]) - assert res == NssReturnCode.SUCCESS - assert user == USER1 - - @pytest.mark.skipif(not have_files_provider(), reason="'files provider' disabled, skipping") def test_proxy_to_files_domain_only(add_user_with_canary, @@ -1239,17 +1227,6 @@ def test_proxy_to_files_domain_only(add_user_with_canary, assert res == NssReturnCode.NOTFOUND -@pytest.mark.skipif(not have_files_provider(), - reason="'files provider' disabled, skipping") -def test_no_files_domain(add_user_with_canary, no_files_domain): - """ - Test that if no files domain is configured, sssd will add the implicit one - """ - res, user = sssd_getpwnam_sync(USER1["name"]) - assert res == NssReturnCode.SUCCESS - assert user == USER1 - - @pytest.mark.skipif(not have_files_provider(), reason="'files provider' disabled, skipping") def test_disable_files_domain(add_user_with_canary, disabled_files_domain):