Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
cloudooo
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Roque
cloudooo
Commits
396f5721
Commit
396f5721
authored
Jun 03, 2011
by
Priscila Manhaes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added run_generator method to tests
parent
caf1f2ea
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
1 deletion
+33
-1
cloudooo/tests/cloudoooTestCase.py
cloudooo/tests/cloudoooTestCase.py
+33
-1
No files found.
cloudooo/tests/cloudoooTestCase.py
View file @
396f5721
import
unittest
import
unittest
import
sys
import
sys
from
os
import
environ
from
os
import
environ
,
path
from
ConfigParser
import
ConfigParser
from
ConfigParser
import
ConfigParser
from
xmlrpclib
import
ServerProxy
,
Fault
from
xmlrpclib
import
ServerProxy
,
Fault
from
magic
import
Magic
from
magic
import
Magic
...
@@ -25,6 +25,9 @@ class TestCase(unittest.TestCase):
...
@@ -25,6 +25,9 @@ class TestCase(unittest.TestCase):
self
.
hostname
=
config
.
get
(
"server:main"
,
"host"
)
self
.
hostname
=
config
.
get
(
"server:main"
,
"host"
)
self
.
port
=
config
.
get
(
"server:main"
,
"port"
)
self
.
port
=
config
.
get
(
"server:main"
,
"port"
)
self
.
env_path
=
config
.
get
(
"app:main"
,
"env-path"
)
self
.
env_path
=
config
.
get
(
"app:main"
,
"env-path"
)
#create temporary path for some files
self
.
working_path
=
config
.
get
(
"app:main"
,
"working_path"
)
self
.
tmp_url
=
path
.
join
(
self
.
working_path
,
"tmp"
)
self
.
proxy
=
ServerProxy
((
"http://%s:%s/RPC2"
%
(
self
.
hostname
,
self
.
port
)),
\
self
.
proxy
=
ServerProxy
((
"http://%s:%s/RPC2"
%
(
self
.
hostname
,
self
.
port
)),
\
allow_none
=
True
)
allow_none
=
True
)
self
.
afterSetUp
()
self
.
afterSetUp
()
...
@@ -97,6 +100,24 @@ class TestCase(unittest.TestCase):
...
@@ -97,6 +100,24 @@ class TestCase(unittest.TestCase):
self
.
assertEquals
(
response_message
,
expected_response_message
)
self
.
assertEquals
(
response_message
,
expected_response_message
)
self
.
assertEquals
(
response_dict
[
'meta'
][
'MIMEType'
],
response_dict_meta
)
self
.
assertEquals
(
response_dict
[
'meta'
][
'MIMEType'
],
response_dict_meta
)
def
_testRunGenerate
(
self
,
filename
,
data
,
meta
,
source_format
,
destination_format
,
expected_response_code
,
response_dict_data
,
response_dict_mime
):
"""Generic test for run_generate"""
generate_result
=
self
.
proxy
.
run_generate
(
filename
,
encodestring
(
data
),
meta
,
destination_format
,
source_format
)
response_code
,
response_dict
,
response_message
=
generate_result
self
.
assertEquals
(
response_code
,
expected_response_code
)
self
.
assertEquals
(
type
(
response_dict
),
DictType
)
if
expected_response_code
==
402
:
self
.
assertEquals
(
response_dict
,
{})
self
.
assertTrue
(
response_message
.
startswith
(
'Traceback'
))
else
:
self
.
assertNotEquals
(
response_dict
[
'data'
],
response_dict_data
)
self
.
assertEquals
(
response_dict
[
'mime'
],
response_dict_mime
)
def
ConversionScenarioList
(
self
):
def
ConversionScenarioList
(
self
):
"""
"""
Method used to convert files
Method used to convert files
...
@@ -162,3 +183,14 @@ class TestCase(unittest.TestCase):
...
@@ -162,3 +183,14 @@ class TestCase(unittest.TestCase):
def
runConvertScenarioList
(
self
,
scenarios
):
def
runConvertScenarioList
(
self
,
scenarios
):
for
scenario
in
scenarios
:
for
scenario
in
scenarios
:
self
.
_testRunConvert
(
*
scenario
)
self
.
_testRunConvert
(
*
scenario
)
def
GenerateScenarioList
(
self
):
"""
Method to verify run_generate
must be overwrited into subclasses
"""
return
[]
def
runGenerateScenarioList
(
self
,
scenarios
):
for
scenario
in
scenarios
:
self
.
_testRunGenerate
(
*
scenario
)
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