mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
c054fcb841
Signed-off-by: Nelvin Driz <nelvindriz@live.com>
37 lines
763 B
Ruby
37 lines
763 B
Ruby
module Fog
|
|
module Identity
|
|
class OpenStack
|
|
class Real
|
|
def create_role(name)
|
|
data = {
|
|
'role' => {
|
|
'name' => name
|
|
}
|
|
}
|
|
|
|
request(
|
|
:body => MultiJson.encode(data),
|
|
:expects => [200, 202],
|
|
:method => 'POST',
|
|
:path => '/OS-KSADM/roles'
|
|
)
|
|
end
|
|
end
|
|
|
|
class Mock
|
|
def create_role(name)
|
|
data = {
|
|
'id' => Fog::Mock.random_hex(32),
|
|
'name' => name
|
|
}
|
|
self.data[:roles][data['id']] = data
|
|
Excon::Response.new(
|
|
:body => { 'role' => data },
|
|
:status => 202
|
|
)
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|