Sha256: f240dd037b71ccc55c6ef94c1c29813b0c0a927323706119ab3f23f2b3d4c165

Contents?: true

Size: 1.81 KB

Versions: 16

Compression:

Stored size: 1.81 KB

Contents

# frozen_string_literal: true

require 'spec_helper'

describe Zoom::Actions::User do
  let(:zc) { zoom_client }
  let(:args) { { id: 'z8dsdsdsdsdCfp8uQ' } }

  describe '#user_get action' do
    context 'with a valid response' do
      before :each do
        stub_request(
          :get,
          zoom_url("/users/#{args[:id]}")
          ).to_return(status: 200,
                      body: json_response('user', 'get'),
                      headers: { 'Content-Type' => 'application/json' })
      end

      it 'requires id param' do
        expect { zc.user_get(filter_key(args, :id)) }.to raise_error(Zoom::ParameterMissing, '[:id]')
      end

      it 'allows login type' do
        args[:login_type] = '100'
        expect { zc.user_get(args) }.not_to raise_error
      end

      it 'returns a hash' do
        expect(zc.user_get(args)).to be_kind_of(Hash)
      end

      it 'returns same params' do
        res = zc.user_get(args)

        expect(res['id']).to eq(args[:id])
        expect(res).to have_key('first_name')
        expect(res).to have_key('last_name')
        expect(res).to have_key('email')
        expect(res).to have_key('type')
        expect(res['custom_attributes']).to be_an(Array)
        expect(res['custom_attributes']).to all(be_a(Hash))
        expect(res['group_ids']).to be_an(Array)
        expect(res['im_group_ids']).to be_an(Array)
      end
    end

    context 'with a 4xx response' do
      before :each do
        stub_request(
          :get,
          zoom_url("/users/#{args[:id]}")
        ).to_return(status: 404,
                    body: json_response('error', 'validation'),
                    headers: { 'Content-Type' => 'application/json' })
      end

      it 'raises Zoom::Error exception' do
        expect { zc.user_get(args) }.to raise_error(Zoom::Error)
      end
    end
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
zoom_rb-1.1.11 spec/lib/zoom/actions/user/get_spec.rb
zoom_rb-1.1.10 spec/lib/zoom/actions/user/get_spec.rb
zoom_rb-1.1.9 spec/lib/zoom/actions/user/get_spec.rb
zoom_rb-1.1.8 spec/lib/zoom/actions/user/get_spec.rb
zoom_rb-1.1.7 spec/lib/zoom/actions/user/get_spec.rb
zoom_rb-1.1.6 spec/lib/zoom/actions/user/get_spec.rb
zoom_rb-1.1.5 spec/lib/zoom/actions/user/get_spec.rb
zoom_rb-1.1.4 spec/lib/zoom/actions/user/get_spec.rb
zoom_rb-1.1.3 spec/lib/zoom/actions/user/get_spec.rb
zoom_rb-1.1.2 spec/lib/zoom/actions/user/get_spec.rb
zoom_rb-1.1.1 spec/lib/zoom/actions/user/get_spec.rb
zoom_rb-1.1.0 spec/lib/zoom/actions/user/get_spec.rb
zoom_rb-1.0.2 spec/lib/zoom/actions/user/get_spec.rb
zoom_rb-1.0.1 spec/lib/zoom/actions/user/get_spec.rb
zoom_rb-1.0.0 spec/lib/zoom/actions/user/get_spec.rb
zoom_rb-0.11.0 spec/lib/zoom/actions/user/get_spec.rb