summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/lib/gitlab/unique_ip_check_shared_examples.rb
blob: e42a927b5ba1b72f5fadf8fe8ff9b7491cf7ac54 (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
# frozen_string_literal: true

RSpec.shared_examples 'user login operation with unique ip limit' do
  include_context 'unique ips sign in limit' do
    before do
      Gitlab::CurrentSettings.update!(unique_ips_limit_per_user: 1)
    end

    it 'allows user authenticating from the same ip' do
      expect { operation_from_ip('ip') }.not_to raise_error
      expect { operation_from_ip('ip') }.not_to raise_error
    end

    it 'blocks user authenticating from two distinct ips' do
      expect { operation_from_ip('ip') }.not_to raise_error
      expect { operation_from_ip('ip2') }.to raise_error(Gitlab::Auth::TooManyIps)
    end
  end
end

RSpec.shared_examples 'user login request with unique ip limit' do |success_status = 200|
  include_context 'unique ips sign in limit' do
    before do
      Gitlab::CurrentSettings.update!(unique_ips_limit_per_user: 1)
    end

    it 'allows user authenticating from the same ip' do
      expect(request_from_ip('ip')).to have_gitlab_http_status(success_status)
      expect(request_from_ip('ip')).to have_gitlab_http_status(success_status)
    end

    it 'blocks user authenticating from two distinct ips' do
      expect(request_from_ip('ip')).to have_gitlab_http_status(success_status)
      expect(request_from_ip('ip2')).to have_gitlab_http_status(:forbidden)
    end
  end
end