Skip to content

Commit d3c569c

Browse files
authored
re-enable package installation tests for debian (#251)
1 parent 628454a commit d3c569c

File tree

2 files changed

+0
-22
lines changed

2 files changed

+0
-22
lines changed

release_tester/package_installation_tests/community_package_installation_test_suite.py

-11
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,6 @@ def __init__(self, params: CliTestSuiteParameters):
2929
super().__init__(params)
3030
self.suite_name = f"Test package installation/uninstallation. New version: {self.new_version}. Old version: {self.old_version}. Package type: {str(self.new_inst_e.installer_type)}. Community edition."
3131

32-
disable_for_debian_bts_684 = disable_for_debian(
33-
"Package installation/uninstallation tests are temporarily disabled for debian-based linux distros. Waiting for BTS-684."
34-
)
3532
disable_for_zip_packages = disable_if_returns_true_at_runtime(
3633
BasePackageInstallationTestSuite.is_zip, "This test case is not applicable for .zip packages."
3734
)
@@ -40,7 +37,6 @@ def __init__(self, params: CliTestSuiteParameters):
4037
"Test case is skipped because client package is not present for given installer type.",
4138
)
4239

43-
@disable_for_debian_bts_684
4440
@disable_for_windows
4541
@disable_for_mac
4642
@disable_for_zip_packages
@@ -49,7 +45,6 @@ def test1(self):
4945
"""Check that new community server package cannot be installed over an enterprise package of previous version"""
5046
check_if_server_packages_can_be_installed_consequentially(self.old_inst_e, self.new_inst_c, False)
5147

52-
@disable_for_debian_bts_684
5348
@disable_for_windows
5449
@disable_for_mac
5550
@disable_for_zip_packages
@@ -58,7 +53,6 @@ def test2(self):
5853
"""Check that new community server package cannot be installed over an enterprise package of the same version"""
5954
check_if_server_packages_can_be_installed_consequentially(self.new_inst_e, self.new_inst_c, False)
6055

61-
@disable_for_debian_bts_684
6256
@disable_for_windows
6357
@disable_for_mac
6458
@disable_for_zip_packages
@@ -67,7 +61,6 @@ def test3(self):
6761
"""Check that community debug package cannot be installed when enterprise server package of current version is present"""
6862
check_if_debug_package_can_be_installed_over_server_package(self.new_inst_c, self.new_inst_e, False)
6963

70-
@disable_for_debian_bts_684
7164
@disable_for_windows
7265
@disable_for_mac
7366
@disable_for_zip_packages
@@ -76,7 +69,6 @@ def test4(self):
7669
"""Check that community debug package cannot be installed when enterprise server package of previous version is present"""
7770
check_if_debug_package_can_be_installed_over_server_package(self.new_inst_c, self.old_inst_e, False)
7871

79-
@disable_for_debian_bts_684
8072
@disable_for_windows
8173
@disable_for_mac
8274
@disable_for_zip_packages
@@ -85,7 +77,6 @@ def test5(self):
8577
"""Check that community debug package cannot be installed if server package is not present."""
8678
check_if_debug_package_can_be_installed(self.new_inst_c, False)
8779

88-
@disable_for_debian_bts_684
8980
@disable_for_windows
9081
@disable_for_mac
9182
@disable_for_zip_packages
@@ -128,7 +119,6 @@ def test10(self):
128119
"""Check that community client package can be installed/uninstalled."""
129120
check_if_client_package_can_be_installed(self.new_inst_c, True)
130121

131-
@disable_for_debian_bts_684
132122
@disable_for_windows
133123
@disable_for_mac
134124
@disable_for_zip_packages
@@ -137,7 +127,6 @@ def test11(self):
137127
"""Check that new community server package can be installed"""
138128
check_if_server_package_can_be_installed(self.new_inst_c)
139129

