Sha256: 3097abe3b08144831600fb52b94dd375e2388f4fcabc7e49dc9a1e6f58bacbd8
Contents?: true
Size: 1.16 KB
Versions: 1
Compression:
Stored size: 1.16 KB
Contents
# encoding: UTF-8 # # Copyright (c) 2010-2017 GoodData Corporation. All rights reserved. # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. require 'json' module GoodData module LCM2 class Helpers class << self def check_params(specification, params) specification.keys.each do |param_name| value = params[param_name] type = specification[param_name][:type] if value.nil? if specification[param_name][:opts][:required] fail("Mandatory parameter '#{param_name}' of type '#{type}' is not specified") end else if type.class.const_get(:CATEGORY) == :complex && !value.is_a?(Hash) puts JSON.pretty_generate(params) fail "Expected parameter '#{param_name}' to be kind of '#{type}', got '#{value.class.name}'" end unless type.check(value) fail "Parameter '#{param_name}' has invalid type, expected: #{type}" end end end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
gooddata-0.6.50 | lib/gooddata/lcm/helpers/check_helper.rb |