-
Notifications
You must be signed in to change notification settings - Fork 460
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5922 from BOINC/vko_add_windows_installer_tests
Run Windows installation tests
- Loading branch information
Showing
6 changed files
with
115 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# This file is part of BOINC. | ||
# https://boinc.berkeley.edu | ||
# Copyright (C) 2024 University of California | ||
# | ||
# BOINC is free software; you can redistribute it and/or modify it | ||
# under the terms of the GNU Lesser General Public License | ||
# as published by the Free Software Foundation, | ||
# either version 3 of the License, or (at your option) any later version. | ||
# | ||
# BOINC is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | ||
# See the GNU Lesser General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU Lesser General Public License | ||
# along with BOINC. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
import re | ||
|
||
class TestHelper: | ||
def get_current_version_number(self): | ||
with open("version.h", "r") as f: | ||
lines = f.readlines() | ||
for line in lines: | ||
res = re.search("#define BOINC_VERSION_STRING \"([\d]+.[\d]+.[\d]+)\"", line) | ||
if res is not None: | ||
return res[1] | ||
return "" | ||
|
||
def get_version_from_string(self, string): | ||
res = re.search("([\d]+.[\d]+.[\d]+)", string) | ||
if res is not None: | ||
return res[1] | ||
return "" |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
# This file is part of BOINC. | ||
# https://boinc.berkeley.edu | ||
# Copyright (C) 2024 University of California | ||
# | ||
# BOINC is free software; you can redistribute it and/or modify it | ||
# under the terms of the GNU Lesser General Public License | ||
# as published by the Free Software Foundation, | ||
# either version 3 of the License, or (at your option) any later version. | ||
# | ||
# BOINC is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | ||
# See the GNU Lesser General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU Lesser General Public License | ||
# along with BOINC. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
import os | ||
import pathlib | ||
import sys | ||
import testset as testset | ||
import testhelper as testhelper | ||
|
||
class IntegrationTests: | ||
def __init__(self): | ||
self.testhelper = testhelper.TestHelper() | ||
self.result = True | ||
self.result &= self.test_version() | ||
self.result &= self.test_files_exist() | ||
|
||
def _get_test_executable_file_path(self, filename): | ||
return pathlib.Path("C:\\Program Files\\BOINC\\") / filename | ||
|
||
def _get_test_data_file_path(self, filename): | ||
return pathlib.Path("C:\\ProgramData\\BOINC\\") / filename | ||
|
||
def _get_file_version(self, filename): | ||
return self.testhelper.get_version_from_string(os.popen(("\"{app}\" --version").format(app=self._get_test_executable_file_path(filename))).read().strip()) | ||
|
||
def test_version(self): | ||
ts = testset.TestSet("Test version is correct") | ||
current_version = self.testhelper.get_current_version_number() | ||
ts.expect_not_equal("", current_version, "Test current version could be read from the 'version.h' file") | ||
ts.expect_equal(current_version, self._get_file_version("boinc.exe"), "Test 'boinc.exe' version is correctly set") | ||
ts.expect_equal(current_version, self._get_file_version("boinccmd.exe"), "Test 'boinccmd.exe' version is correctly set") | ||
return ts.result() | ||
|
||
def test_files_exist(self): | ||
ts = testset.TestSet("Test files exist") | ||
print(self._get_test_executable_file_path("boinc.exe")) | ||
ts.expect_true(os.path.exists(self._get_test_executable_file_path("boinc.exe")), "Test 'boinc.exe' file exists in 'C:\\Program Files\\BOINC\\'") | ||
ts.expect_true(os.path.exists(self._get_test_executable_file_path("boinccmd.exe")), "Test 'boinccmd.exe' file exists in 'C:\\Program Files\\BOINC\\'") | ||
ts.expect_true(os.path.exists(self._get_test_executable_file_path("boincmgr.exe")), "Test 'boincmgr.exe' file exists in 'C:\\Program Files\\BOINC\\'") | ||
ts.expect_true(os.path.exists(self._get_test_executable_file_path("boincscr.exe")), "Test 'boincscr.exe' file exists in 'C:\\Program Files\\BOINC\\'") | ||
ts.expect_true(os.path.exists(self._get_test_executable_file_path("boincsvcctrl.exe")), "Test 'boincsvcctrl.exe' file exists in 'C:\\Program Files\\BOINC\\'") | ||
ts.expect_true(os.path.exists(self._get_test_executable_file_path("boinctray.exe")), "Test 'boinctray.exe' file exists in 'C:\\Program Files\\BOINC\\'") | ||
ts.expect_true(os.path.exists(self._get_test_data_file_path("all_projects_list.xml")), "Test 'all_projects_list.xml' file exists in 'C:\\ProgramData\\BOINC\\'") | ||
return ts.result() | ||
|
||
if __name__ == "__main__": | ||
if not IntegrationTests().result: | ||
sys.exit(1) | ||
sys.exit(0) |