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:
Diffstat (limited to 'spec/features/projects/ci/editor_spec.rb')
-rw-r--r--spec/features/projects/ci/editor_spec.rb138
1 files changed, 132 insertions, 6 deletions
diff --git a/spec/features/projects/ci/editor_spec.rb b/spec/features/projects/ci/editor_spec.rb
index 9851194bd3c..43da57c16d1 100644
--- a/spec/features/projects/ci/editor_spec.rb
+++ b/spec/features/projects/ci/editor_spec.rb
@@ -10,18 +10,144 @@ RSpec.describe 'Pipeline Editor', :js, feature_category: :pipeline_composition d
let(:default_branch) { 'main' }
let(:other_branch) { 'test' }
+ let(:branch_with_invalid_ci) { 'despair' }
+
+ let(:default_content) { 'Default' }
+
+ let(:valid_content) do
+ <<~YAML
+ ---
+ stages:
+ - Build
+ - Test
+ job_a:
+ script: echo hello
+ stage: Build
+ job_b:
+ script: echo hello from job b
+ stage: Test
+ YAML
+ end
+
+ let(:invalid_content) do
+ <<~YAML
+
+ job3:
+ stage: stage_foo
+ script: echo 'Done.'
+ YAML
+ end
before do
sign_in(user)
project.add_developer(user)
- project.repository.create_file(user, project.ci_config_path_or_default, 'Default Content', message: 'Create CI file for main', branch_name: default_branch)
- project.repository.create_file(user, project.ci_config_path_or_default, 'Other Content', message: 'Create CI file for test', branch_name: other_branch)
+ project.repository.create_file(user, project.ci_config_path_or_default, default_content, message: 'Create CI file for main', branch_name: default_branch)
+ project.repository.create_file(user, project.ci_config_path_or_default, valid_content, message: 'Create CI file for test', branch_name: other_branch)
+ project.repository.create_file(user, project.ci_config_path_or_default, invalid_content, message: 'Create CI file for test', branch_name: branch_with_invalid_ci)
visit project_ci_pipeline_editor_path(project)
wait_for_requests
end
+ describe 'Default tabs' do
+ it 'renders the edit tab as the default' do
+ expect(page).to have_selector('[data-testid="editor-tab"]')
+ end
+
+ it 'renders the visualize, validate and full configuration tabs', :aggregate_failures do
+ expect(page).to have_selector('[data-testid="visualization-tab"]', visible: :hidden)
+ expect(page).to have_selector('[data-testid="validate-tab"]', visible: :hidden)
+ expect(page).to have_selector('[data-testid="merged-tab"]', visible: :hidden)
+ end
+ end
+
+ describe 'When CI yml has valid syntax' do
+ before do
+ visit project_ci_pipeline_editor_path(project, branch_name: other_branch)
+ wait_for_requests
+ end
+
+ it 'shows "Pipeline syntax is correct" in the lint widget' do
+ page.within('[data-testid="validation-segment"]') do
+ expect(page).to have_content("Pipeline syntax is correct")
+ end
+ end
+
+ it 'shows the graph in the visualization tab' do
+ click_link "Visualize"
+
+ page.within('[data-testid="graph-container"') do
+ expect(page).to have_content("job_a")
+ end
+ end
+
+ it 'can simulate pipeline in the validate tab' do
+ click_link "Validate"
+
+ click_button "Validate pipeline"
+ wait_for_requests
+
+ expect(page).to have_content("Simulation completed successfully")
+ end
+
+ it 'renders the merged yaml in the full configuration tab' do
+ click_link "Full configuration"
+
+ page.within('[data-testid="merged-tab"') do
+ expect(page).to have_content("job_a")
+ end
+ end
+ end
+
+ describe 'When CI yml has invalid syntax' do
+ before do
+ visit project_ci_pipeline_editor_path(project, branch_name: branch_with_invalid_ci)
+ wait_for_requests
+ end
+
+ it 'shows "Syntax is invalid" in the lint widget' do
+ page.within('[data-testid="validation-segment"]') do
+ expect(page).to have_content("This GitLab CI configuration is invalid")
+ end
+ end
+
+ it 'does not render the graph in the visualization tab and shows error' do
+ click_link "Visualize"
+
+ expect(page).not_to have_selector('[data-testid="graph-container"')
+ expect(page).to have_content("Your CI/CD configuration syntax is invalid. Select the Validate tab for more details.")
+ end
+
+ it 'gets a simulation error in the validate tab' do
+ click_link "Validate"
+
+ click_button "Validate pipeline"
+ wait_for_requests
+
+ expect(page).to have_content("Pipeline simulation completed with errors")
+ end
+
+ it 'renders merged yaml config' do
+ click_link "Full configuration"
+
+ page.within('[data-testid="merged-tab"') do
+ expect(page).to have_content("job3")
+ end
+ end
+ end
+
+ describe 'with unparsable yaml' do
+ it 'renders an error in the merged yaml tab' do
+ click_link "Full configuration"
+
+ page.within('[data-testid="merged-tab"') do
+ expect(page).not_to have_content("job_a")
+ expect(page).to have_content("Could not load full configuration content")
+ end
+ end
+ end
+
shared_examples 'default branch switcher behavior' do
def switch_to_branch(branch)
find('[data-testid="branch-selector"]').click
@@ -109,7 +235,7 @@ RSpec.describe 'Pipeline Editor', :js, feature_category: :pipeline_composition d
expect(page).to have_content('Pipeline Editor')
page.within('#source-editor-') do
- expect(page).to have_content('Default Content123')
+ expect(page).to have_content("#{default_content}123")
end
end
@@ -166,8 +292,8 @@ RSpec.describe 'Pipeline Editor', :js, feature_category: :pipeline_composition d
end
page.within('#source-editor-') do
- expect(page).to have_content('Default Content')
- expect(page).not_to have_content('Default Content123')
+ expect(page).to have_content(default_content)
+ expect(page).not_to have_content("#{default_content}123")
end
end
@@ -188,7 +314,7 @@ RSpec.describe 'Pipeline Editor', :js, feature_category: :pipeline_composition d
end
page.within('#source-editor-') do
- expect(page).to have_content('Default Content123')
+ expect(page).to have_content("#{default_content}123")
end
end
end