Sha256: 3d476bb84126d6c54bfb1e053782b6921921c43c4a598b5ff8e264ea9b1bb085

Contents?: true

Size: 1.8 KB

Versions: 16

Compression:

Stored size: 1.8 KB

Contents

# frozen_string_literal: true

require 'spec_helper'

describe Zoom::Actions::Groups do
  let(:zc) { zoom_client }
  let(:args) { { group_id: 2 } }
  let(:wrong_args) { { group_id: 999999 } }

  describe '#groups_get action' do
    context 'with valid response' do
      before :each do
        stub_request(
          :get,
          zoom_url("/groups/#{args['group_id']}")
        ).to_return(body: json_response('groups', 'get'), headers: { 'Content-Type' => 'application/json' })
      end

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

      it "return 'name' parameter" do
        expect(zc.groups_get(args)['name']).not_to be_nil
      end
    end

    context 'with a 404 response' do
      before :each do
        stub_request(
          :get,
          zoom_url("/groups/#{wrong_args['group_id']}")
        ).to_return(status: 404,
                    body: json_response('error', 'group_does_not_exist'),
                    headers: { 'Content-Type' => 'application/json' })
      end

      it 'raises Zoom::Error exception with text' do
        expect { zc.groups_get(wrong_args) }.to raise_error(Zoom::Error, {
          base: 'A group with this 999999 does not exist.'
        }.to_s)
      end
    end

    context 'with a 400 response' do
      before :each do
        stub_request(
          :get,
          zoom_url("/groups/#{wrong_args['group_id']}")
        ).to_return(status: 400,
                    body: json_response('error', 'group_not_belong_to_account'),
                    headers: { 'Content-Type' => 'application/json' })
      end

      it 'raises Zoom::Error exception with text' do
        expect { zc.groups_get(wrong_args) }.to raise_error(Zoom::Error, {
          base: 'Group does not belong to your account.'
        }.to_s)
      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/groups/get_spec.rb
zoom_rb-1.1.10 spec/lib/zoom/actions/groups/get_spec.rb
zoom_rb-1.1.9 spec/lib/zoom/actions/groups/get_spec.rb
zoom_rb-1.1.8 spec/lib/zoom/actions/groups/get_spec.rb
zoom_rb-1.1.7 spec/lib/zoom/actions/groups/get_spec.rb
zoom_rb-1.1.6 spec/lib/zoom/actions/groups/get_spec.rb
zoom_rb-1.1.5 spec/lib/zoom/actions/groups/get_spec.rb
zoom_rb-1.1.4 spec/lib/zoom/actions/groups/get_spec.rb
zoom_rb-1.1.3 spec/lib/zoom/actions/groups/get_spec.rb
zoom_rb-1.1.2 spec/lib/zoom/actions/groups/get_spec.rb
zoom_rb-1.1.1 spec/lib/zoom/actions/groups/get_spec.rb
zoom_rb-1.1.0 spec/lib/zoom/actions/groups/get_spec.rb
zoom_rb-1.0.2 spec/lib/zoom/actions/groups/get_spec.rb
zoom_rb-1.0.1 spec/lib/zoom/actions/groups/get_spec.rb
zoom_rb-1.0.0 spec/lib/zoom/actions/groups/get_spec.rb
zoom_rb-0.11.0 spec/lib/zoom/actions/groups/get_spec.rb