Sha256: c26561aa92ce13da46b711e3ce07e77e414e7d1d76661a6234bce02426b1e26d
Contents?: true
Size: 1.82 KB
Versions: 1
Compression:
Stored size: 1.82 KB
Contents
require 'tent-canonical-json' module TentValidator class Spec < ApiValidator::Spec def clients(type, options = {}) server = options.delete(:server) || :remote if server == :remote TentClient.new(TentValidator.remote_entity_uri, auth_details_for_app_type(type, options).merge( :faraday_adapter => TentValidator.remote_adapter, :server_meta => TentValidator.remote_server_meta )) else end end def generate_version_signature(post) canonical_post_json = TentCanonicalJson.encode(post) hex_digest(canonical_post_json) end def hex_digest(data) Digest::SHA512.new.update(data).to_s[0...64] end def invalid_value(type, format = nil) case type when "array" Hash.new when "boolean" "false" when "number", "integer" "123" when "null" true when "object" ["My parent should be an object!"] when "string" if format case format when 'uri' "I'm not a uri!" end else 421 end end end def valid_value(type, format = nil) case type when "array" [] when "boolean" true when "number", "integer" 123 when "null" nil when "object" Hash.new when "string" if format case format when 'uri' "https://example.com" end else "" end end end private def auth_details_for_app_type(type, options={}) case type when :app TentValidator.remote_auth_details when :custom TentD::Utils::Hash.slice(options, :mac_key_id, :mac_algorithm, :mac_key) else Hash.new end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tent-validator-0.2.0 | lib/tent-validator/spec.rb |