summaryrefslogtreecommitdiff
path: root/qa/qa/specs/features/api/1_manage/users_spec.rb
blob: ba1ba204d24ab33252e57277df08fff5442c6926 (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
# frozen_string_literal: true

module QA
  context 'Manage' do
    describe 'Users API' do
      before(:context) do
        @api_client = Runtime::API::Client.new(:gitlab)
      end

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

      it 'GET /users' do
        get request.url

        expect_status(200)
      end

      it 'GET /users/:username with a valid username' do
        get request.url, { params: { username: Runtime::User.username } }

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

      it 'GET /users/:username with an invalid username' do
        get request.url, { params: { username: SecureRandom.hex(10) } }

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