summaryrefslogtreecommitdiff
path: root/spec/lib/constraints/constrainer_helper_spec.rb
blob: 27c8d72aefc0386b0e8c4f5c48d21e6a80bd248b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require 'spec_helper'

describe ConstrainerHelper, lib: true do
  include ConstrainerHelper

  describe '#extract_resource_path' do
    it { expect(extract_resource_path('/gitlab/')).to eq('gitlab') }
    it { expect(extract_resource_path('///gitlab//')).to eq('gitlab') }
    it { expect(extract_resource_path('/gitlab.atom')).to eq('gitlab') }

    context 'relative url' do
      before do
        allow(Gitlab::Application.config).to receive(:relative_url_root) { '/gitlab' }
      end

      it { expect(extract_resource_path('/gitlab/foo')).to eq('foo') }
      it { expect(extract_resource_path('/foo/bar')).to eq('foo/bar') }
    end
  end
end