Skip to content
Snippets Groups Projects
Select Git revision
  • move-gl-dropdown
  • improve-table-pagination-spec
  • move-markdown-preview
  • winh-fix-merge-request-spec
  • master default
  • index-namespaces-lower-name
  • winh-single-karma-test
  • 10-3-stable
  • 36782-replace-team-user-role-with-add_role-user-in-specs
  • winh-modal-internal-state
  • tz-ide-file-icons
  • 38869-milestone-select
  • update-autodevops-template
  • jivl-activate-repo-cookie-preferences
  • qa-add-deploy-key
  • docs-move-article-ldap
  • 40780-choose-file
  • 22643-manual-job-page
  • refactor-cluster-show-page-conservative
  • dm-sidekiq-versioning
  • v10.4.0.pre
  • v10.3.0
  • v10.3.0-rc5
  • v10.3.0-rc4
  • v10.3.0-rc3
  • v10.3.0-rc2
  • v10.2.5
  • v10.3.0-rc1
  • v10.0.7
  • v10.1.5
  • v10.2.4
  • v10.2.3
  • v10.2.2
  • v10.2.1
  • v10.3.0.pre
  • v10.2.0
  • v10.2.0-rc4
  • v10.2.0-rc3
  • v10.1.4
  • v10.2.0-rc2
40 results

extracts_path_spec.rb

Blame
  • Forked from GitLab.org / GitLab FOSS
    17653 commits behind the upstream repository.
    extracts_path_spec.rb 3.39 KiB
    require 'spec_helper'
    
    describe ExtractsPath, lib: true do
      include ExtractsPath
      include RepoHelpers
      include Gitlab::Routing.url_helpers
    
      let(:project) { double('project') }
    
      before do
        @project = project
    
        repo = double(ref_names: ['master', 'foo/bar/baz', 'v1.0.0', 'v2.0.0',
                                  'release/app', 'release/app/v1.0.0'])
        allow(project).to receive(:repository).and_return(repo)
        allow(project).to receive(:path_with_namespace).
          and_return('gitlab/gitlab-ci')
      end
    
      describe '#assign_ref' do
        let(:ref) { sample_commit[:id] }
        let(:params) { { path: sample_commit[:line_code_path], ref: ref } }
    
        before do
          @project = create(:project)
        end
    
        it "log tree path has no escape sequences" do
          assign_ref_vars
          expect(@logs_path).to eq("/#{@project.path_with_namespace}/refs/#{ref}/logs_tree/files/ruby/popen.rb")
        end
    
        context 'escaped slash character in ref' do
          let(:ref) { 'improve%2Fawesome' }
    
          it 'has no escape sequences in @ref or @logs_path' do
            assign_ref_vars
    
            expect(@ref).to eq('improve/awesome')
            expect(@logs_path).to eq("/#{@project.path_with_namespace}/refs/#{ref}/logs_tree/files/ruby/popen.rb")
          end
        end
    
        context 'ref contains %20' do
          let(:ref) { 'foo%20bar' }
    
          it 'is not converted to a space in @id' do
            @project.repository.add_branch(@project.owner, 'foo%20bar', 'master')
    
            assign_ref_vars
    
            expect(@id).to start_with('foo%20bar/')
          end
        end
    
        context 'path contains space' do
          let(:params) { { path: 'with space', ref: '38008cb17ce1466d8fec2dfa6f6ab8dcfe5cf49e' } }
    
          it 'is not converted to %20 in @path' do
            assign_ref_vars
    
            expect(@path).to eq(params[:path])
          end
        end
      end
    
      describe '#extract_ref' do
        it "returns an empty pair when no @project is set" do
          @project = nil
          expect(extract_ref('master/CHANGELOG')).to eq(['', ''])
        end
    
        context "without a path" do
          it "extracts a valid branch" do
            expect(extract_ref('master')).to eq(['master', ''])
          end
    
          it "extracts a valid tag" do
            expect(extract_ref('v2.0.0')).to eq(['v2.0.0', ''])
          end
    
          it "extracts a valid commit ref without a path" do
            expect(extract_ref('f4b14494ef6abf3d144c28e4af0c20143383e062')).to eq(
              ['f4b14494ef6abf3d144c28e4af0c20143383e062', '']
            )
          end
    
          it "falls back to a primitive split for an invalid ref" do
            expect(extract_ref('stable')).to eq(['stable', ''])
          end
    
          it "extracts the longest matching ref" do
            expect(extract_ref('release/app/v1.0.0/README.md')).to eq(
              ['release/app/v1.0.0', 'README.md'])
          end
        end
    
        context "with a path" do
          it "extracts a valid branch" do
            expect(extract_ref('foo/bar/baz/CHANGELOG')).to eq(
              ['foo/bar/baz', 'CHANGELOG'])
          end
    
          it "extracts a valid tag" do
            expect(extract_ref('v2.0.0/CHANGELOG')).to eq(['v2.0.0', 'CHANGELOG'])
          end
    
          it "extracts a valid commit SHA" do
            expect(extract_ref('f4b14494ef6abf3d144c28e4af0c20143383e062/CHANGELOG')).to eq(
              ['f4b14494ef6abf3d144c28e4af0c20143383e062', 'CHANGELOG']
            )
          end
    
          it "falls back to a primitive split for an invalid ref" do
            expect(extract_ref('stable/CHANGELOG')).to eq(['stable', 'CHANGELOG'])
          end
        end
      end
    end