Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
itminedu
kamaki
Commits
07331695
Commit
07331695
authored
Oct 23, 2015
by
Stavros Sachtouris
Committed by
Giorgos Korfiatis
Oct 30, 2015
Browse files
Cyclades Compute: Implement volume attachment API
parent
d06acec2
Changes
3
Show whitespace changes
Inline
Side-by-side
kamaki/clients/cyclades/__init__.py
View file @
07331695
...
...
@@ -214,6 +214,57 @@ class CycladesComputeClient(CycladesComputeRestClient, Waiter):
# Backwards compatibility - deprecated, will be replaced in 0.15
wait_server
=
wait_server_while
# Volume attachment extensions
def
get_volume_attachment
(
self
,
server_id
,
attachment_id
):
"""
:param server_id: (str)
:param attachment_id: (str)
:returns: (dict) details on the volume attachment
"""
r
=
self
.
volume_attachment_get
(
server_id
,
attachment_id
)
return
r
.
json
[
'volumeAttachment'
]
def
list_volume_attachments
(
self
,
server_id
):
"""
:param server_id: (str)
:returns: (list) all volume attachments for this server
"""
r
=
self
.
volume_attachment_get
(
server_id
)
return
r
.
json
[
'volumeAttachments'
]
def
attach_volume
(
self
,
server_id
,
volume_id
):
"""Attach volume on server
:param server_id: (str)
:volume_id: (str)
:returns: (dict) information on attachment (contains volumeId)
"""
r
=
self
.
volume_attachment_post
(
server_id
,
volume_id
)
return
r
.
json
[
'volumeAttachment'
]
def
delete_volume_attachment
(
self
,
server_id
,
attachment_id
):
"""Delete a volume attachment. The volume will not be deleted.
:param server_id: (str)
:param attachment_id: (str)
:returns: (dict) HTTP response headers
"""
r
=
self
.
volume_attachment_delete
(
server_id
,
attachment_id
)
return
r
.
headers
def
detach_volume
(
self
,
server_id
,
volume_id
):
"""Remove volume attachment(s) for this volume and server
This is not an atomic operation. Use "delete_volume_attachment" for an
atomic operation with similar semantics.
:param server_id: (str)
:param volume_id: (str)
:returns: (list) the deleted attachments
"""
all_atts
=
self
.
list_volume_attachments
(
server_id
)
vstr
=
'%s'
%
volume_id
attachments
=
[
a
for
a
in
all_atts
if
(
'%s'
%
a
[
'volumeId'
])
==
vstr
]
for
attachment
in
attachments
:
self
.
delete_volume_attachment
(
server_id
,
attachment
[
'id'
])
return
attachments
# Backwards compatibility - will be removed in 0.15
CycladesClient
=
CycladesComputeClient
...
...
kamaki/clients/cyclades/rest_api.py
View file @
07331695
...
...
@@ -49,6 +49,25 @@ class CycladesComputeRestClient(ComputeClient):
path
=
path4url
(
'servers'
,
server_id
,
'diagnostics'
)
return
self
.
get
(
path
,
success
=
200
,
**
kwargs
)
def
volume_attachment_get
(
self
,
server_id
,
attachment_id
=
None
,
**
kwargs
):
path_args
=
[
'servers'
,
server_id
,
'os-volume_attachments'
]
path_args
+=
[
attachment_id
,
]
if
attachment_id
else
[]
path
=
path4url
(
*
path_args
)
success
=
kwargs
.
pop
(
'success'
,
200
)
return
self
.
get
(
path
,
success
=
success
,
**
kwargs
)
def
volume_attachment_post
(
self
,
server_id
,
volume_id
,
**
kwargs
):
path
=
path4url
(
'servers'
,
server_id
,
'os-volume_attachments'
)
data
=
dict
(
volumeAttachment
=
dict
(
volumeId
=
volume_id
))
success
=
kwargs
.
pop
(
'success'
,
202
)
return
self
.
post
(
path
,
json
=
data
,
success
=
success
,
**
kwargs
)
def
volume_attachment_delete
(
self
,
server_id
,
attachment_id
,
**
kwargs
):
path
=
path4url
(
'servers'
,
server_id
,
'os-volume_attachments'
,
attachment_id
)
success
=
kwargs
.
pop
(
'success'
,
202
)
return
self
.
delete
(
path
,
success
=
success
,
**
kwargs
)
# Backwards compatibility
CycladesRestClient
=
CycladesComputeRestClient
...
...
kamaki/clients/cyclades/test.py
View file @
07331695
...
...
@@ -113,10 +113,39 @@ class CycladesComputeRestClient(TestCase):
get
.
assert_called_once_with
(
'/servers/%s/diagnostics'
%
server_id
,
success
=
200
)
@
patch
(
'kamaki.clients.Client.get'
,
return_value
=
'ret'
)
def
test_volume_attachment_get
(
self
,
get
):
server_id
=
'server-id'
for
attachment_id
in
(
'attachment-id'
,
None
):
r
=
self
.
client
.
volume_attachment_get
(
server_id
,
attachment_id
)
self
.
assertEqual
(
r
,
'ret'
)
actual
=
get
.
mock_calls
[
-
1
]
path
=
u
'/servers/%s/os-volume_attachments'
%
server_id
path
+=
(
'/%s'
%
attachment_id
)
if
attachment_id
else
''
expexted
=
call
(
path
,
success
=
200
)
self
.
assertEqual
(
actual
,
expexted
)
@
patch
(
'kamaki.clients.Client.post'
,
return_value
=
'ret'
)
def
test_volume_attachment_post
(
self
,
post
):
server_id
,
volume_id
=
'server-id'
,
'volume-id'
r
=
self
.
client
.
volume_attachment_post
(
server_id
,
volume_id
)
self
.
assertEqual
(
r
,
'ret'
)
post
.
assert_called_once_with
(
u
'/servers/%s/os-volume_attachments'
%
server_id
,
json
=
{
'volumeAttachment'
:
{
'volumeId'
:
volume_id
}},
success
=
200
)
@
patch
(
'kamaki.clients.Client.delete'
)
def
test_volume_attachment_delete
(
self
,
delete
):
server_id
,
att_id
=
'server-id'
,
'attachment-id'
self
.
client
.
volume_attachment_delete
(
server_id
,
att_id
)
delete
.
assert_called_once_with
(
u
'/servers/%s/os-volume_attachments/%s'
%
(
server_id
,
att_id
),
success
=
200
)
class
CycladesNetworkClient
(
TestCase
):
"""Set up a thorough Network client test"""
"""Set up a ComputesRest thorough test"""
def
setUp
(
self
):
self
.
url
=
'http://network.example.com'
self
.
token
=
'n2tw0rk70k3n'
...
...
@@ -238,6 +267,50 @@ class CycladesComputeClient(TestCase):
vm_id
,
json_data
=
dict
(
console
=
dict
(
type
=
ctype
)),
success
=
200
))
self
.
assert_dicts_are_equal
(
r
,
cnsl
[
'console'
])
@
patch
(
'%s.volume_attachment_get'
%
cyclades_pkg
,
return_value
=
FR
())
def
test_get_volume_attachment
(
self
,
volume_attachment_get
):
server_id
,
att_id
=
'server-id'
,
'attachment-id'
FR
.
json
=
dict
(
volumeAttachment
=
'ret'
)
r
=
self
.
client
.
get_volume_attachment
(
server_id
,
att_id
)
self
.
assertEqual
(
r
,
'ret'
)
volume_attachment_get
.
assert_called_once_with
(
server_id
,
att_id
)
@
patch
(
'%s.volume_attachment_get'
%
cyclades_pkg
,
return_value
=
FR
())
def
test_list_volume_attachments
(
self
,
volume_attachment_get
):
server_id
=
'server-id'
FR
.
json
=
dict
(
volumeAttachments
=
'ret'
)
r
=
self
.
client
.
list_volume_attachments
(
server_id
)
self
.
assertEqual
(
r
,
'ret'
)
volume_attachment_get
.
assert_called_once_with
(
server_id
)
@
patch
(
'%s.volume_attachment_post'
%
cyclades_pkg
,
return_value
=
FR
())
def
test_attach_volume
(
self
,
volume_attachment_post
):
server_id
,
volume_id
=
'server-id'
,
'volume-id'
FR
.
json
=
dict
(
volumeAttachment
=
'ret'
)
r
=
self
.
client
.
attach_volume
(
server_id
,
volume_id
)
self
.
assertEqual
(
r
,
'ret'
)
volume_attachment_post
.
assert_called_once_with
(
server_id
,
volume_id
)
@
patch
(
'%s.volume_attachment_delete'
%
cyclades_pkg
)
def
test_delete_volume_attachment
(
self
,
volume_attachment_delete
):
server_id
,
att_id
=
'server-id'
,
'attachment-id'
self
.
client
.
delete_volume_attachment
(
server_id
,
att_id
)
volume_attachment_delete
.
assert_called_once_with
(
server_id
,
att_id
)
@
patch
(
'%s.list_volume_attachments'
%
cyclades_pkg
,
return_value
=
[
dict
(
id
=
'att-id-1'
,
volumeId
=
'other-id'
),
dict
(
id
=
'att-id-2'
,
volumeId
=
'volume-id'
),
dict
(
id
=
'att-id-3'
,
volumeId
=
'other-id'
),
])
@
patch
(
'%s.delete_volume_attachment'
%
cyclades_pkg
)
def
test_detach_volume
(
self
,
delete_volume_attachment
,
list_volume_attachments
):
server_id
,
volume_id
=
'server-id'
,
'volume-id'
r
=
self
.
client
.
detach_volume
(
server_id
,
volume_id
)
self
.
assertEqual
(
r
,
[
dict
(
id
=
'att-id-2'
,
volumeId
=
'volume-id'
),
])
list_volume_attachments
.
assert_called_once_with
(
server_id
)
delete_volume_attachment
.
assert_called_once_with
(
server_id
,
'att-id-2'
)
clients_pkg
=
'kamaki.clients.Client'
...
...
@@ -343,7 +416,7 @@ if __name__ == '__main__':
not_found
=
True
if
not
argv
[
1
:]
or
argv
[
1
]
==
'CycladesComputeClient'
:
not_found
=
False
runTestCase
(
Cyclades
Network
Client
,
'Cyclades Client'
,
argv
[
2
:])
runTestCase
(
Cyclades
Compute
Client
,
'Cyclades Client'
,
argv
[
2
:])
if
not
argv
[
1
:]
or
argv
[
1
]
==
'CycladesNetworkClient'
:
not_found
=
False
runTestCase
(
CycladesNetworkClient
,
'CycladesNetwork Client'
,
argv
[
2
:])
...
...
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