Class: EmailSpec::Matchers::HaveHeader

Inherits:
Object
  • Object
show all
Defined in:
lib/email_spec/matchers.rb

Instance Method Summary collapse

Constructor Details

#initialize(name, value) ⇒ HaveHeader

Returns a new instance of HaveHeader.



322
323
324
# File 'lib/email_spec/matchers.rb', line 322

def initialize(name, value)
  @expected_name, @expected_value = name, value
end

Instance Method Details

#descriptionObject



326
327
328
329
330
331
332
# File 'lib/email_spec/matchers.rb', line 326

def description
  if @expected_value.is_a?(String)
    "have header #{@expected_name}: #{@expected_value}"
  else
    "have header #{@expected_name} with value matching #{@expected_value.inspect}"
  end
end

#failure_messageObject



343
344
345
346
347
348
349
# File 'lib/email_spec/matchers.rb', line 343

def failure_message
  if @expected_value.is_a?(String)
    "expected the headers to include '#{@expected_name}: #{@expected_value}' but they were #{mail_headers_hash(@given_header).inspect}"
  else
    "expected the headers to include '#{@expected_name}' with a value matching #{@expected_value.inspect} but they were #{mail_headers_hash(@given_header).inspect}"
  end
end

#failure_message_when_negatedObject Also known as: negative_failure_message



351
352
353
354
355
356
357
# File 'lib/email_spec/matchers.rb', line 351

def failure_message_when_negated
  if @expected_value.is_a?(String)
    "expected the headers not to include '#{@expected_name}: #{@expected_value}' but they were #{mail_headers_hash(@given_header).inspect}"
  else
    "expected the headers not to include '#{@expected_name}' with a value matching #{@expected_value.inspect} but they were #{mail_headers_hash(@given_header).inspect}"
  end
end

#mail_headers_hash(email_headers) ⇒ Object



360
361
362
# File 'lib/email_spec/matchers.rb', line 360

def mail_headers_hash(email_headers)
  email_headers.fields.inject({}) { |hash, field| hash[field.field.class::FIELD_NAME] = field.to_s; hash }
end

#matches?(email) ⇒ Boolean

Returns:

  • (Boolean)


334
335
336
337
338
339
340
341
# File 'lib/email_spec/matchers.rb', line 334

def matches?(email)
@given_header = email.header

if @expected_value.is_a?(String)
  @given_header[@expected_name].to_s == @expected_value
else
  @given_header[@expected_name].to_s =~ @expected_value
end      end