Welcome to mirror list, hosted at ThFree Co, Russian Federation.

team_spec.rb « mattermost « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d4fe63fcd8b15bf81b1b824c3b933163e0f51259 (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
require 'spec_helper'

describe Mattermost::Team do
  describe '.team_admin' do
    let(:session) { double("session") }

    let(:response) do
      [{
        "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

    let(:json) { nil }

    before do
      allow(session).to receive(:get).with('/api/v3/teams/all').
        and_return(json)
      allow(json).to receive(:parsed_response).and_return(response)
    end

    it 'gets the teams' do
      expect(described_class.all(session).count).to be(1)
    end

    it 'filters on being team admin' do
      ids = described_class.all(session).map { |team| team['id'] }

      expect(ids).to include("xiyro8huptfhdndadpz8r3wnbo")
    end
  end
end