Skip to content

Commit

Permalink
Run Windows installation tests
Browse files Browse the repository at this point in the history
Signed-off-by: Vitalii Koshura <[email protected]>
  • Loading branch information
AenBleidd committed Nov 27, 2024
1 parent d23edc0 commit 209ced2
Show file tree
Hide file tree
Showing 5 changed files with 71 additions and 19 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,12 @@ jobs:
working-directory: win_build\Build\${{matrix.platform}}\${{matrix.configuration}}
run: ${{github.workspace}}\temp\OpenCppCoverage\OpenCppCoverage-x64\OpenCppCoverage.exe --cover_children --optimized_build --sources ${{github.workspace}} --export_type=cobertura:cobertura.xml -- unittests.exe --gtest_output=xml:gtest.xml

- name: Run installation
if: success() && matrix.platform == 'x64' && matrix.type == 'msbuild'
shell: powershell
run: |
Start-Process "msiexec.exe" -ArgumentList "/i ${{github.workspace}}\win_build\Build\x64\${{matrix.configuration}}\boinc.msi /quiet /qn /l*v ${{github.workspace}}\win_build\Build\x64\${{matrix.configuration}}\install.log" -Wait
- name: Prepare logs on failure
if: ${{failure()}}
run: |
Expand Down
34 changes: 34 additions & 0 deletions tests/include/testhelper.py
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.
23 changes: 4 additions & 19 deletions tests/linux_package_tests/integration_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@

import os
import pathlib
import re
import sys
import testset
import tests.include.testset as testset
import tests.include.testhelper as testhelper

class IntegrationTests:
def __init__(self):
Expand All @@ -37,23 +37,8 @@ def _get_test_executable_file_path(self, filename):
return os.path.join(p, filename)
return ""

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 ""

def _get_file_version(self, filename):
return self._get_version_from_string(os.popen(("{app} --version").format(app=self._get_test_executable_file_path(filename))).read().strip())
return testhelper.get_version_from_string(os.popen(("{app} --version").format(app=self._get_test_executable_file_path(filename))).read().strip())

def _get_user_exists(self, username):
return os.popen("id -un {username}".format(username=username)).read().strip() == username
Expand Down Expand Up @@ -142,7 +127,7 @@ def test_files_exist(self):

def test_version(self):
ts = testset.TestSet("Test version is correct")
current_version = self._get_current_version_number()
current_version = 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"), "Test 'boinc' version is correctly set")
ts.expect_equal(current_version, self._get_file_version("boinccmd"), "Test 'boinccmd' version is correctly set")
Expand Down
27 changes: 27 additions & 0 deletions tests/windows_installer_tests/integration_tests.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# 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 tests.include.testset as testset
import tests.include.testhelper as testhelper

class IntegrationTests:
def __init__(self):
self.result = True
self.result &= test_general_installation()

def test_general_installation(self):
ts = testset.TestSet("Test general installation")

0 comments on commit 209ced2

Please sign in to comment.