79b9249ff4
Files and Commits render a 404 when running with relative_url_root.
101 lines
3.3 KiB
Ruby
101 lines
3.3 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe ExtractsPath do
|
|
include ExtractsPath
|
|
|
|
let(:project) { double('project') }
|
|
|
|
before do
|
|
@project = project
|
|
project.stub(repository: stub(ref_names: ['master', 'foo/bar/baz', 'v1.0.0', 'v2.0.0']))
|
|
project.stub(path_with_namespace: 'gitlab/gitlab-ci')
|
|
end
|
|
|
|
describe '#extract_ref' do
|
|
it "returns an empty pair when no @project is set" do
|
|
@project = nil
|
|
extract_ref('master/CHANGELOG').should == ['', '']
|
|
end
|
|
|
|
context "without a path" do
|
|
it "extracts a valid branch" do
|
|
extract_ref('master').should == ['master', '']
|
|
end
|
|
|
|
it "extracts a valid tag" do
|
|
extract_ref('v2.0.0').should == ['v2.0.0', '']
|
|
end
|
|
|
|
it "extracts a valid commit ref without a path" do
|
|
extract_ref('f4b14494ef6abf3d144c28e4af0c20143383e062').should ==
|
|
['f4b14494ef6abf3d144c28e4af0c20143383e062', '']
|
|
end
|
|
|
|
it "falls back to a primitive split for an invalid ref" do
|
|
extract_ref('stable').should == ['stable', '']
|
|
end
|
|
end
|
|
|
|
context "with a path" do
|
|
it "extracts a valid branch" do
|
|
extract_ref('foo/bar/baz/CHANGELOG').should == ['foo/bar/baz', 'CHANGELOG']
|
|
end
|
|
|
|
it "extracts a valid tag" do
|
|
extract_ref('v2.0.0/CHANGELOG').should == ['v2.0.0', 'CHANGELOG']
|
|
end
|
|
|
|
it "extracts a valid commit SHA" do
|
|
extract_ref('f4b14494ef6abf3d144c28e4af0c20143383e062/CHANGELOG').should ==
|
|
['f4b14494ef6abf3d144c28e4af0c20143383e062', 'CHANGELOG']
|
|
end
|
|
|
|
it "falls back to a primitive split for an invalid ref" do
|
|
extract_ref('stable/CHANGELOG').should == ['stable', 'CHANGELOG']
|
|
end
|
|
end
|
|
|
|
context "with a fullpath" do
|
|
it "extracts a valid branch" do
|
|
extract_ref('/gitlab/gitlab-ci/tree/foo/bar/baz/CHANGELOG').should == ['foo/bar/baz', 'CHANGELOG']
|
|
end
|
|
|
|
it "extracts a valid tag" do
|
|
extract_ref('/gitlab/gitlab-ci/tree/v2.0.0/CHANGELOG').should == ['v2.0.0', 'CHANGELOG']
|
|
end
|
|
|
|
it "extracts a valid commit SHA" do
|
|
extract_ref('/gitlab/gitlab-ci/tree/f4b14494ef6abf3d144c28e4af0c20143383e062/CHANGELOG').should ==
|
|
['f4b14494ef6abf3d144c28e4af0c20143383e062', 'CHANGELOG']
|
|
end
|
|
|
|
it "extracts a timestamp" do
|
|
extract_ref('/gitlab/gitlab-ci/tree/v2.0.0/CHANGELOG?_=12354435').should == ['v2.0.0', 'CHANGELOG']
|
|
end
|
|
end
|
|
|
|
context "with a fullpath and a relative_url_root" do
|
|
before do
|
|
Gitlab.config.gitlab.stub(relative_url_root: '/relative')
|
|
end
|
|
|
|
it "extracts a valid branch with relative_url_root" do
|
|
extract_ref('/relative/gitlab/gitlab-ci/tree/foo/bar/baz/CHANGELOG').should == ['foo/bar/baz', 'CHANGELOG']
|
|
end
|
|
|
|
it "extracts a valid tag" do
|
|
extract_ref('/relative/gitlab/gitlab-ci/tree/v2.0.0/CHANGELOG').should == ['v2.0.0', 'CHANGELOG']
|
|
end
|
|
|
|
it "extracts a valid commit SHA" do
|
|
extract_ref('/relative/gitlab/gitlab-ci/tree/f4b14494ef6abf3d144c28e4af0c20143383e062/CHANGELOG').should ==
|
|
['f4b14494ef6abf3d144c28e4af0c20143383e062', 'CHANGELOG']
|
|
end
|
|
|
|
it "extracts a timestamp" do
|
|
extract_ref('/relative/gitlab/gitlab-ci/tree/v2.0.0/CHANGELOG?_=12354435').should == ['v2.0.0', 'CHANGELOG']
|
|
end
|
|
end
|
|
end
|
|
end
|