Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos
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
Léo-Paul Géneau
slapos
Commits
a4126731
Commit
a4126731
authored
Jan 17, 2012
by
Cédric de Saint Martin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
selenium : Assert that test result is empty at start
parent
8682f8d1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
29 deletions
+31
-29
slapos/recipe/seleniumrunner/testrunner.py
slapos/recipe/seleniumrunner/testrunner.py
+31
-29
No files found.
slapos/recipe/seleniumrunner/testrunner.py
View file @
a4126731
...
@@ -47,36 +47,38 @@ def run(args):
...
@@ -47,36 +47,38 @@ def run(args):
# Clean old test results if any
# Clean old test results if any
openUrl
(
'%s/TestTool_cleanUpTestResults?__ac_name=%s&__ac_password=%s'
%
(
openUrl
(
'%s/TestTool_cleanUpTestResults?__ac_name=%s&__ac_password=%s'
%
(
config
[
'base_url'
],
config
[
'user'
],
config
[
'password'
]))
config
[
'base_url'
],
config
[
'user'
],
config
[
'password'
]))
# TODO assert getresult is None
if
getStatus
(
config
[
'base_url'
])
is
not
''
:
print
(
"ERROR : Impossible to clean old test result(s)"
)
os
.
environ
[
'DISPLAY'
]
=
config
[
'display'
]
else
:
xvfb
=
Xvfb
(
config
[
'etc_directory'
],
config
[
'xvfb_binary'
])
# Environment is ready, we launch test.
profile_dir
=
os
.
path
.
join
(
config
[
'etc_directory'
],
'profile'
)
os
.
environ
[
'DISPLAY'
]
=
config
[
'display'
]
browser
=
Firefox
(
profile_dir
,
config
[
'base_url'
],
config
[
'browser_binary'
])
xvfb
=
Xvfb
(
config
[
'etc_directory'
],
config
[
'xvfb_binary'
])
try
:
start
=
time
.
time
()
xvfb
.
run
()
profile_dir
=
os
.
path
.
join
(
config
[
'etc_directory'
],
'profile'
)
profile_dir
=
os
.
path
.
join
(
config
[
'etc_directory'
],
'profile'
)
browser
.
run
(
test_url
,
xvfb
.
display
)
browser
=
Firefox
(
profile_dir
,
config
[
'base_url'
],
config
[
'browser_binary'
])
erp5_report
.
reportStart
()
try
:
while
getStatus
(
config
[
'base_url'
])
is
''
:
start
=
time
.
time
()
time
.
sleep
(
10
)
xvfb
.
run
()
if
(
time
.
time
()
-
start
)
>
float
(
timeout
):
profile_dir
=
os
.
path
.
join
(
config
[
'etc_directory'
],
'profile'
)
raise
TimeoutError
(
"Test took more them %s seconds"
%
timeout
)
browser
.
run
(
test_url
,
xvfb
.
display
)
except
TimeoutError
:
erp5_report
.
reportStart
()
continue
while
getStatus
(
config
[
'base_url'
])
is
''
:
finally
:
time
.
sleep
(
10
)
browser
.
quit
()
if
(
time
.
time
()
-
start
)
>
float
(
timeout
):
xvfb
.
quit
()
raise
TimeoutError
(
"Test took more them %s seconds"
%
timeout
)
except
TimeoutError
:
erp5_report
.
reportFinished
(
getStatus
(
config
[
'base_url'
]).
encode
(
"utf-8"
,
continue
"replace"
))
finally
:
browser
.
quit
()
# Clean test results for next test
xvfb
.
quit
()
openUrl
(
'%s/TestTool_cleanUpTestResults?__ac_name=%s&__ac_password=%s'
%
(
config
[
'base_url'
],
config
[
'user'
],
config
[
'password'
]))
erp5_report
.
reportFinished
(
getStatus
(
config
[
'base_url'
]).
encode
(
"utf-8"
,
"replace"
))
print
(
"Test finished and report sent, sleeping."
)
# Clean test results for next test
openUrl
(
'%s/TestTool_cleanUpTestResults?__ac_name=%s&__ac_password=%s'
%
(
config
[
'base_url'
],
config
[
'user'
],
config
[
'password'
]))
print
(
"Test finished and report sent, sleeping."
)
sleep
(
3600
)
sleep
(
3600
)
def
openUrl
(
url
):
def
openUrl
(
url
):
...
...
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