Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.toolbox
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
Boxiang Sun
slapos.toolbox
Commits
fac682fb
Commit
fac682fb
authored
Feb 22, 2017
by
Alain Takoudjou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add gitlab resiliency test suite script
parent
9d7405cc
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
233 additions
and
1 deletion
+233
-1
setup.py
setup.py
+1
-0
slapos/resiliencytest/suites/gitlab.py
slapos/resiliencytest/suites/gitlab.py
+231
-0
slapos/resiliencytest/suites/slaprunner.py
slapos/resiliencytest/suites/slaprunner.py
+1
-1
No files found.
setup.py
View file @
fac682fb
...
...
@@ -48,6 +48,7 @@ setup(name=name,
'erp5.util'
,
'PyRSS2Gen'
,
'dnspython'
,
'requests'
,
]
+
additional_install_requires
,
extras_require
=
{
'lampconfigure'
:
[
"mysqlclient"
],
#needed for MySQL Database access
...
...
slapos/resiliencytest/suites/gitlab.py
0 → 100644
View file @
fac682fb
# -*- coding: utf-8 -*-
##############################################################################
#
# Copyright (c) 2014 Vifib SARL and Contributors. All Rights Reserved.
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsibility of assessing all potential
# consequences resulting from its eventual inadequacies and bugs
# End users who are looking for a ready-to-use solution with commercial
# guarantees and support are strongly adviced to contract a Free Software
# Service Company
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 3
# of the License, or (at your option) any later version.
#
# This program 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
##############################################################################
from
.slaprunner
import
SlaprunnerTestSuite
import
json
import
random
import
ssl
import
string
import
time
import
urllib
import
urllib2
import
requests
class
NotHttpOkException
(
Exception
):
pass
class
GitlabTestSuite
(
SlaprunnerTestSuite
):
"""
Run Gitlab inside Slaprunner Resiliency Test.
Note: requires specific kernel allowing long shebang paths.
"""
def
_setGitlabInstanceParameter
(
self
):
"""
Set inside of slaprunner the instance parameter to use to deploy gitlab instance.
"""
self
.
logger
.
info
(
'Updating instance parameter to use to deploy gitlab instance...'
)
self
.
_connectToSlaprunner
(
resource
=
'saveParameterXml'
,
data
=
'software_type=gitlab-test¶meter=%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3Cinstance%3E%0A%3C%2Finstance%3E'
)
def
_connectToGitlab
(
self
,
path
=
''
,
post_data
=
None
,
url
=
''
,
params
=
{}):
request_url
=
self
.
backend_url
if
url
:
request_url
=
url
if
path
:
request_url
+=
'/'
+
path
headers
=
{
"PRIVATE-TOKEN"
:
self
.
private_token
}
if
post_data
is
None
:
response
=
requests
.
get
(
request_url
,
params
=
params
,
headers
=
headers
,
verify
=
False
)
elif
post_data
==
{}:
response
=
requests
.
post
(
request_url
,
params
=
params
,
headers
=
header
,
verify
=
False
)
else
:
response
=
requests
.
post
(
request_url
,
params
=
params
,
headers
=
header
,
data
=
post_data
,
verify
=
False
)
if
not
response
.
ok
:
raise
Exception
(
"ERROR connecting to Gitlab: %s: %s
\
n
%s"
%
(
response
.
status_code
,
response
.
reason
,
response
.
text
))
return
response
.
text
def
_createNewProject
(
self
,
name
,
namespace
=
'open'
):
uri
=
'api/v3/projects'
params
=
{
'name'
:
name
,
'namespace'
:
namespace
}
return
self
.
_connectToGitlab
(
uri
,
post_data
=
{},
param
=
params
)
def
_listProjects
(
self
):
path
=
'api/v3/projects'
return
json
.
loads
(
self
.
_connectToGitlab
(
path
=
path
))
def
_setGitlabConnectionParameter
(
self
):
"""
set parameters of gitlab instance.
Note: it is not connection parameter of slaprunner,
but connection parameter of what is inside of webrunner.
"""
data
=
self
.
_connectToSlaprunner
(
resource
=
'getConnectionParameter/slappart0'
)
parameter_dict
=
json
.
loads
(
data
)
self
.
backend_url
=
parameter_dict
[
'backend_url'
]
self
.
password
=
parameter_dict
[
'password'
]
self
.
private_token
=
parameter_dict
[
'private-token'
]
self
.
file_uri
=
parameter_dict
[
'latest-file-uri'
]
def
_getRootPassword
(
self
):
data
=
self
.
_connectToSlaprunner
(
resource
=
'getConnectionParameter/slappart0'
)
password
=
json
.
loads
(
json
.
loads
(
data
)[
'_'
])[
'password'
]
self
.
logger
.
info
(
'Retrieved gitlab root password is:
\
n
%s'
%
password
)
return
password
def
generateData
(
self
):
self
.
slaprunner_password
=
''
.
join
(
random
.
SystemRandom
().
sample
(
string
.
ascii_lowercase
,
8
)
)
self
.
slaprunner_user
=
'slapos'
self
.
logger
.
info
(
'Generated slaprunner user is: %s'
%
self
.
slaprunner_user
)
self
.
logger
.
info
(
'Generated slaprunner password is: %s'
%
self
.
slaprunner_password
)
def
pushDataOnMainInstance
(
self
):
"""
Create a dummy Software Release,
Build it,
Wait for build to be successful,
Deploy instance,
Wait for instance to be started.
Store the main IP of the slaprunner for future use.
"""
self
.
logger
.
debug
(
'Getting the backend URL...'
)
parameter_dict
=
self
.
_getPartitionParameterDict
()
self
.
slaprunner_backend_url
=
parameter_dict
[
'backend-url'
]
self
.
logger
.
info
(
'backend_url is %s.'
%
self
.
slaprunner_backend_url
)
self
.
slaprunner_user
=
parameter_dict
[
'init-user'
]
self
.
slaprunner_password
=
parameter_dict
[
'init-password'
]
self
.
_login
()
time
.
sleep
(
10
)
self
.
_gitClone
()
self
.
_openSoftwareRelease
(
'gitlab'
)
self
.
_setGitlabInstanceParameter
()
self
.
logger
.
info
(
'Waiting for 1 minutes...'
)
# Debug, remove me.
time
.
sleep
(
60
)
self
.
_buildSoftwareRelease
()
self
.
_deployInstance
()
# wait for unicorn to start then run instance again to install gitlab backup
self
.
logger
.
info
(
'wait 1 minute for unicorn to start then run instance...'
)
time
.
sleep
(
60
)
self
.
_deployInstance
()
self
.
_deployInstance
()
# Stop all services because we want to restart gitlab (safe)
self
.
logger
.
info
(
'Stop all services because we want to restart gitlab..'
)
self
.
_connectToSlaprunner
(
'/stopAllPartition'
)
self
.
_deployInstance
()
self
.
_setGitlabConnectionParameter
()
self
.
logger
.
info
(
'Retrieved gitlab url is:
\
n
%s'
%
self
.
backend_url
)
self
.
logger
.
info
(
'Gitlab root password is:
\
n
%s'
%
self
.
password
)
self
.
logger
.
info
(
'Gitlab private token is:
\
n
%s'
%
self
.
private_token
)
self
.
logger
.
info
(
'Waiting 1 minute so that gitlab can be started...'
)
time
.
sleep
(
60
)
print
self
.
_createNewProject
(
'sample.test'
)
project_list
=
self
.
_listProjects
()
self
.
default_project_list
=
[]
for
project
in
project_list
:
self
.
default_project_list
.
append
(
project
[
'name_with_namespace'
])
self
.
logger
.
info
(
'Gitlab project list is:
\
n
%s'
%
self
.
default_project_list
)
self
.
logger
.
info
(
'Getting test file at url: %s'
%
self
.
file_uri
)
self
.
sample_file
=
self
.
_connectToGitlab
(
url
=
self
.
file_uri
)
self
.
logger
.
info
(
'Wait 10 minutes for main instance to have backup of gitlab...'
)
time
.
sleep
(
60
)
#0)
# in erp5testnode, we have only one IP, so we can't run at the same time
# gitlab in webrunner of main instance, and other services in import script of clone instance
# So we stop main instance processes.
self
.
_connectToSlaprunner
(
'/stopAllPartition'
)
self
.
logger
.
info
(
'Wait half an hour for clone to have compiled Gitlab SR...'
)
#time.sleep(3600 / 2)
time
.
sleep
(
600
)
def
checkDataOnCloneInstance
(
self
):
"""
Check that:
* backend_url is different
* Software Release profile is the same,
* Software Release is built and is the same,
* Instance is deployed and is the same (contains same new data).
"""
old_slaprunner_backend_url
=
self
.
slaprunner_backend_url
self
.
slaprunner_backend_url
=
self
.
_returnNewInstanceParameter
(
parameter_key
=
'backend_url'
,
old_parameter_value
=
old_slaprunner_backend_url
,
force_new
=
True
,
)
self
.
_login
()
self
.
_waitForSoftwareBuild
()
self
.
_deployInstance
()
time
.
sleep
(
60
)
project_list
=
self
.
_listProjects
()
success
=
True
for
project
in
project_list
:
success
=
success
and
(
project
[
'name_with_namespace'
]
in
self
.
default_project_list
)
if
success
:
file_content
=
self
.
_connectToGitlab
(
url
=
self
.
file_uri
)
success
=
success
and
(
file_content
==
self
.
sample_file
)
if
success
:
self
.
logger
.
info
(
'Data are the same: success.'
)
return
True
else
:
self
.
logger
.
info
(
'Data are different: failure.'
)
return
False
def
runTestSuite
(
*
args
,
**
kwargs
):
"""
Run Slaprunner Resiliency Test.
"""
return
GitlabTestSuite
(
*
args
,
**
kwargs
).
runTestSuite
()
slapos/resiliencytest/suites/slaprunner.py
View file @
fac682fb
...
...
@@ -194,7 +194,7 @@ class SlaprunnerTestSuite(ResiliencyTestSuite):
self
.
logger
.
info
(
'git-cloning ongoing, sleeping...'
)
def
_openSoftwareRelease
(
self
,
software_release
=
'slaprunner/test/dummy'
):
self
.
logger
.
debug
(
'Opening
dummy software release...'
)
self
.
logger
.
debug
(
'Opening
%s software release...'
%
software_release
)
self
.
_connectToSlaprunner
(
resource
=
'setCurrentProject'
,
data
=
'path=workspace/slapos/software/%s/'
%
software_release
...
...
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