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
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
Hardik Juneja
slapos.core
Commits
69ed98ab
Commit
69ed98ab
authored
May 15, 2012
by
Łukasz Nowak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Factorise mixins.
parent
541accca
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
38 additions
and
33 deletions
+38
-33
master/bt5/vifib_slapos_rest_api_v1_test/TestTemplateItem/testVifibSlaposRestAPIV1.py
..._api_v1_test/TestTemplateItem/testVifibSlaposRestAPIV1.py
+37
-32
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 @
69ed98ab
...
...
@@ -48,7 +48,7 @@ class CustomHeaderHTTPConnection(httplib.HTTPConnection):
kwargs
[
'headers'
]
=
headers
return
httplib
.
HTTPConnection
.
request
(
self
,
*
args
,
**
kwargs
)
class
VifibSlaposRestAPIV1Mixin
(
TestVifibSlapWebServiceMixin
):
class
VifibSlaposRestAPIV1Mixin
Base
(
TestVifibSlapWebServiceMixin
):
def
generateNewId
(
self
):
return
str
(
self
.
getPortalObject
().
portal_ids
.
generateNewId
(
id_group
=
(
'slapos_rest_api_v1_test'
)))
...
...
@@ -56,23 +56,6 @@ class VifibSlaposRestAPIV1Mixin(TestVifibSlapWebServiceMixin):
def
assertCacheControlHeader
(
self
):
self
.
assertEqual
(
'public'
,
self
.
response
.
getheader
(
'Cache-Control'
))
def
createPerson
(
self
):
customer
=
self
.
cloneByPath
(
'person_module/template_member'
)
customer_reference
=
'P'
+
self
.
generateNewId
()
customer
.
edit
(
reference
=
customer_reference
,
default_email_url_string
=
customer_reference
+
'@example.com'
)
customer
.
validate
()
for
assignment
in
customer
.
contentValues
(
portal_type
=
'Assignment'
):
assignment
.
open
()
customer
.
manage_setLocalRoles
(
customer
.
getReference
(),
[
'Associate'
])
transaction
.
commit
()
customer
.
recursiveImmediateReindexObject
()
transaction
.
commit
()
return
customer
,
customer_reference
def
afterSetUp
(
self
):
self
.
setupVifibMachineAuthenticationPlugin
()
self
.
test_random_id
=
self
.
generateNewId
()
...
...
@@ -93,20 +76,6 @@ class VifibSlaposRestAPIV1Mixin(TestVifibSlapWebServiceMixin):
'Content-Type'
:
'application/json'
,
})
self
.
person_request_simulator
=
tempfile
.
mkstemp
()[
1
]
self
.
customer
,
self
.
customer_reference
=
self
.
createPerson
()
self
.
customer
.
requestSoftwareInstance
=
Simulator
(
self
.
person_request_simulator
,
'requestSoftwareInstance'
)
transaction
.
commit
()
def
beforeTearDown
(
self
):
if
os
.
path
.
exists
(
self
.
person_request_simulator
):
os
.
unlink
(
self
.
person_request_simulator
)
def
cloneByPath
(
self
,
path
):
return
self
.
portal
.
restrictedTraverse
(
path
).
Base_createCloneDocument
(
batch_mode
=
1
)
def
prepareResponse
(
self
):
self
.
response
=
self
.
connection
.
getresponse
()
self
.
response_data
=
self
.
response
.
read
()
...
...
@@ -131,6 +100,42 @@ class VifibSlaposRestAPIV1Mixin(TestVifibSlapWebServiceMixin):
def
assertResponseNoContentType
(
self
):
self
.
assertEqual
(
self
.
response
.
getheader
(
'Content-Type'
),
None
)
class
VifibSlaposRestAPIV1Mixin
(
VifibSlaposRestAPIV1MixinBase
):
def
createPerson
(
self
):
customer
=
self
.
cloneByPath
(
'person_module/template_member'
)
customer_reference
=
'P'
+
self
.
generateNewId
()
customer
.
edit
(
reference
=
customer_reference
,
default_email_url_string
=
customer_reference
+
'@example.com'
)
customer
.
validate
()
for
assignment
in
customer
.
contentValues
(
portal_type
=
'Assignment'
):
assignment
.
open
()
customer
.
manage_setLocalRoles
(
customer
.
getReference
(),
[
'Associate'
])
transaction
.
commit
()
customer
.
recursiveImmediateReindexObject
()
transaction
.
commit
()
return
customer
,
customer_reference
def
afterSetUp
(
self
):
super
(
VifibSlaposRestAPIV1Mixin
,
self
).
afterSetUp
()
self
.
setupVifibMachineAuthenticationPlugin
()
self
.
person_request_simulator
=
tempfile
.
mkstemp
()[
1
]
self
.
customer
,
self
.
customer_reference
=
self
.
createPerson
()
self
.
customer
.
requestSoftwareInstance
=
Simulator
(
self
.
person_request_simulator
,
'requestSoftwareInstance'
)
transaction
.
commit
()
def
beforeTearDown
(
self
):
if
os
.
path
.
exists
(
self
.
person_request_simulator
):
os
.
unlink
(
self
.
person_request_simulator
)
def
cloneByPath
(
self
,
path
):
return
self
.
portal
.
restrictedTraverse
(
path
).
Base_createCloneDocument
(
batch_mode
=
1
)
def
assertPersonRequestSimulatorEmpty
(
self
):
self
.
assertEqual
(
open
(
self
.
person_request_simulator
).
read
(),
''
)
...
...
master/bt5/vifib_slapos_rest_api_v1_test/bt/revision
View file @
69ed98ab
51
\ No newline at end of file
52
\ 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