Welcome to mirror list, hosted at ThFree Co, Russian Federation.

extracts_path_spec.rb « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cf4220175a78ec630d1e922b8ae7d1bd4620fbd9 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
require 'spec_helper'

describe ExtractsPath do
  include ExtractsPath

  let(:project) { double('project') }

  before do
    @project = project
    project.stub(:ref_names).and_return(['master', 'foo/bar/baz', 'v1.0.0', 'v2.0.0'])
  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
  end
end