140-
@disable_for_debian_bts_684
141130
@disable_for_windows
142131
@disable_for_mac
143132
@disable_for_zip_packages

release_tester/package_installation_tests/enterprise_package_installation_test_suite.py

-11
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,6 @@ def __init__(self, params: CliTestSuiteParameters):
2929
super().__init__(params)
3030
self.suite_name = f"Test package installation/uninstallation. New version: {self.new_version}. Old version: {self.old_version}. Package type: {str(self.new_inst_e.installer_type)}. Enterprise edition."
3131

32-
disable_for_debian_bts_684 = disable_for_debian(
33-
"Package installation/uninstallation tests are temporarily disabled for debian-based linux distros. Waiting for BTS-684."
34-
)
3532
disable_for_zip_packages = disable_if_returns_true_at_runtime(
3633
BasePackageInstallationTestSuite.is_zip, "This test case is not applicable for .zip packages."
3734
)
@@ -40,7 +37,6 @@ def __init__(self, params: CliTestSuiteParameters):
4037
"Test case is skipped because client package is not present for given installer type.",
4138
)
4239

43-
@disable_for_debian_bts_684
4440
@disable_for_windows
4541
@disable_for_mac
4642
@disable_for_zip_packages
@@ -49,7 +45,6 @@ def test1(self):
4945
"""Check that new enterprise server package cannot be installed over a community package of previous version"""
5046
check_if_server_packages_can_be_installed_consequentially(self.old_inst_c, self.new_inst_e, False)
5147

52-
@disable_for_debian_bts_684
5348
@disable_for_windows
5449
@disable_for_mac
5550
@disable_for_zip_packages
@@ -58,7 +53,6 @@ def test2(self):
5853
"""Check that new enterprise server package cannot be installed over a community package of the same version"""
5954
check_if_server_packages_can_be_installed_consequentially(self.new_inst_c, self.new_inst_e, False)
6055

61-
@disable_for_debian_bts_684
6256
@disable_for_windows
6357
@disable_for_mac
6458
@disable_for_zip_packages
@@ -67,7 +61,6 @@ def test3(self):
6761
"""Check that enterprise debug package cannot be installed when community server package of current version is present"""
6862
check_if_debug_package_can_be_installed_over_server_package(self.new_inst_e, self.new_inst_c, False)
6963

70-
@disable_for_debian_bts_684
7164
@disable_for_windows
7265
@disable_for_mac
7366
@disable_for_zip_packages
@@ -76,7 +69,6 @@ def test4(self):
7669
"""Check that enterprise debug package cannot be installed when community server package of previous version is present"""
7770
check_if_debug_package_can_be_installed_over_server_package(self.new_inst_e, self.old_inst_c, False)
7871

79-
@disable_for_debian_bts_684
8072
@disable_for_windows
8173
@disable_for_mac
8274
@disable_for_zip_packages
@@ -85,7 +77,6 @@ def test5(self):
8577
"""Check that enterprise debug package cannot be installed if server package is not present."""
8678
check_if_debug_package_can_be_installed(self.new_inst_e, False)
8779

88-
@disable_for_debian_bts_684
8980
@disable_for_windows
9081
@disable_for_mac
9182
@disable_for_zip_packages
@@ -128,7 +119,6 @@ def test10(self):
128119
"""Check that enterprise client package can be installed/uninstalled."""
129120
check_if_client_package_can_be_installed(self.new_inst_e, True)
130121

131-
@disable_for_debian_bts_684
132122
@disable_for_windows
133123
@disable_for_mac
134124
@disable_for_zip_packages
@@ -137,7 +127,6 @@ def test11(self):
137127
"""Check that new enterprise server package can be installed"""
138128
check_if_server_package_can_be_installed(self.new_inst_e)
139129

140-
@disable_for_debian_bts_684
141130
@disable_for_windows
142131
@disable_for_mac
143132
@disable_for_zip_packages

0 commit comments

Comments
 (0)