Sha256: 918b20d817c85eb51e510d176f2f03a9a876199223d6b3c0591dce31473768df

Contents?: true

Size: 1.21 KB

Versions: 4

Compression:

Stored size: 1.21 KB

Contents

module Fog
  module Identity
    class HuaweiCloud
      class V2
        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    => Fog::JSON.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
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
fog-huaweicloud-0.0.3 lib/fog/identity/huaweicloud/v2/requests/create_user.rb
fog-huaweicloud-0.0.2 lib/fog/identity/huaweicloud/v2/requests/create_user.rb
fog-huaweicloud-0.1.3 lib/fog/identity/huaweicloud/v2/requests/create_user.rb
fog-huaweicloud-0.1.2 lib/fog/identity/huaweicloud/v2/requests/create_user.rb