mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
f2bd2404d1
This reverts commits:66638b25d7
,3f0314dbd1
, and18ce4b7eca
. Since google-api-client was added as a dependency inafa9b025e9
, multi_json is a de facto dependency of fog, so this is a needless layer. If #1034 is still an issue, I'd be happy to ship a version of multi_json that requires rubygems >= 1.3.5.
47 lines
1.1 KiB
Ruby
47 lines
1.1 KiB
Ruby
module Fog
|
|
module Identity
|
|
class OpenStack
|
|
class Real
|
|
|
|
def create_user(name, password, email, tenantId=nil, enabled=true)
|
|
data = {
|
|
'user' => {
|
|
'name' => name,
|
|
'password' => password,
|
|
'tenantId' => tenantId,
|
|
'email' => email,
|
|
'enabled' => enabled,
|
|
}
|
|
}
|
|
|
|
request(
|
|
:body => MultiJson.encode(data),
|
|
:expects => [200, 202],
|
|
:method => 'POST',
|
|
:path => '/users'
|
|
)
|
|
end
|
|
|
|
end
|
|
|
|
class Mock
|
|
|
|
def create_user(name, password, email, tenantId=nil, enabled=true)
|
|
response = Excon::Response.new
|
|
response.status = 200
|
|
data = {
|
|
'id' => Fog::Mock.random_hex(32),
|
|
'name' => name,
|
|
'email' => email,
|
|
'tenantId' => tenantId,
|
|
'enabled' => enabled
|
|
}
|
|
self.data[:users][data['id']] = data
|
|
response.body = { 'user' => data }
|
|
response
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|