summaryrefslogtreecommitdiff
path: root/qa/qa/specs/features/browser_ui/6_release/pipeline/parent_child_pipelines_dependent_relationship_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'qa/qa/specs/features/browser_ui/6_release/pipeline/parent_child_pipelines_dependent_relationship_spec.rb')
-rw-r--r--qa/qa/specs/features/browser_ui/6_release/pipeline/parent_child_pipelines_dependent_relationship_spec.rb113
1 files changed, 0 insertions, 113 deletions
diff --git a/qa/qa/specs/features/browser_ui/6_release/pipeline/parent_child_pipelines_dependent_relationship_spec.rb b/qa/qa/specs/features/browser_ui/6_release/pipeline/parent_child_pipelines_dependent_relationship_spec.rb
deleted file mode 100644
index e34f41b4c95..00000000000
--- a/qa/qa/specs/features/browser_ui/6_release/pipeline/parent_child_pipelines_dependent_relationship_spec.rb
+++ /dev/null
@@ -1,113 +0,0 @@
-# frozen_string_literal: true
-
-module QA
- RSpec.describe 'Release', :runner, :reliable do
- describe 'Parent-child pipelines dependent relationship' do
- let!(:project) do
- Resource::Project.fabricate_via_api! do |project|
- project.name = 'pipelines-dependent-relationship'
- end
- end
-
- let!(:runner) do
- Resource::Runner.fabricate_via_api! do |runner|
- runner.project = project
- runner.name = project.name
- runner.tags = ["#{project.name}"]
- end
- end
-
- before do
- Flow::Login.sign_in
- end
-
- after do
- runner.remove_via_api!
- end
-
- it 'parent pipelines passes if child passes', testcase: 'https://gitlab.com/gitlab-org/gitlab/-/quality/test_cases/348092' do
- add_ci_files(success_child_ci_file)
- Flow::Pipeline.visit_latest_pipeline(pipeline_condition: 'completed')
-
- Page::Project::Pipeline::Show.perform do |parent_pipeline|
- expect(parent_pipeline).to have_child_pipeline
- expect(parent_pipeline).to have_passed
- end
- end
-
- it 'parent pipeline fails if child fails', testcase: 'https://gitlab.com/gitlab-org/gitlab/-/quality/test_cases/348091' do
- add_ci_files(fail_child_ci_file)
- Flow::Pipeline.visit_latest_pipeline(pipeline_condition: 'completed')
-
- Page::Project::Pipeline::Show.perform do |parent_pipeline|
- expect(parent_pipeline).to have_child_pipeline
- expect(parent_pipeline).to have_failed
- end
- end
-
- private
-
- def success_child_ci_file
- {
- file_path: '.child-ci.yml',
- content: <<~YAML
- child_job:
- stage: test
- tags: ["#{project.name}"]
- script: echo "Child job done!"
-
- YAML
- }
- end
-
- def fail_child_ci_file
- {
- file_path: '.child-ci.yml',
- content: <<~YAML
- child_job:
- stage: test
- tags: ["#{project.name}"]
- script: exit 1
-
- YAML
- }
- end
-
- def parent_ci_file
- {
- file_path: '.gitlab-ci.yml',
- content: <<~YAML
- stages:
- - test
- - deploy
-
- job1:
- stage: test
- trigger:
- include: ".child-ci.yml"
- strategy: depend
-
- job2:
- stage: deploy
- tags: ["#{project.name}"]
- script: echo "parent deploy done"
-
- YAML
- }
- end
-
- def add_ci_files(child_ci_file)
- Resource::Repository::Commit.fabricate_via_api! do |commit|
- commit.project = project
- commit.commit_message = 'Add parent and child pipelines CI files.'
- commit.add_files(
- [
- child_ci_file,
- parent_ci_file
- ]
- )
- end.project.visit!
- end
- end
- end
-end