Class: CouchPotato::RSpec::MapToMatcher

Inherits:
Object
  • Object
show all
Includes:
RunJS
Defined in:
lib/couch_potato/rspec/matchers/map_to_matcher.rb

Instance Method Summary collapse

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_for_shouldObject



51
52
53
# File 'lib/couch_potato/rspec/matchers/map_to_matcher.rb', line 51

def failure_message_for_should
  "Expected to map to #{@expected_ruby.inspect} but got #{@actual_ruby.inspect}."
end

#failure_message_for_should_notObject



55
56
57
# File 'lib/couch_potato/rspec/matchers/map_to_matcher.rb', line 55

def failure_message_for_should_not
  "Expected not to map to #{@actual_ruby.inspect} but did."
end

#matches?(view_spec) ⇒ Boolean

Returns:

  • (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
# File 'lib/couch_potato/rspec/matchers/map_to_matcher.rb', line 24

def matches?(view_spec)
  js = <<-JS
    var doc = #{@input_ruby.to_json};
    var map = #{view_spec.map_function};
    var lib = #{view_spec.respond_to?(:lib) && view_spec.lib.to_json};
    var result = [];
    var require = function(modulePath) {
      var exports = {};
      var pathArray = modulePath.split("/").slice(2);
      var result = lib;
      for (var i in pathArray) {
        result = result[pathArray[i]]
      }
      eval(result);
      return exports;
    }

    var emit = function(key, value) {
      result.push([key, value]);
    };
    map(doc);
    JSON.stringify(result);
  JS
  @actual_ruby = JSON.parse(run_js(js))
  @expected_ruby == @actual_ruby
end