Class: CouchPotato::RSpec::MapToMatcher
- Inherits:
-
Object
- Object
- CouchPotato::RSpec::MapToMatcher
- Includes:
- RSpec::Matchers::Composable
- Defined in:
- lib/couch_potato/rspec/matchers/map_to_matcher.rb
Instance Method Summary collapse
- #failure_message ⇒ Object
- #failure_message_when_negated ⇒ Object
-
#initialize(expected_ruby, input_ruby) ⇒ MapToMatcher
constructor
A new instance of MapToMatcher.
- #matches?(view_spec) ⇒ Boolean
Constructor Details
#initialize(expected_ruby, input_ruby) ⇒ MapToMatcher
Returns a new instance of MapToMatcher.
19 20 21 22 |
# File 'lib/couch_potato/rspec/matchers/map_to_matcher.rb', line 19 def initialize(expected_ruby, input_ruby) @expected_ruby = expected_ruby @input_ruby = input_ruby end |
Instance Method Details
#failure_message ⇒ Object
53 54 55 |
# File 'lib/couch_potato/rspec/matchers/map_to_matcher.rb', line 53 def "Expected to map to #{@expected_ruby.inspect} but got #{@actual_ruby.inspect}." end |
#failure_message_when_negated ⇒ Object
57 58 59 |
# File 'lib/couch_potato/rspec/matchers/map_to_matcher.rb', line 57 def "Expected not to map to #{@actual_ruby.inspect} but did." end |
#matches?(view_spec) ⇒ Boolean
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
# File 'lib/couch_potato/rspec/matchers/map_to_matcher.rb', line 24 def matches?(view_spec) js = <<-JS (function() { var doc = #{@input_ruby.to_json}; var map = #{view_spec.map_function}; var result = []; var require = function(modulePath) { var module = {exports: {}}; var exports = module.exports; var pathArray = modulePath.split("/").slice(2); var result = {}; for (var i in pathArray) { result = result[pathArray[i]]; } eval(result); return module.exports; } var emit = function(key, value) { result.push([key, value]); }; map(doc); return JSON.stringify(result); })() JS @actual_ruby = JSON.parse(ExecJS.eval(js)) values_match? @expected_ruby, @actual_ruby end |