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
Ivan Tyagov
slapos.core
Commits
c496aefd
Commit
c496aefd
authored
May 03, 2012
by
Łukasz Nowak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Check that OPTIONS on /instance are available for anonymous.
parent
91a9efcd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
3 deletions
+12
-3
master/bt5/vifib_slapos_rest_api_v1_test/TestTemplateItem/testVifibSlaposRestAPIV1.py
..._api_v1_test/TestTemplateItem/testVifibSlaposRestAPIV1.py
+11
-2
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 @
c496aefd
...
@@ -113,6 +113,9 @@ class TestVifibSlaposRestAPIV1(ERP5TypeTestCase):
...
@@ -113,6 +113,9 @@ class TestVifibSlaposRestAPIV1(ERP5TypeTestCase):
self
.
assertEqual
(
self
.
response
.
getheader
(
'Content-Type'
),
'application/json'
)
self
.
assertEqual
(
self
.
response
.
getheader
(
'Content-Type'
),
'application/json'
)
self
.
json_response
=
json
.
loads
(
self
.
response_data
)
self
.
json_response
=
json
.
loads
(
self
.
response_data
)
def
assertResponseNoContentType
(
self
):
self
.
assertEqual
(
self
.
response
.
getheader
(
'Content-Type'
),
None
)
def
assertSimulatorEmpty
(
self
):
def
assertSimulatorEmpty
(
self
):
self
.
assertEqual
(
open
(
self
.
simulator
).
read
(),
''
)
self
.
assertEqual
(
open
(
self
.
simulator
).
read
(),
''
)
...
@@ -311,5 +314,11 @@ class TestVifibSlaposRestAPIV1(ERP5TypeTestCase):
...
@@ -311,5 +314,11 @@ class TestVifibSlaposRestAPIV1(ERP5TypeTestCase):
self
.
json_response
)
self
.
json_response
)
self
.
assertSimulatorEmpty
()
self
.
assertSimulatorEmpty
()
def
test_OPTIONS
(
self
):
def
test_instance_OPTIONS_not_logged_in
(
self
):
raise
NotImplementedError
self
.
connection
.
request
(
method
=
'OPTIONS'
,
url
=
'/'
.
join
([
self
.
api_path
,
'instance'
]))
self
.
prepareResponse
()
self
.
assertBasicResponse
()
self
.
assertResponseCode
(
204
)
self
.
assertResponseNoContentType
()
self
.
assertSimulatorEmpty
()
master/bt5/vifib_slapos_rest_api_v1_test/bt/revision
View file @
c496aefd
10
11
\ 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