Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

allow rspec 3 #6

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 17 additions & 17 deletions lib/rspec/http/header_matchers.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ module Http
class HeaderMatcher
attr_reader :header, :expected_value, :response
NO_VALUE = Object.new

def initialize(expected)
@header, @expected_value = expected.kind_of?(String) ? [expected, NO_VALUE] : expected.first
end

def matches?(response)
if response[header]
@matcher = case expected_value
Expand All @@ -21,35 +21,35 @@ def matches?(response)
end
@matcher.matches?(response)
end

def description
@matcher.description
end

def failure_message
@matcher.failure_message
end
def negative_failure_message
@matcher.negative_failure_message

def failure_message_when_negated
@matcher.failure_message_when_negated
end
end

class HeaderPresenceMatcher
attr_reader :header, :expected_value, :response
def initialize(header)
@header = header
end

def matches?(response)
@response = response
validate
end

def validate
response[header]
end

def description
"Verify the presence of '#{header}' among the response headers"
end
Expand All @@ -58,11 +58,11 @@ def failure_message
"The header '#{header}' was not found"
end

def negative_failure_message
def failure_message_when_negated
"The header '#{header}' should not have been found, but it was and it has a value of '#{response[header]}'"
end
end

class HeaderStringMatcher < HeaderPresenceMatcher
def initialize(header, expected_value)
super(header)
Expand All @@ -81,11 +81,11 @@ def failure_message
"Expected the response header '#{header}' to have a value of '#{expected_value}' but it was '#{@response[header]}'"
end

def negative_failure_message
def failure_message_when_negated
"Expected the response header '#{header}' to have a value that is not '#{expected_value}'"
end
end

class HeaderRegexpMatcher < HeaderPresenceMatcher
def initialize(header, expected_value)
super(header)
Expand All @@ -104,11 +104,11 @@ def failure_message
"Expected the response header '#{header}' to have a value that matched #{expected_value.inspect} but it was '#{@response[header]}'"
end

def negative_failure_message
def failure_message_when_negated
"Expected the response header '#{header}' to have a value that does not match #{expected_value.inspect} but it was '#{@response[header]}'"
end
end

module HeaderMatchers
def have_header(expected)
HeaderMatcher.new(expected)
Expand Down
2 changes: 1 addition & 1 deletion lib/rspec/http/response_code_matcher.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def failure_message
"Expected #{@target} to #{common_message}"
end

def negative_failure_message
def failure_message_when_negated
"Expected #{@target} to not #{common_message}"
end

Expand Down
3 changes: 1 addition & 2 deletions rspec-http.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,5 @@ Gem::Specification.new do |s|
s.rdoc_options = ["--charset=UTF-8"]
s.require_path = "lib"

s.add_runtime_dependency "rspec", "~> 2.0"
s.add_runtime_dependency "rspec", ">= 2.0", "< 4.0"
end