summaryrefslogtreecommitdiff
path: root/spec/lib/mattermost/team_spec.rb
blob: e638ad7a2c9413a54a8728b9f0072dae987fcf45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
require 'spec_helper'

describe Mattermost::Team do
  before do
    Mattermost::Session.base_uri('http://mattermost.example.com')

    allow_any_instance_of(Mattermost::Client).to receive(:with_session)
      .and_yield(Mattermost::Session.new(nil))
  end

  describe '#all' do
    subject { described_class.new(nil).all }

    context 'for valid request' do
      let(:response) do
        { "xiyro8huptfhdndadpz8r3wnbo" => {
          "id" => "xiyro8huptfhdndadpz8r3wnbo",
          "create_at" => 1482174222155,
          "update_at" => 1482174222155,
          "delete_at" => 0,
          "display_name" => "chatops",
          "name" => "chatops",
          "email" => "admin@example.com",
          "type" => "O",
          "company_name" => "",
          "allowed_domains" => "",
          "invite_id" => "o4utakb9jtb7imctdfzbf9r5ro",
          "allow_open_invite" => false
        } }
      end

      before do
        stub_request(:get, 'http://mattermost.example.com/api/v3/teams/all')
          .to_return(
            status: 200,
            headers: { 'Content-Type' => 'application/json' },
            body: response.to_json
          )
      end

      it 'returns a token' do
        is_expected.to eq(response.values)
      end
    end

    context 'for error message' do
      before do
        stub_request(:get, 'http://mattermost.example.com/api/v3/teams/all')
          .to_return(
            status: 500,
            headers: { 'Content-Type' => 'application/json' },
            body: {
              id: 'api.team.list.app_error',
              message: 'Cannot list teams.',
              detailed_error: '',
              request_id: 'obc374man7bx5r3dbc1q5qhf3r',
              status_code: 500
            }.to_json
          )
      end

      it 'raises an error with message' do
        expect { subject }.to raise_error(Mattermost::Error, 'Cannot list teams.')
      end
    end
  end
end