Sha256: 7eab1029fd39c72e6c4c86e751c33fae4ecc8be6424b16a37d0d354499b2b30f
Contents?: true
Size: 1.65 KB
Versions: 13
Compression:
Stored size: 1.65 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 print a deprecation warning in the route" do params = {:attributes => {:login => 'testuser1', :password => 'testpass1'}} post "/api/create_user", params, {Rhoconnect::API_TOKEN_HEADER => @api_token} 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 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
13 entries across 13 versions & 1 rubygems