Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Lisa Casino
slapos.core
Commits
bf2c854a
Commit
bf2c854a
authored
Nov 15, 2019
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
XXX: example upgrader test for ERP5
parent
7191925a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
62 additions
and
0 deletions
+62
-0
slapos/testing/testcase.py
slapos/testing/testcase.py
+62
-0
No files found.
slapos/testing/testcase.py
View file @
bf2c854a
...
...
@@ -551,3 +551,65 @@ class SlapOSInstanceUpgradeTestCase(BaseSlapOSInstanceTestCase):
cls
.
requestDefaultInstance
()
class
ExampleERP5UpgradeTestCase
(
SlapOSInstanceUpgradeTestCase
):
@
classmethod
def
getOldSoftwareUrl
(
cls
):
# an old version, we don't change this URL often (maybe never ?)
return
'https://lab.nexedi.com/nexedi/slapos/blob/1.0.124/software/erp5/software.cfg'
@
classmethod
def
getNewSoftwareUrl
(
cls
):
return
os
.
path
.
join
(
'..'
,
'..'
,
'software.cfg'
)
# we are in slapos git repository
@
classmethod
def
_getERP5XMLRPCClient
(
cls
):
param_dict
=
json
.
loads
(
cls
.
computer_partition
.
getConnectionParameterDict
()[
'_'
])
url
=
urlparse
.
urljoin
(
param_dict
[
'family-default'
],
param_dict
[
'site-id'
])
# TODO credentials in url
return
xmlrpclib
.
ServerProxy
(
url
)
@
classmethod
def
prepareOldInstance
(
cls
):
erp5
=
cls
.
_getERP5XMLRPCClient
()
erp5
.
portal_configurator
.
configure
...
def
test
(
self
):
erp5
=
this
.
_getERP5XMLRPCClient
()
repo_bt_list
=
"TODO: paths of repositories from new software"
# update repository
try
:
erp5
.
portal_templates
.
updateRepositoryBusinessTemplateList
(
repo_bt_list
)
except
xmlrpclib
.
ProtocolError
as
e
:
if
e
.
errcode
!=
302
and
not
"business templates updated successfully"
in
e
.
headers
[
'location'
]:
raise
repo_bt_list
=
erp5
.
portal_templates
.
getRepositoryList
()
self
.
logger
.
info
(
'Updated repository to %s'
,
repo_bt_list
)
try
:
erp5
.
portal_templates
.
download
(
'/'
.
join
([
erp5_bt_repo
,
'erp5_upgrader'
]))
except
xmlrpclib
.
ProtocolError
as
e
:
if
e
.
errcode
!=
302
and
not
"Business templates downloaded successfully"
in
e
.
headers
[
'Location'
]:
raise
bt
=
e
.
headers
[
'Location'
].
split
(
'?'
)[
0
].
split
(
'/'
)[
-
1
]
getattr
(
erp5
.
portal_templates
,
bt
).
install
()
self
.
assertEqual
(
"installed"
,
getattr
(
erp5
.
portal_templates
,
bt
).
getInstallationState
())
self
.
logger
.
info
(
"Installed erp5_upgrader as %s"
,
bt
)
erp5
.
portal_alarms
.
promise_check_upgrade
.
activeSense
()
self
.
logger
.
info
(
"Running promise_check_upgrade active sense"
)
for
i
in
range
(
100
):
time
.
sleep
(
i
)
if
erp5
.
portal_alarms
.
promise_check_upgrade
.
hasActivity
():
# TODO: this breaks too early this check is not correct.
# TODO: maybe check portal_activities has activity instead ?
break
else
:
self
.
fail
(
"Error, promise_check_upgrade is still running"
)
self
.
assertEqual
(
'looks good'
,
erp5
.
inspectState
())
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment