End-to-end test pipelines
e2e:test-on-cng
The e2e:test-on-cng
child pipeline runs tests against a Cloud Native GitLab installation.
Unlike review-apps
, this pipeline uses a local kind Kubernetes cluster.
Deployment is managed by the cng
orchestrator tool, which you can also use to locally recreate CI/CD deployments.
The e2e:test-on-cng
child pipeline is executed in merge requests and is part of pre-merge validation lifecycle. If any test fails, you can't merge introduced
code changes.
Setup
The pipeline setup consists of several jobs in the main GitLab pipeline:
-
compile-production-assets
andbuild-assets-image
jobs are responsible for compiling frontend assets which are required by CNG build pipeline. -
e2e-test-pipeline-generate
job is responsible for generatinge2e:test-on-cng
child pipeline
child pipeline jobs
The child pipeline consists of several stages that support E2E test execution.
.pre
-
build-cng-env
job is responsible for setting up all environment variables for CNG downstream pipeline -
build-cng
job triggersCNG
downstream pipeline which is responsible for building all necessary images
test
Jobs in test
stage perform following actions:
- local k8s cluster setup using
kind
- GitLab installation using official
helm
chart - E2E test execution against performed deployment
report
This stage is responsible for allure test report generation as well as test metrics upload.
Debugging
To help with debugging:
- Each test job prints a list of arguments that you can pass to the
cng
orchestrator to exactly recreate the same deployment for local debugging. - Cluster events log and all pod logs are saved in E2E test job artifacts.
-
cng
orchestrator automatically outputs all cluster events with errors in the case of failed deployment.
e2e:test-on-omnibus
The e2e:test-on-omnibus
child pipeline is the main executor of E2E testing for the GitLab platform. The pipeline definition has several dynamic
components to reduce the number of tests being executed in merge request pipelines.
Setup
Pipeline setup consists of:
- The
e2e-test-pipeline-generate
job in theprepare
stage of the main GitLab pipeline. - The
e2e:test-on-omnibus
job in theqa
stage, which triggers the child pipeline that is responsible for building theomnibus
package and running E2E tests.
e2e-test-pipeline-generate
This job consists of two components that implement selective test execution:
- The
detect_changes
Rake task determines which e2e specs should be executed in a particular merge request pipeline. This task analyzes changes in a particular merge request and determines which specs must be executed. Based on that, adry-run
of every scenario executes and determines if a scenario contains any executable tests. Selective test execution uses these criteria to determine which specific tests to execute. -
generate-e2e-pipeline
is executed, which generates a child pipeline YAML definition file with appropriate environment variables.
child pipeline jobs
E2E test execution pipeline consists of several stages which all support execution of E2E tests.
.pre
This stage is responsible for the following tasks:
- Fetching
knapsack
reports that support parallel test execution. - Triggering downstream pipeline which builds the
omnibus-gitlab
Docker image.
test
This stage runs e2e tests against different types of GitLab configurations. The number of jobs executed is determined dynamically by
e2e-test-pipeline-generate
job.
report
This stage is responsible for allure test report generation.
e2e:test-on-gdk
The e2e:test-on-gdk
child pipeline supports development of the GitLab platform by providing feedback to engineers on
end-to-end test execution faster than via e2e:test-on-omnibus
.
This is achieved by running tests against the GitLab Development Kit (GDK), which can be built and installed in less time than when testing against Omnibus GitLab. The trade-off is that Omnibus GitLab can be used to deploy a production installation, whereas the GDK is a development environment. Tests that run against the GDK might not catch bugs that depend on part of the process of preparing GitLab to run in a production environment, including pre-compiling assets, assigning configuration defaults as part of an official installation package, deploying GitLab services to multiple servers, and more. On the other hand, engineers who use the GDK day-to-day can benefit from automated tests catching bugs that only appear on the GDK.
Setup
The pipeline setup consists of several jobs in the main GitLab pipeline:
- The
e2e-test-pipeline-generate
job in theprepare
stage. This is the same job as in thee2e:test-on-omnibus
pipeline. - The
build-gdk-image
job in thebuild-images
stage. - The
e2e:test-on-gdk
trigger job in theqa
stage, which triggers the child pipeline that runs E2E tests.
build-gdk-image
This job uses the code from the merge request to build a Docker image that can be used in test jobs to launch a GDK instance in a container. The image is pushed to the container registry.
The job also runs in pipelines on the default branch to build a base image that includes the GDK and GitLab components. This avoids building the entire image from scratch in merge requests. However, if the merge request includes changes to certain GitLab components or code the job will rebuild the base image before building the image that will be used in the test jobs.
child pipeline jobs
Like the e2e:test-on-omnibus
pipeline, the e2e:test-on-gdk
pipeline consists of several stages that support
execution of E2E tests.
.pre
This stage is responsible for fetching knapsack
reports that support parallel test execution.
test
This stage runs e2e tests against different types of GitLab configurations. The number of jobs executed is determined dynamically by the
e2e-test-pipeline-generate
job.
Each job starts a container from the GDK Docker image created in the build-gdk-image
job, and then executes the end-to-end
tests against the GDK instance running in the container.
report
This stage is responsible for allure test report generation.
Adding new jobs to E2E test pipelines
E2E test pipelines use dynamic scaling of jobs based on their runtime. To create a mapping between job definitions in pipeline definition YAML files and
a particular test scenario, scenario
classes are used. These classes are located in qa/qa/scenario
folder.
A typical job definition in one of the e2e test pipeline definition YAML files would look like:
my-new-test-job:
...
variables:
QA_SCENARIO: Test::Integration::MyNewTestScenario
In this example:
-
QA_SCENARIO: Test::Integration::MyNewTestScenario
: name of the scenario class that is passed to theqa/bin/qa
test execution script. While the full class name would beQA::Scenario::Test:Integration::MyNewTestScenario
,QA::Scenario
is omitted to have shorted definitions.
Considering example above, perform the following steps to create a new job:
-
Create a new scenario
my_new_job.rb
in theintegration
directory of thee2e
test framework. The scenario class should define a pipeline mapping that couples the scenario to a specific job in a specific pipeline type. If job was added to the test-on-cng pipeline, this scenario would define RSpec tags that should be executed and pipeline mapping:module QA module Scenario module Test module Integration class MyNewJob < Test::Instance::All tags :some_special_tag pipeline_mappings test_on_cng: %w[my-new-test-job] end end end end end
-
Add the new job definition in the
main.gitlab-ci.yml
pipeline definition:my-new-test-job: extends: - .cng-test variables: QA_SCENARIO: Test::Integration::MyNewTestScenario
Such a definition ensures that my-new-test-job
has automatic parallel job scaling based on predefined runtime threshold.