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:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-01-10 18:07:47 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-01-10 18:07:47 +0300
commit8b1228b0d409d7751f01d9fb72ebfbbf62399486 (patch)
tree1b4126fe48d7666a90c0d7ee26230cf8379b6410 /spec/services/ci
parent96b0c1245c93585a8b0fe23e22306d32ff4e4905 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/services/ci')
-rw-r--r--spec/services/ci/create_pipeline_service_spec.rb66
1 files changed, 65 insertions, 1 deletions
diff --git a/spec/services/ci/create_pipeline_service_spec.rb b/spec/services/ci/create_pipeline_service_spec.rb
index bdf4dcc3142..2876f7b5f59 100644
--- a/spec/services/ci/create_pipeline_service_spec.rb
+++ b/spec/services/ci/create_pipeline_service_spec.rb
@@ -940,7 +940,7 @@ describe Ci::CreatePipelineService do
expect(resource_group.resources.first.build).to eq(nil)
end
- context 'when resourc group key includes predefined variables' do
+ context 'when resource group key includes predefined variables' do
let(:resource_group_key) { '$CI_COMMIT_REF_NAME-$CI_JOB_NAME' }
it 'interpolates the variables into the key correctly' do
@@ -969,6 +969,70 @@ describe Ci::CreatePipelineService do
end
end
+ context 'with release' do
+ shared_examples_for 'a successful release pipeline' do
+ before do
+ stub_feature_flags(ci_release_generation: true)
+ stub_ci_pipeline_yaml_file(YAML.dump(config))
+ end
+
+ it 'is valid config' do
+ pipeline = execute_service
+ build = pipeline.builds.first
+ expect(pipeline).to be_kind_of(Ci::Pipeline)
+ expect(pipeline).to be_valid
+ expect(pipeline.yaml_errors).not_to be_present
+ expect(pipeline).to be_persisted
+ expect(build).to be_kind_of(Ci::Build)
+ expect(build.options).to eq(config[:release].except(:stage, :only).with_indifferent_access)
+ end
+ end
+
+ context 'simple example' do
+ it_behaves_like 'a successful release pipeline' do
+ let(:config) do
+ {
+ release: {
+ script: ["make changelog | tee release_changelog.txt"],
+ release: {
+ tag_name: "v0.06",
+ description: "./release_changelog.txt"
+ }
+ }
+ }
+ end
+ end
+ end
+
+ context 'example with all release metadata' do
+ it_behaves_like 'a successful release pipeline' do
+ let(:config) do
+ {
+ release: {
+ script: ["make changelog | tee release_changelog.txt"],
+ release: {
+ name: "Release $CI_TAG_NAME",
+ tag_name: "v0.06",
+ description: "./release_changelog.txt",
+ assets: {
+ links: [
+ {
+ name: "cool-app.zip",
+ url: "http://my.awesome.download.site/1.0-$CI_COMMIT_SHORT_SHA.zip"
+ },
+ {
+ url: "http://my.awesome.download.site/1.0-$CI_COMMIT_SHORT_SHA.exe"
+ }
+ ]
+ }
+ }
+ }
+ }
+ end
+ end
+ end
+ end
+
shared_examples 'when ref is protected' do
let(:user) { create(:user) }