Sha256: f00e141d695128258d7d5050cddf580b3be389fab19636656bcdd6be6b6a3a3f

Contents?: true

Size: 1.14 KB

Versions: 2

Compression:

Stored size: 1.14 KB

Contents

require_relative '../../spec_helper'

describe RestPack::User::Service::Commands::User::Get do
  is_required :id, :application_id

  let(:response) { subject.class.run(params) }
  let(:params) { {} }

  before do
    @user = create(:user)
  end

  context 'with valid params' do
    let(:params) { {
      id: @user.id,
      application_id: @user.application_id
    } }

    it 'is valid' do
      response.success?.should == true
    end

    it 'return the user' do
      response.result[:users].length.should == 1
      response.result[:users].first[:id].should == @user.id.to_s
    end
  end

  context 'with invalid :id' do
    let(:params) { {
      id: 142857,
      application_id: @user.application_id
    }}

    it 'is :not_found' do
      response.success?.should == false
      response.result.should == {}
      response.status.should == :not_found
    end
  end

  context 'with invalid :application_id' do
    let(:params) { {
      id: @user.id,
      application_id: 142857
    }}

    it 'is :not_found' do
      response.success?.should == false
      response.result.should == {}
      response.status.should == :not_found
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
restpack_user_service-0.0.3 spec/commands/user/get_spec.rb
restpack_user_service-0.0.2 spec/commands/user/get_spec.rb