Sha256: a595cd245bed0965f70f3a0e69d71f4f7f1aaa6f2f0d075d2dcee2aaec3b50d1

Contents?: true

Size: 1.94 KB

Versions: 8

Compression:

Stored size: 1.94 KB

Contents

require File.join(File.dirname(__FILE__),'..','api_helper')

describe "RhoconnectApiCreateUser" do
  it_should_behave_like "ApiHelper" do
    it "should create user" do
      params = {:attributes => {:login => 'testuser1', :password => 'testpass1'}}
      post "/rc/#{Rhoconnect::API_VERSION}/users", params, {Rhoconnect::API_TOKEN_HEADER => @api_token}
      last_response.should be_ok
      User.load(params[:attributes][:login]).login.should == params[:attributes][:login]
      User.authenticate(params[:attributes][:login],
        params[:attributes][:password]).login.should == params[:attributes][:login]
      @a.users.members.sort.should == [@u.login, params[:attributes][:login]]
    end
    
    it "should create user and post a deprecation warning with the old route" do
      params = {:api_token => @api_token,
        :attributes => {:login => 'testuser1', :password => 'testpass1'}}
      post "/api/create_user", params
      last_response.should be_ok
      last_response.headers["Warning"].index('deprecated').should_not == nil
      User.load(params[:attributes][:login]).login.should == params[:attributes][:login]
      User.authenticate(params[:attributes][:login],
        params[:attributes][:password]).login.should == params[:attributes][:login]
      @a.users.members.sort.should == [@u.login, params[:attributes][:login]]
    end
    
    it "should not create user without the api_token" do
      params = {:attributes => {:login => 'testuser1', :password => 'testpass1'}}
      post "/rc/#{Rhoconnect::API_VERSION}/users", params, {}
      last_response.status.should == 422
      User.is_exist?('testuser1').should == false
    end
      
    it "should not create user with empty login" do
      params = {:attributes => {:login => '', :password => ''}}
      post "/rc/#{Rhoconnect::API_VERSION}/users", params, {Rhoconnect::API_TOKEN_HEADER => @api_token}
      last_response.should_not be_ok
      User.is_exist?('').should == false
    end
  end 
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
rhoconnect-4.0.4 spec/api/user/create_user_spec.rb
rhoconnect-4.0.3 spec/api/user/create_user_spec.rb
rhoconnect-4.0.2 spec/api/user/create_user_spec.rb
rhoconnect-4.0.1 spec/api/user/create_user_spec.rb
rhoconnect-4.0.0 spec/api/user/create_user_spec.rb
rhoconnect-4.0.0.beta.24 spec/api/user/create_user_spec.rb
rhoconnect-4.0.0.beta.10 spec/api/user/create_user_spec.rb
rhoconnect-4.0.0.beta.12 spec/api/user/create_user_spec.rb