summaryrefslogtreecommitdiff
path: root/qa/qa/specs/features/api/users_spec.rb
blob: 0aecf89e1b7e814760dbc71352652b8a58a211b8 (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
module QA
  feature 'API users', :core do
    before(:context) do
      @api_client = Runtime::API::Client.new(:gitlab)
    end

    context 'when authenticated' do
      let(:request) { Runtime::API::Request.new(@api_client, '/users') }

      scenario 'get list of users' do
        get request.url

        expect_status(200)
      end

      scenario 'submit request with a valid user name' do
        get request.url, { params: { username: Runtime::User.name } }

        expect_status(200)
        expect(json_body).to contain_exactly(
          a_hash_including(username: Runtime::User.name)
        )
      end

      scenario 'submit request with an invalid user name' do
        get request.url, { params: { username: SecureRandom.hex(10) } }

        expect_status(200)
        expect(json_body).to eq([])
      end
    end

    scenario 'submit request with an invalid token' do
      request = Runtime::API::Request.new(@api_client, '/users', private_token: 'invalid')

      get request.url

      expect_status(401)
    end
  end
end