Sha256: 8fcddde7a6866350c2bada2809a8dfed5985285ad1491d591f363c93a0ac5dab

Contents?: true

Size: 926 Bytes

Versions: 4

Compression:

Stored size: 926 Bytes

Contents

RSpec::Matchers.define :a_postmark_json do |string|
  def postmark_key?(key)
    key == ::Postmark::Inflector.to_postmark(key)
  end

  def postmark_object?(obj)
    case obj
    when Hash
      return false unless obj.keys.all? { |k| postmark_key?(k) }
      return false unless obj.values.all? { |v| postmark_object?(v) }
    when Array
      return false unless obj.all? { |v| postmark_object?(v) }
    end

    true
  end

  def postmark_json?(str)
    return false unless str.is_a?(String)

    json = Postmark::Json.decode(str)
    postmark_object?(json)
  rescue
    false
  end

  match do |actual|
    postmark_json?(actual)
  end
end

RSpec::Matchers.define :json_representation_of do |x|
  match { |actual| Postmark::Json.decode(actual) == x }
end

RSpec::Matchers.define :be_serialized_to do |json|
  match do |mail_message|
    Postmark.convert_message_to_options_hash(mail_message) == JSON.parse(json)
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
postmark-1.20.0 spec/support/custom_matchers.rb
postmark-1.19.2 spec/support/custom_matchers.rb
postmark-1.19.1 spec/support/custom_matchers.rb
postmark-1.19.0 spec/support/custom_matchers.rb