提交 5ed8286e 编写于 作者: G Grzegorz Bizon

Extract variables collection item to a separate class

上级 9d4c9272
......@@ -12,5 +12,9 @@ module Ci
}
scope :unprotected, -> { where(protected: false) }
def to_hash
{ key: key, value: value, public: false }
end
end
end
......@@ -105,7 +105,7 @@ class KubernetesService < DeploymentService
def predefined_variables
config = YAML.dump(kubeconfig)
variables = Gitlab::Ci::Variables::Collection.new.tap do |collection|
Gitlab::Ci::Variables::Collection.new.tap do |collection|
collection.append(key: 'KUBE_URL', value: api_url, public: true)
collection.append(key: 'KUBE_TOKEN', value: token, public: false)
collection.append(key: 'KUBE_NAMESPACE', value: actual_namespace, public: true)
......@@ -114,8 +114,6 @@ class KubernetesService < DeploymentService
collection.append(key: 'KUBE_CA_PEM', value: ca_pem, public: true)
collection.append(key: 'KUBE_CA_PEM_FILE', value: ca_pem, public: true, file: true)
end
variables.to_runner_variables
end
# Constructs a list of terminals from the reactive cache
......
......@@ -4,8 +4,6 @@ module Gitlab
class Collection
include Enumerable
Variable = Struct.new(:key, :value, :public, :file)
def initialize(variables = [])
@variables = []
......@@ -13,7 +11,7 @@ module Gitlab
end
def append(resource)
@variables.append(fabricate(resource))
@variables.append(Collection::Item.fabricate(resource))
end
def each
......@@ -27,35 +25,8 @@ module Gitlab
end
end
##
# If `file: true` has been provided we expose it, otherwise we
# don't expose `file` attribute at all (stems from what the runner
# expects).
#
def to_runner_variables
self.map do |variable|
variable.to_h.reject do |component, value|
component == :file && value == false
end
end
end
private
def fabricate(resource)
case resource
when Hash
Collection::Variable.new(resource.fetch(:key),
resource.fetch(:value),
resource.fetch(:public, false),
resource.fetch(:file, false))
when ::Ci::Variable
Variable.new(resource.key, resource.value, false, false)
when Collection::Variable
resource.dup
else
raise ArgumentError, 'Unknown CI/CD variable resource!'
end
self.map(&:to_hash)
end
end
end
......
module Gitlab
module Ci
module Variables
class Collection
class Item
def initialize(**options)
@variable = {
key: options.fetch(:key),
value: options.fetch(:value),
public: options.fetch(:public, false),
file: options.fetch(:files, false)
}
end
def ==(other)
to_hash == self.class.fabricate(other).to_hash
end
##
# If `file: true` has been provided we expose it, otherwise we
# don't expose `file` attribute at all (stems from what the runner
# expects).
#
def to_hash
@variable.reject do |hash_key, hash_value|
hash_key == :file && hash_value == false
end
end
def self.fabricate(resource)
case resource
when Hash
self.new(resource)
when ::Ci::Variable
self.new(resource.to_hash)
when self
resource.dup
else
raise ArgumentError, 'Unknown CI/CD variable resource!'
end
end
end
end
end
end
end
require 'spec_helper'
describe Gitlab::Ci::Variables::Collection::Item do
let(:variable) do
{ key: 'VAR', value: 'something', public: true }
end
describe '.fabricate' do
it 'supports using a hash' do
resource = described_class.fabricate(variable)
expect(resource).to be_a(described_class)
expect(resource).to eq variable
end
it 'supports using an active record resource' do
resource = described_class.fabricate(create(:ci_variable))
expect(resource).to be_a(described_class)
expect(resource).to eq(key: 'VARIABLE_1',
value: 'VARIABLE_VALUE',
public: false)
end
it 'supports using another collection item' do
item = described_class.new(**variable)
resource = described_class.fabricate(item)
expect(resource).to be_a(described_class)
expect(resource).to eq variable
expect(resource.object_id).not_to eq item.object_id
end
end
describe '#==' do
it 'compares a hash representation of a variable' do
expect(described_class.new(**variable) == variable).to be true
end
end
describe '#to_hash' do
it 'returns a hash representation of a collection item' do
expect(described_class.new(**variable).to_hash).to eq variable
end
end
end
......@@ -3,10 +3,11 @@ require 'spec_helper'
describe Gitlab::Ci::Variables::Collection do
describe '.new' do
it 'can be initialized with an array' do
variable = { key: 'SOME_VAR', value: 'Some Value' }
variable = { key: 'VAR', value: 'value', public: true }
collection = described_class.new([variable])
expect(collection.first.to_h).to include variable
expect(collection.first.to_hash).to eq variable
end
it 'can be initialized without an argument' do
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册