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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
slapos.toolbox
Commits
03eb928c
Commit
03eb928c
authored
Feb 04, 2014
by
Nicolas Wavrant
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
resiliency-test: more stable function used for getting log file
parent
6c7f04b1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
16 deletions
+20
-16
slapos/resiliencytest/suites/slaprunner.py
slapos/resiliencytest/suites/slaprunner.py
+20
-16
No files found.
slapos/resiliencytest/suites/slaprunner.py
View file @
03eb928c
...
...
@@ -30,6 +30,7 @@ from .resiliencytestsuite import ResiliencyTestSuite
import
base64
import
cookielib
import
json
import
random
import
string
import
time
...
...
@@ -91,24 +92,27 @@ class SlaprunnerTestSuite(ResiliencyTestSuite):
Store the logfile (=data) of the instance, check it is not empty nor it is
html.
"""
time
.
sleep
(
30
)
data
=
self
.
_connectToSlaprunner
(
resource
=
'
fileBrowser
'
,
data
=
'opt=9&filename=log.log&dir=instance_root%252Fslappart0%252Fvar%252Flog%252F'
resource
=
'
getFileContent
'
,
data
=
"file=instance_root/slappart0/var/log/log.log"
)
self
.
logger
.
info
(
'Retrieved data are:
\
n
%s'
%
data
)
if
data
.
find
(
'<'
)
is
not
-
1
:
raise
IOError
(
'Could not retrieve logfile content: retrieved content is html.'
)
if
data
.
find
(
'Could not load'
)
is
not
-
1
:
raise
IOError
(
'Could not retrieve logfile content: server could not load the file.'
)
if
data
.
find
(
'Hello'
)
is
-
1
:
raise
IOError
(
'Could not retrieve logfile content: retrieve content does not match "Hello".'
)
try
:
data
=
json
.
loads
(
data
)[
'result'
]
self
.
logger
.
info
(
'Retrieved data are:
\
n
%s'
%
data
)
except
(
ValueError
,
KeyError
):
if
data
.
find
(
'<'
)
is
not
-
1
:
raise
IOError
(
'Could not retrieve logfile content: retrieved content is html.'
)
if
data
.
find
(
'Could not load'
)
is
not
-
1
:
raise
IOError
(
'Could not retrieve logfile content: server could not load the file.'
)
if
data
.
find
(
'Hello'
)
is
-
1
:
raise
IOError
(
'Could not retrieve logfile content: retrieve content does not match "Hello".'
)
return
data
def
_waitForSoftwareBuild
(
self
):
...
...
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