gitlab-org--gitlab-foss/lib/gitlab/ci/config/node/validator.rb

42 lines
908 B
Ruby
Raw Normal View History

module Gitlab
module Ci
class Config
module Node
class Validator < SimpleDelegator
include ActiveModel::Validations
include Node::Validators
def initialize(node)
super(node)
@node = node
end
def messages
errors.full_messages.map do |error|
"#{location} #{error}".downcase
end
end
def self.name
'Validator'
end
def unknown_keys
return [] unless config.is_a?(Hash)
config.keys - @node.class.nodes.keys
end
private
def location
predecessors = ancestors.map(&:key).compact
current = key || @node.class.name.demodulize.underscore.humanize
predecessors.append(current).join(':')
end
end
end
end
end
end