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
Labels
Merge Requests
19
Merge Requests
19
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
nexedi
slapos.core
Commits
feb06320
Commit
feb06320
authored
May 04, 2012
by
Łukasz Nowak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Factorise the test.
Allow for extensibility and separate logical components.
parent
da409aa3
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
36 additions
and
37 deletions
+36
-37
master/bt5/vifib_slapos_rest_api_v1_test/TestTemplateItem/testVifibSlaposRestAPIV1.py
..._api_v1_test/TestTemplateItem/testVifibSlaposRestAPIV1.py
+35
-36
master/bt5/vifib_slapos_rest_api_v1_test/bt/revision
master/bt5/vifib_slapos_rest_api_v1_test/bt/revision
+1
-1
No files found.
master/bt5/vifib_slapos_rest_api_v1_test/TestTemplateItem/testVifibSlaposRestAPIV1.py
View file @
feb06320
...
@@ -34,23 +34,31 @@ class CustomHeaderHTTPConnection(httplib.HTTPConnection):
...
@@ -34,23 +34,31 @@ class CustomHeaderHTTPConnection(httplib.HTTPConnection):
kwargs
[
'headers'
]
=
headers
kwargs
[
'headers'
]
=
headers
return
httplib
.
HTTPConnection
.
request
(
self
,
*
args
,
**
kwargs
)
return
httplib
.
HTTPConnection
.
request
(
self
,
*
args
,
**
kwargs
)
class
TestVifibSlaposRestAPIV1
(
ERP5TypeTestCase
):
class
VifibSlaposRestAPIV1Mixin
(
ERP5TypeTestCase
):
def
generateNewId
(
self
):
def
generateNewId
(
self
):
return
str
(
self
.
getPortalObject
().
portal_ids
.
generateNewId
(
return
str
(
self
.
getPortalObject
().
portal_ids
.
generateNewId
(
id_group
=
(
'slapos_rest_api_v1_test'
)))
id_group
=
(
'slapos_rest_api_v1_test'
)))
def
reindexAndUpdateLocalRoles
(
self
):
def
createPerson
(
self
):
# reindex and update roles for all, and reindex again to update catalog
customer
=
self
.
cloneByPath
(
'person_module/template_member'
)
transaction
.
commit
()
customer_reference
=
'P'
+
self
.
test_random_id
for
o
in
self
.
document_list
:
customer
.
edit
(
o
.
recursiveImmediateReindexObject
()
reference
=
customer_reference
,
default_email_url_string
=
customer_reference
+
'@example.com'
)
customer
.
validate
()
for
assignment
in
customer
.
contentValues
(
portal_type
=
'Assignment'
):
assignment
.
open
()
customer
.
requestSoftwareInstance
=
Person_requestSoftwareInstanceSimulator
(
self
.
simulator
)
transaction
.
commit
()
transaction
.
commit
()
for
o
in
self
.
document_list
:
customer
.
recursiveImmediateReindexObject
()
o
.
updateLocalRolesOnSecurityGroups
()
transaction
.
commit
()
transaction
.
commit
()
for
o
in
self
.
document_list
:
customer
.
updateLocalRolesOnSecurityGroups
()
o
.
recursiveImmediateReindexObject
()
transaction
.
commit
()
transaction
.
commit
()
customer
.
recursiveImmediateReindexObject
()
return
customer
,
customer_reference
def
afterSetUp
(
self
):
def
afterSetUp
(
self
):
self
.
test_random_id
=
self
.
generateNewId
()
self
.
test_random_id
=
self
.
generateNewId
()
...
@@ -59,14 +67,6 @@ class TestVifibSlaposRestAPIV1(ERP5TypeTestCase):
...
@@ -59,14 +67,6 @@ class TestVifibSlaposRestAPIV1(ERP5TypeTestCase):
self
.
document_list
=
[]
self
.
document_list
=
[]
self
.
portal
=
self
.
getPortalObject
()
self
.
portal
=
self
.
getPortalObject
()
self
.
customer
=
self
.
cloneByPath
(
'person_module/template_member'
)
self
.
customer_reference
=
'P'
+
self
.
test_random_id
self
.
customer
.
edit
(
reference
=
self
.
customer_reference
,
default_email_url_string
=
self
.
customer_reference
+
'@example.com'
)
self
.
customer
.
validate
()
for
assignment
in
self
.
customer
.
contentValues
(
portal_type
=
'Assignment'
):
assignment
.
open
()
self
.
api_url
=
self
.
portal
.
portal_vifib_rest_api_v1
.
absolute_url
()
self
.
api_url
=
self
.
portal
.
portal_vifib_rest_api_v1
.
absolute_url
()
self
.
api_scheme
,
self
.
api_netloc
,
self
.
api_path
,
self
.
api_query
,
\
self
.
api_scheme
,
self
.
api_netloc
,
self
.
api_path
,
self
.
api_query
,
\
...
@@ -78,10 +78,9 @@ class TestVifibSlaposRestAPIV1(ERP5TypeTestCase):
...
@@ -78,10 +78,9 @@ class TestVifibSlaposRestAPIV1(ERP5TypeTestCase):
'Accept'
:
'application/json'
,
'Accept'
:
'application/json'
,
'Content-Type'
:
'application/json'
,
'Content-Type'
:
'application/json'
,
})
})
self
.
reindexAndUpdateLocalRoles
()
self
.
simulator
=
tempfile
.
mkstemp
()[
1
]
self
.
simulator
=
tempfile
.
mkstemp
()[
1
]
self
.
customer
.
requestSoftwareInstance
=
Person_requestSoftwareInstanceSimulator
(
self
.
customer
,
self
.
customer_reference
=
self
.
createPerson
()
self
.
simulator
)
transaction
.
commit
()
transaction
.
commit
()
def
beforeTearDown
(
self
):
def
beforeTearDown
(
self
):
...
@@ -89,10 +88,8 @@ class TestVifibSlaposRestAPIV1(ERP5TypeTestCase):
...
@@ -89,10 +88,8 @@ class TestVifibSlaposRestAPIV1(ERP5TypeTestCase):
os
.
unlink
(
self
.
simulator
)
os
.
unlink
(
self
.
simulator
)
def
cloneByPath
(
self
,
path
):
def
cloneByPath
(
self
,
path
):
o
=
self
.
portal
.
restrictedTraverse
(
path
).
Base_createCloneDocument
(
return
self
.
portal
.
restrictedTraverse
(
path
).
Base_createCloneDocument
(
batch_mode
=
1
)
batch_mode
=
1
)
self
.
document_list
.
append
(
o
)
return
o
def
prepareResponse
(
self
):
def
prepareResponse
(
self
):
self
.
response
=
self
.
connection
.
getresponse
()
self
.
response
=
self
.
connection
.
getresponse
()
...
@@ -143,7 +140,8 @@ class TestVifibSlaposRestAPIV1(ERP5TypeTestCase):
...
@@ -143,7 +140,8 @@ class TestVifibSlaposRestAPIV1(ERP5TypeTestCase):
self
.
assertEqual
(
args
,
recargs
)
self
.
assertEqual
(
args
,
recargs
)
self
.
assertEqual
(
kwargs
,
reckwargs
)
self
.
assertEqual
(
kwargs
,
reckwargs
)
def
test_request_not_logged_in
(
self
):
class
TestVifibSlaposRestAPIV1InstanceRequest
(
VifibSlaposRestAPIV1Mixin
):
def
test_not_logged_in
(
self
):
self
.
connection
.
request
(
method
=
'POST'
,
self
.
connection
.
request
(
method
=
'POST'
,
url
=
'/'
.
join
([
self
.
api_path
,
'instance'
]))
url
=
'/'
.
join
([
self
.
api_path
,
'instance'
]))
self
.
prepareResponse
()
self
.
prepareResponse
()
...
@@ -155,7 +153,7 @@ class TestVifibSlaposRestAPIV1(ERP5TypeTestCase):
...
@@ -155,7 +153,7 @@ class TestVifibSlaposRestAPIV1(ERP5TypeTestCase):
self
.
assertTrue
(
'Bearer realm="'
in
auth
)
self
.
assertTrue
(
'Bearer realm="'
in
auth
)
self
.
assertSimulatorEmpty
()
self
.
assertSimulatorEmpty
()
def
test_
request_
no_json
(
self
):
def
test_no_json
(
self
):
self
.
connection
.
request
(
method
=
'POST'
,
self
.
connection
.
request
(
method
=
'POST'
,
url
=
'/'
.
join
([
self
.
api_path
,
'instance'
]),
url
=
'/'
.
join
([
self
.
api_path
,
'instance'
]),
headers
=
{
'REMOTE_USER'
:
self
.
customer_reference
})
headers
=
{
'REMOTE_USER'
:
self
.
customer_reference
})
...
@@ -167,7 +165,7 @@ class TestVifibSlaposRestAPIV1(ERP5TypeTestCase):
...
@@ -167,7 +165,7 @@ class TestVifibSlaposRestAPIV1(ERP5TypeTestCase):
self
.
assertEqual
(
"Data is not json object."
,
self
.
json_response
[
'error'
])
self
.
assertEqual
(
"Data is not json object."
,
self
.
json_response
[
'error'
])
self
.
assertSimulatorEmpty
()
self
.
assertSimulatorEmpty
()
def
test_
request_
bad_json
(
self
):
def
test_bad_json
(
self
):
self
.
connection
.
request
(
method
=
'POST'
,
self
.
connection
.
request
(
method
=
'POST'
,
url
=
'/'
.
join
([
self
.
api_path
,
'instance'
]),
url
=
'/'
.
join
([
self
.
api_path
,
'instance'
]),
body
=
'This is not JSON'
,
body
=
'This is not JSON'
,
...
@@ -180,7 +178,7 @@ class TestVifibSlaposRestAPIV1(ERP5TypeTestCase):
...
@@ -180,7 +178,7 @@ class TestVifibSlaposRestAPIV1(ERP5TypeTestCase):
self
.
assertEqual
(
"Data is not json object."
,
self
.
json_response
[
'error'
])
self
.
assertEqual
(
"Data is not json object."
,
self
.
json_response
[
'error'
])
self
.
assertSimulatorEmpty
()
self
.
assertSimulatorEmpty
()
def
test_
request_
empty_json
(
self
):
def
test_empty_json
(
self
):
self
.
connection
.
request
(
method
=
'POST'
,
self
.
connection
.
request
(
method
=
'POST'
,
url
=
'/'
.
join
([
self
.
api_path
,
'instance'
]),
url
=
'/'
.
join
([
self
.
api_path
,
'instance'
]),
body
=
'{}'
,
body
=
'{}'
,
...
@@ -200,7 +198,7 @@ class TestVifibSlaposRestAPIV1(ERP5TypeTestCase):
...
@@ -200,7 +198,7 @@ class TestVifibSlaposRestAPIV1(ERP5TypeTestCase):
self
.
json_response
)
self
.
json_response
)
self
.
assertSimulatorEmpty
()
self
.
assertSimulatorEmpty
()
def
test_
request_
status_slave_missing_json
(
self
):
def
test_status_slave_missing_json
(
self
):
self
.
connection
.
request
(
method
=
'POST'
,
self
.
connection
.
request
(
method
=
'POST'
,
url
=
'/'
.
join
([
self
.
api_path
,
'instance'
]),
url
=
'/'
.
join
([
self
.
api_path
,
'instance'
]),
body
=
"""
body
=
"""
...
@@ -232,7 +230,7 @@ class TestVifibSlaposRestAPIV1(ERP5TypeTestCase):
...
@@ -232,7 +230,7 @@ class TestVifibSlaposRestAPIV1(ERP5TypeTestCase):
self
.
json_response
)
self
.
json_response
)
self
.
assertSimulatorEmpty
()
self
.
assertSimulatorEmpty
()
def
test_
request_
slave_not_bool
(
self
):
def
test_slave_not_bool
(
self
):
kwargs
=
{
kwargs
=
{
'parameter'
:
{
'parameter'
:
{
'Custom1'
:
'one string'
,
'Custom1'
:
'one string'
,
...
@@ -259,7 +257,7 @@ class TestVifibSlaposRestAPIV1(ERP5TypeTestCase):
...
@@ -259,7 +257,7 @@ class TestVifibSlaposRestAPIV1(ERP5TypeTestCase):
self
.
json_response
)
self
.
json_response
)
self
.
assertSimulatorEmpty
()
self
.
assertSimulatorEmpty
()
def
test_
request_
correct
(
self
):
def
test_correct
(
self
):
kwargs
=
{
kwargs
=
{
'parameter'
:
{
'parameter'
:
{
'Custom1'
:
'one string'
,
'Custom1'
:
'one string'
,
...
@@ -286,7 +284,7 @@ class TestVifibSlaposRestAPIV1(ERP5TypeTestCase):
...
@@ -286,7 +284,7 @@ class TestVifibSlaposRestAPIV1(ERP5TypeTestCase):
},
},
self
.
json_response
)
self
.
json_response
)
def
test_
request_
correct_server_side_raise
(
self
):
def
test_correct_server_side_raise
(
self
):
self
.
customer
.
requestSoftwareInstance
=
\
self
.
customer
.
requestSoftwareInstance
=
\
Person_requestSoftwareInstanceRaisingSimulator
(
AttributeError
)
Person_requestSoftwareInstanceRaisingSimulator
(
AttributeError
)
transaction
.
commit
()
transaction
.
commit
()
...
@@ -316,7 +314,7 @@ class TestVifibSlaposRestAPIV1(ERP5TypeTestCase):
...
@@ -316,7 +314,7 @@ class TestVifibSlaposRestAPIV1(ERP5TypeTestCase):
self
.
json_response
)
self
.
json_response
)
self
.
assertSimulatorEmpty
()
self
.
assertSimulatorEmpty
()
def
test_
request_no_
content_negotiation_headers
(
self
):
def
test_content_negotiation_headers
(
self
):
self
.
connection
=
CustomHeaderHTTPConnection
(
host
=
self
.
api_netloc
,
self
.
connection
=
CustomHeaderHTTPConnection
(
host
=
self
.
api_netloc
,
custom_header
=
{
custom_header
=
{
'Access-Control-Allow-Headers'
:
self
.
access_control_allow_headers
'Access-Control-Allow-Headers'
:
self
.
access_control_allow_headers
...
@@ -365,7 +363,8 @@ class TestVifibSlaposRestAPIV1(ERP5TypeTestCase):
...
@@ -365,7 +363,8 @@ class TestVifibSlaposRestAPIV1(ERP5TypeTestCase):
self
.
assertSimulatorEmpty
()
self
.
assertSimulatorEmpty
()
# and with correct ones are set by default
# and with correct ones are set by default
def
test_instance_OPTIONS_not_logged_in
(
self
):
class
TestVifibSlaposRestAPIV1Instance
(
VifibSlaposRestAPIV1Mixin
):
def
test_OPTIONS_not_logged_in
(
self
):
self
.
connection
=
CustomHeaderHTTPConnection
(
host
=
self
.
api_netloc
,
self
.
connection
=
CustomHeaderHTTPConnection
(
host
=
self
.
api_netloc
,
custom_header
=
{
custom_header
=
{
'Access-Control-Allow-Headers'
:
self
.
access_control_allow_headers
'Access-Control-Allow-Headers'
:
self
.
access_control_allow_headers
...
...
master/bt5/vifib_slapos_rest_api_v1_test/bt/revision
View file @
feb06320
15
17
\ No newline at end of file
\ No newline at end of file
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