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/lib/gitlab/ci/jwt_v2/claim_mapper_spec.rb')
-rw-r--r--spec/lib/gitlab/ci/jwt_v2/claim_mapper_spec.rb40
1 files changed, 40 insertions, 0 deletions
diff --git a/spec/lib/gitlab/ci/jwt_v2/claim_mapper_spec.rb b/spec/lib/gitlab/ci/jwt_v2/claim_mapper_spec.rb
new file mode 100644
index 00000000000..b7a73c938a3
--- /dev/null
+++ b/spec/lib/gitlab/ci/jwt_v2/claim_mapper_spec.rb
@@ -0,0 +1,40 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+RSpec.describe Gitlab::Ci::JwtV2::ClaimMapper, feature_category: :continuous_integration do
+ let_it_be(:pipeline) { build_stubbed(:ci_pipeline) }
+
+ let(:source) { :unknown_source }
+ let(:url) { 'gitlab.com/gitlab-org/gitlab//.gitlab-ci.yml' }
+ let(:project_config) { instance_double(Gitlab::Ci::ProjectConfig, url: url, source: source) }
+
+ subject(:mapper) { described_class.new(project_config, pipeline) }
+
+ describe '#to_h' do
+ it 'returns an empty hash when source is not implemented' do
+ expect(mapper.to_h).to eq({})
+ end
+
+ context 'when mapper for source is implemented' do
+ where(:source) { described_class::MAPPER_FOR_CONFIG_SOURCE.keys }
+ let(:result) do
+ {
+ ci_config_ref_uri: 'ci_config_ref_uri',
+ ci_config_sha: 'ci_config_sha'
+ }
+ end
+
+ with_them do
+ it 'uses mapper' do
+ mapper_class = described_class::MAPPER_FOR_CONFIG_SOURCE[source]
+ expect_next_instance_of(mapper_class, project_config, pipeline) do |instance|
+ expect(instance).to receive(:to_h).and_return(result)
+ end
+
+ expect(mapper.to_h).to eq(result)
+ end
+ end
+ end
+ end
+end