1 from pathlib
import Path
2 from datetime
import datetime
3 from itertools
import product
4 from logging
import info
6 if '' in sys
.path
: sys
.path
.remove('')
7 sys
.path
.append(str(Path(__file__
).parent
.parent
.parent
))
8 from unittest
import TestCase
9 from shutil
import rmtree
, copy
10 from time
import sleep
11 from os
import system
, remove
, environ
12 from os
.path
import exists
, basename
, join
14 from panda3d
.core
import Filename
15 from ya2
.build
.build
import exec_cmd
, _branch
, _ver
18 class FunctionalTests(TestCase
):
23 str(Path
.home()) + '/.local/share/pmachines/tests/functional/',
24 str(Path
.home()) + '/.var/app/it.ya2.Pmachines/data/pmachines/tests/functional/',
25 str(Path
.home()) + '/.wine/drive_c/users/flavio/AppData/Local/pmachines/tests/functional/']
27 rmtree(path
, ignore_errors
=True)
29 Filename().get_user_appdata_directory(),
30 '/home/flavio/.var/app/it.ya2.Pmachines/data',
31 '/home/flavio/.wine/drive_c/users/flavio/AppData/Local']
33 'pmachines/options.ini',
34 'pmachines/obs_version.txt']
35 for dir_file
in product(dirs
, files
):
36 _file
= join(*dir_file
)
39 info('%s removed' % _file
)
41 info('%s does not exist' % _file
)
42 opt_ini
= str(Path
.home()) + '/builders/pmachines_builder/pmachines/options.ini'
45 system('pkill -f "pmachines.exe"')
48 system('xdotool key shift')
58 path
= 'pmachines/tests/functional_ref_%s/*.png' % _branch()
59 files
= glob(join(Filename().get_user_appdata_directory(), path
))
60 self
.assertGreater(len(files
), 1)
62 def __similar_images(self
, ref_img
, tst_img
):
63 cmd
= 'magick compare -metric NCC %s %s diff.png' % (ref_img
, tst_img
)
65 if exists('diff.png'): remove('diff.png')
66 print('compare %s %s: %s' % (ref_img
, tst_img
, res
))
67 return float(res
) > .8
69 def __test_template(self
, cmd
, path
):
70 if environ
.get('FUNCTIONAL') != '1':
71 self
.skipTest('skipped functional tests')
74 system('amixer sset Master 0%')
76 self
.assertEqual(ret
, 0, 'error while executing ' + cmd
)
77 files
= glob(str(Path
.home()) + '/.local/share/pmachines/tests/functional_ref_%s/*.png' % _branch())
78 self
.assertGreater(len(files
), 1)
80 self
.assertTrue(exists(path
+ basename(fname
)), '%s does not exist' % (path
+ basename(fname
)))
81 similar
= self
.__similar
_images
(
82 str(Path
.home()) + '/.local/share/pmachines/tests/functional_ref_%s/' % _branch() + basename(fname
),
83 path
+ basename(fname
)),
84 'error while comparing %s and %s' % (
85 str(Path
.home()) + '/.local/share/pmachines/tests/functional_ref_%s/' % _branch() + basename(fname
),
86 path
+ basename(fname
))
88 timestamp
= datetime
.now().strftime('%y%m%d%H%M%S%f')
89 copy(path
+ basename(fname
), '~/Desktop/' + basename(fname
)[:-4] + timestamp
+ '.png')
90 self
.assertTrue(similar
)
95 'timeout 720s ~/venv/bin/python main.py --functional-test & '
96 'timeout 720s ~/venv/bin/python -m tests.functional_test.py 1; sleep 5; '
97 'timeout 720s ~/venv/bin/python main.py --functional-test & '
98 'timeout 720s ~/venv/bin/python -m tests.functional_test.py 2',
99 str(Path
.home()) + '/.local/share/pmachines/tests/functional/')
101 def test_appimage(self
):
102 info('test_appimage')
103 bld_branch
= {'master': 'alpha', 'rc': 'rc', 'stable': 'stable'}[_branch()]
104 bld_branch
= '' if bld_branch
== 'stable' else ('-' + bld_branch
)
105 self
.__test
_template
(
106 'timeout 720s ./dist/Pmachines%s-x86_64.AppImage --functional-test & '
107 'timeout 720s ~/venv/bin/python -m tests.functional_test.py 1; sleep 5; '
108 'timeout 720s ./dist/Pmachines%s-x86_64.AppImage --functional-test & ' % (bld_branch
, bld_branch
) +
109 'timeout 720s ~/venv/bin/python -m tests.functional_test.py 2',
110 str(Path
.home()) + '/.local/share/pmachines/tests/functional/')
112 # def test_flatpak(self):
113 # info('test_flatpak')
114 # if environ.get('FUNCTIONALPOST') != '1':
115 # self.skipTest('skipped functional-post tests')
116 # bld_branch = {'master': 'alpha', 'rc': 'rc', 'stable': 'stable'}[_branch()]
117 # cmd = 'flatpak update --user -y it.ya2.Pmachines//%s' % bld_branch
118 # info('executing: %s' % cmd)
120 # fout = exec_cmd(cmd)
121 # info('executed: %s' % cmd)
123 # self.__test_template(
124 # 'timeout 720s flatpak run it.ya2.Pmachines//%s --functional-test & '
125 # 'timeout 720s ~/venv/bin/python -m tests.functional_test.py 1; sleep 5; '
126 # 'timeout 720s flatpak run it.ya2.Pmachines//%s --functional-test & ' % (bld_branch, bld_branch) +
127 # 'timeout 720s ~/venv/bin/python -m tests.functional_test.py 2',
128 # str(Path.home()) + '/.var/app/it.ya2.Pmachines/data/pmachines/tests/functional/')
130 def __update_itchio(self
):
131 system('/home/flavio/.itch/itch')
133 system('xdotool mousemove 860 620')
135 system('xdotool click 1')
137 system('killall itch')
139 def test_itchio(self
):
141 if environ
.get('FUNCTIONALPOST') != '1':
142 self
.skipTest('skipped functional-post tests')
143 if _branch() != 'master':
145 self
.__update
_itchio
()
146 self
.__test
_template
(
147 'timeout 720s /home/flavio/.config/itch/apps/pmachines/pmachines --functional-test & '
148 'timeout 720s ~/venv/bin/python -m tests.functional_test.py 1; sleep 5; '
149 'timeout 720s /home/flavio/.config/itch/apps/pmachines/pmachines --functional-test & '
150 'timeout 720s ~/venv/bin/python -m tests.functional_test.py 2',
151 str(Path
.home()) + '/.local/share/pmachines/tests/functional/')
153 def test_windows(self
):
155 system('pkill -f "pmachines.exe"')
156 abspath
= str(Path(__file__
).parent
.parent
) + '/build/win_amd64/pmachines.exe'
157 self
.__test
_template
(
158 'timeout 720s wine %s --functional-test & ' % abspath
+
159 'timeout 720s ~/venv/bin/python -m tests.functional_test.py 1; sleep 5; '
160 'timeout 720s wine %s --functional-test & ' % abspath
+
161 'timeout 720s ~/venv/bin/python -m tests.functional_test.py 2',
162 str(Path
.home()) + '/.wine/drive_c/users/flavio/AppData/Local/pmachines/tests/functional/')
164 def test_versions(self
):
165 info('test_versions')
166 if environ
.get('FUNCTIONAL') != '1':
167 self
.skipTest('skipped functional tests')
168 bld_branch
= {'master': 'alpha', 'rc': 'rc', 'stable': 'stable'}[_branch()]
169 with
open('/home/flavio/builders/pmachines_builder/last_bld.txt') as f
:
170 lines
= f
.readlines()
172 if line
.strip().split()[0] == _branch():
173 commit
= line
.strip().split()[1][:7]
175 if _branch() == 'stable':
176 with
open('/home/flavio/builders/pmachines_builder/pmachines/assets/version.txt') as fver
:
177 __ver
= fver
.read().strip() + '-'
178 exp
= '%s-%s' % (__ver
, commit
)
180 ('timeout 720s ./build/manylinux2010_x86_64/pmachines --version', str(Filename
.get_user_appdata_directory()) + '/pmachines/obs_version.txt'),
181 ('timeout 720s ./dist/Pmachines-%s-x86_64.AppImage --version' % bld_branch
, str(Filename
.get_user_appdata_directory()) + '/pmachines/obs_version.txt'),
182 ('timeout 720s wine ./build/win_amd64/pmachines.exe --version', '/home/flavio/.wine/drive_c/users/flavio/AppData/Local/pmachines/obs_version.txt')
184 if environ
.get('FUNCTIONALPOST') == '1':
185 if _branch() == 'master':
186 self
.__update
_itchio
()
187 cmds
+= [('timeout 720s /home/flavio/.config/itch/apps/pmachines/pmachines --version', str(Filename
.get_user_appdata_directory()) + '/pmachines/obs_version.txt')]
188 # cmds += [('timeout 720s flatpak run it.ya2.Pmachines//%s --version' % bld_branch, '/home/flavio/.var/app/it.ya2.Pmachines/data/pmachines/obs_version.txt')]
189 # info('executing flatpak update --user -y it.ya2.Pmachines//%s' % bld_branch)
190 # #system('flatpak update -y --user it.ya2.Pmachines//%s' % bld_branch)
191 # fout = exec_cmd('flatpak update -y --user it.ya2.Pmachines//%s' % bld_branch)
192 # info('executed flatpak update --user -y it.ya2.Pmachines//%s' % bld_branch)
197 info('launching %s' % cmd
[0])
199 with
open(cmd
[1]) as f
:
200 obs
= f
.read().strip()
201 self
.assertEqual(obs
, exp
, 'during ' + cmd
[0])