2011-05-13 19:37:24 -04:00
|
|
|
require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
|
2011-03-29 03:48:52 -04:00
|
|
|
|
2011-05-04 20:55:31 -04:00
|
|
|
begin
|
|
|
|
require "mongo_mapper"
|
2011-05-13 19:37:24 -04:00
|
|
|
require "awesome_print/ext/mongo_mapper"
|
2011-03-29 03:48:52 -04:00
|
|
|
|
2011-05-06 17:29:53 -04:00
|
|
|
describe "AwesomePrint/MongoMapper" do
|
|
|
|
before :all do
|
|
|
|
class MongoUser
|
|
|
|
include MongoMapper::Document
|
2011-03-29 03:48:52 -04:00
|
|
|
|
2011-05-06 17:29:53 -04:00
|
|
|
key :first_name, String
|
|
|
|
key :last_name, String
|
|
|
|
end
|
2011-03-29 03:48:52 -04:00
|
|
|
end
|
|
|
|
|
2011-05-06 17:29:53 -04:00
|
|
|
before :each do
|
2011-05-13 20:36:12 -04:00
|
|
|
@ap = AwesomePrint::Inspector.new(:plain => true)
|
2011-05-06 17:29:53 -04:00
|
|
|
end
|
2011-05-04 20:55:31 -04:00
|
|
|
|
2011-05-06 17:29:53 -04:00
|
|
|
it "should print for a class instance" do
|
|
|
|
user = MongoUser.new(:first_name => "Al", :last_name => "Capone")
|
|
|
|
out = @ap.send(:awesome, user)
|
|
|
|
str = <<-EOS.strip
|
|
|
|
#<MongoUser:0x01234567> {
|
2011-03-29 03:48:52 -04:00
|
|
|
"_id" => BSON::ObjectId('4d9183739a546f6806000001'),
|
2011-05-06 15:29:06 -04:00
|
|
|
"first_name" => "Al",
|
|
|
|
"last_name" => "Capone"
|
2011-03-29 03:48:52 -04:00
|
|
|
}
|
|
|
|
EOS
|
2011-05-06 17:29:53 -04:00
|
|
|
out.gsub!(/'([\w]+){23}'/, "'4d9183739a546f6806000001'")
|
|
|
|
out.gsub!(/0x([a-f\d]+)/, "0x01234567")
|
|
|
|
out.should == str
|
|
|
|
end
|
2011-03-29 03:48:52 -04:00
|
|
|
|
2011-05-06 17:29:53 -04:00
|
|
|
it "should print for a class" do
|
|
|
|
@ap.send(:awesome, MongoUser).should == <<-EOS.strip
|
|
|
|
class MongoUser < Object {
|
2011-03-29 03:48:52 -04:00
|
|
|
"_id" => :object_id,
|
2011-05-06 15:29:06 -04:00
|
|
|
"first_name" => :string,
|
|
|
|
"last_name" => :string
|
2011-03-29 03:48:52 -04:00
|
|
|
}
|
2011-03-29 04:04:18 -04:00
|
|
|
EOS
|
2011-05-06 17:29:53 -04:00
|
|
|
end
|
2011-03-29 04:04:18 -04:00
|
|
|
|
2011-05-06 17:29:53 -04:00
|
|
|
it "should print for a class when type is undefined" do
|
|
|
|
class Chamelion
|
|
|
|
include MongoMapper::Document
|
|
|
|
key :last_attribute
|
|
|
|
end
|
2011-05-04 20:55:31 -04:00
|
|
|
|
2011-05-06 17:29:53 -04:00
|
|
|
@ap.send(:awesome, Chamelion).should == <<-EOS.strip
|
2011-03-29 04:04:18 -04:00
|
|
|
class Chamelion < Object {
|
|
|
|
"_id" => :object_id,
|
|
|
|
"last_attribute" => :undefined
|
|
|
|
}
|
2011-03-29 03:48:52 -04:00
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|
2011-05-04 20:55:31 -04:00
|
|
|
|
|
|
|
rescue LoadError
|
|
|
|
puts "Skipping MongoMapper specs..."
|
|
|
|
end
|