summaryrefslogtreecommitdiff
path: root/spec/features/projects/artifacts/browse_spec.rb
blob: 68375956273491ba4c53ac0c490c013c9f437c33 (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
require 'spec_helper'

feature 'Browse artifact', :js, feature: true do
  let(:project) { create(:project, :public) }
  let(:pipeline) { create(:ci_empty_pipeline, project: project, sha: project.commit.sha, ref: 'master') }
  let(:job) { create(:ci_build, :artifacts, pipeline: pipeline) }

  def browse_path(path)
    browse_namespace_project_job_artifacts_path(project.namespace, project, job, path)
  end

  context 'when visiting old URL' do
    let(:browse_url) do
      browse_path('other_artifacts_0.1.2')
    end

    before do
      visit browse_url.sub('/-/jobs', '/builds')
    end

    it "redirects to new URL" do
      expect(page.current_path).to eq(browse_url)
    end
  end
end