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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Eastwood <contact@ericeastwood.com>2017-10-03 08:33:13 +0300
committerEric Eastwood <contact@ericeastwood.com>2017-10-03 08:33:13 +0300
commitbca86c858b361f3b5a19abcfc03972c95f4b2d2a (patch)
treecfd16b3301384e9c65492d55c7cecb566308ef05 /spec/features/projects/artifacts
parentb4d95002af504488af5c5c2117175ec73192c942 (diff)
Add test for external HTML artifact
Diffstat (limited to 'spec/features/projects/artifacts')
-rw-r--r--spec/features/projects/artifacts/browse_spec.rb28
1 files changed, 24 insertions, 4 deletions
diff --git a/spec/features/projects/artifacts/browse_spec.rb b/spec/features/projects/artifacts/browse_spec.rb
index 42b47cb3301..40af0247bce 100644
--- a/spec/features/projects/artifacts/browse_spec.rb
+++ b/spec/features/projects/artifacts/browse_spec.rb
@@ -1,19 +1,20 @@
require 'spec_helper'
feature 'Browse artifact', :js do
+ include ArtifactHelper
+
let(:project) { create(:project, :public) }
let(:pipeline) { create(:ci_empty_pipeline, project: project) }
let(:job) { create(:ci_build, :artifacts, pipeline: pipeline) }
+ let(:browse_url) do
+ browse_path('other_artifacts_0.1.2')
+ end
def browse_path(path)
browse_project_job_artifacts_path(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
@@ -22,4 +23,23 @@ feature 'Browse artifact', :js do
expect(page.current_path).to eq(browse_url)
end
end
+
+ context 'when browsing a directory with an HTML file' do
+ let(:html_entry) { job.artifacts_metadata_entry("other_artifacts_0.1.2/index.html") }
+
+ before do
+ allow(Gitlab.config.pages).to receive(:enabled).and_return(true)
+ allow(Gitlab.config.pages).to receive(:artifacts_server).and_return(true)
+
+ visit browse_url
+ end
+
+ it "shows external link icon and styles" do
+ link = first('.tree-item-file-external-link')
+
+ expect(link).to have_content('index.html')
+ expect(link[:href]).to eq(html_artifact_url(project, job, html_entry.blob))
+ expect(page).to have_selector('.js-artifact-tree-external-icon')
+ end
+ end
end