summaryrefslogtreecommitdiff
path: root/qa/qa/specs/features/api/users_spec.rb
blob: d4ff4ebbc9a74ab57b9707d7555bda6d354830c6 (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
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 be_an Array
        expect(json_body.size).to eq(1)
        expect(json_body.first[:username]).to eq 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 be_an Array
        expect(json_body.size).to eq(0)
      end
    end

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

      get request.url

      expect_status(401)
    end
  end
end