Sha256: 29a440e7e0154d76e3f363d016f14949053712c26bb1f06f66ff37be5b6a0ed7

Contents?: true

Size: 1.53 KB

Versions: 2

Compression:

Stored size: 1.53 KB

Contents

def klass(klass_name = nil)
  @klass ||= klass_name.singularize.camelize.constantize
end

def query(klass_name = nil)
  @query ||= klass(klass_name).criteria
end

Then /^the query result is equal to the document '(.*)'$/ do |name|
  doc = instance_variable_get("@#{name}")
  query.should == doc
end

Then /^one of the query results is the document '(.*)'$/ do |name|
  doc = instance_variable_get("@#{name}")
  query.any? {|d| d == doc}.should be_true
end

Then /^the query result with "(.*)" == "(.*)" has a count of (.*)$/ do |key, value, count|
  query.find {|r| r.has_key?(key) and r[key] == value }['count'].should == count.to_i
end

Then /^the query result with "([^\"]*)" == "([^\"]*)" has the document '(.*)'$/ do |key, value, name|
  doc = instance_variable_get("@#{name}")
  query.find {|r| r.has_key?(key) and r[key] == value }['group'].should include(doc)
end

Then /^the query result has (.*) documents*$/ do |count|
  if query.respond_to?(:size)
    query.size.should == count.to_i
  else
    query.count.should == count.to_i
  end
end

Then /^the (first|last) query result is the document '(.*)'$/ do |position, name|
  doc = instance_variable_get("@#{name}")
  query.entries.send(position).should == doc
end

Then /^the size of the query result is (.*)$/ do |count|
  query.to_a.size.should == count.to_i
end

Then /^the query result is the document '(.*)'$/ do |name|
  object = instance_variable_get("@#{name}")
  if query.kind_of?(Array)
    query.size.should == 1
    query.first.should == object
  else
    query.should == object
  end
end

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
mongo_doc-0.3.0 features/step_definitions/query_steps.rb
mongodoc-0.2.4 features/step_definitions/query_steps.rb