summaryrefslogtreecommitdiff
path: root/qa/qa/specs/features/browser_ui/4_verify/pipeline/include_multiple_files_from_a_project_spec.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-11-19 08:27:35 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2020-11-19 08:27:35 +0000
commit7e9c479f7de77702622631cff2628a9c8dcbc627 (patch)
treec8f718a08e110ad7e1894510980d2155a6549197 /qa/qa/specs/features/browser_ui/4_verify/pipeline/include_multiple_files_from_a_project_spec.rb
parente852b0ae16db4052c1c567d9efa4facc81146e88 (diff)
downloadgitlab-ce-7e9c479f7de77702622631cff2628a9c8dcbc627.tar.gz
Add latest changes from gitlab-org/gitlab@13-6-stable-eev13.6.0-rc42
Diffstat (limited to 'qa/qa/specs/features/browser_ui/4_verify/pipeline/include_multiple_files_from_a_project_spec.rb')
-rw-r--r--qa/qa/specs/features/browser_ui/4_verify/pipeline/include_multiple_files_from_a_project_spec.rb138
1 files changed, 138 insertions, 0 deletions
diff --git a/qa/qa/specs/features/browser_ui/4_verify/pipeline/include_multiple_files_from_a_project_spec.rb b/qa/qa/specs/features/browser_ui/4_verify/pipeline/include_multiple_files_from_a_project_spec.rb
new file mode 100644
index 00000000000..cedc2db2a1a
--- /dev/null
+++ b/qa/qa/specs/features/browser_ui/4_verify/pipeline/include_multiple_files_from_a_project_spec.rb
@@ -0,0 +1,138 @@
+# frozen_string_literal: true
+
+require 'faker'
+
+module QA
+ RSpec.describe 'Verify', :runner, :requires_admin, :skip_live_env do
+ describe "Include multiple files from a project" do
+ let(:feature_flag) { :ci_include_multiple_files_from_project }
+ let(:executor) { "qa-runner-#{Faker::Alphanumeric.alphanumeric(8)}" }
+ let(:expected_text) { Faker::Lorem.sentence }
+ let(:unexpected_text) { Faker::Lorem.sentence }
+
+ let(:project) do
+ Resource::Project.fabricate_via_api! do |project|
+ project.name = 'project-with-pipeline-1'
+ end
+ end
+
+ let(:other_project) do
+ Resource::Project.fabricate_via_api! do |project|
+ project.name = 'project-with-pipeline-2'
+ end
+ end
+
+ let!(:runner) do
+ Resource::Runner.fabricate! do |runner|
+ runner.project = project
+ runner.name = executor
+ runner.tags = [executor]
+ end
+ end
+
+ before do
+ Runtime::Feature.enable(feature_flag)
+ Flow::Login.sign_in
+ add_included_files
+ add_main_ci_file
+ project.visit!
+ view_the_last_pipeline
+ end
+
+ after do
+ Runtime::Feature.disable(feature_flag)
+ runner.remove_via_api!
+ end
+
+ it 'runs the pipeline with composed config', testcase: 'https://gitlab.com/gitlab-org/quality/testcases/-/issues/1082' do
+ Page::Project::Pipeline::Show.perform do |pipeline|
+ aggregate_failures 'pipeline has all expected jobs' do
+ expect(pipeline).to have_job('build')
+ expect(pipeline).to have_job('test')
+ expect(pipeline).to have_job('deploy')
+ end
+
+ pipeline.click_job('test')
+ end
+
+ Page::Project::Job::Show.perform do |job|
+ aggregate_failures 'main CI is not overridden' do
+ expect(job.output).to have_no_content("#{unexpected_text}")
+ expect(job.output).to have_content("#{expected_text}")
+ end
+ end
+ end
+
+ private
+
+ def add_main_ci_file
+ Resource::Repository::Commit.fabricate_via_api! do |commit|
+ commit.project = project
+ commit.commit_message = 'Add config file'
+ commit.add_files([main_ci_file])
+ end
+ end
+
+ def add_included_files
+ Resource::Repository::Commit.fabricate_via_api! do |commit|
+ commit.project = other_project
+ commit.commit_message = 'Add files'
+ commit.add_files([included_file_1, included_file_2])
+ end
+ end
+
+ def view_the_last_pipeline
+ Page::Project::Menu.perform(&:click_ci_cd_pipelines)
+ Page::Project::Pipeline::Index.perform(&:wait_for_latest_pipeline_success)
+ Page::Project::Pipeline::Index.perform(&:click_on_latest_pipeline)
+ end
+
+ def main_ci_file
+ {
+ file_path: '.gitlab-ci.yml',
+ content: <<~YAML
+ include:
+ - project: #{other_project.full_path}
+ file:
+ - file1.yml
+ - file2.yml
+
+ build:
+ stage: build
+ tags: ["#{executor}"]
+ script: echo 'build'
+
+ test:
+ stage: test
+ tags: ["#{executor}"]
+ script: echo "#{expected_text}"
+ YAML
+ }
+ end
+
+ def included_file_1
+ {
+ file_path: 'file1.yml',
+ content: <<~YAML
+ test:
+ stage: test
+ tags: ["#{executor}"]
+ script: echo "#{unexpected_text}"
+ YAML
+ }
+ end
+
+ def included_file_2
+ {
+ file_path: 'file2.yml',
+ content: <<~YAML
+ deploy:
+ stage: deploy
+ tags: ["#{executor}"]
+ script: echo 'deploy'
+ YAML
+ }
+ end
+ end
+ end
+end