2011-10-26 17:47:15 -04:00
|
|
|
require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
|
|
|
|
|
|
|
|
begin
|
|
|
|
require "mongoid"
|
|
|
|
require "awesome_print/ext/mongoid"
|
|
|
|
|
|
|
|
describe "AwesomePrint/Mongoid" do
|
|
|
|
before :all do
|
|
|
|
class MongoUser
|
|
|
|
include Mongoid::Document
|
|
|
|
|
|
|
|
field :first_name, :type => String
|
|
|
|
field :last_name, :type => String
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-09-06 19:34:11 -04:00
|
|
|
after :all do
|
|
|
|
Object.instance_eval{ remove_const :MongoUser }
|
|
|
|
Object.instance_eval{ remove_const :Chamelion }
|
|
|
|
end
|
|
|
|
|
2011-10-26 17:47:15 -04:00
|
|
|
before do
|
2012-09-06 19:34:11 -04:00
|
|
|
stub_dotfile!
|
2011-10-26 17:47:15 -04:00
|
|
|
@ap = AwesomePrint::Inspector.new :plain => true, :sort_keys => true
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should print class instance" do
|
|
|
|
user = MongoUser.new :first_name => "Al", :last_name => "Capone"
|
|
|
|
out = @ap.send :awesome, user
|
|
|
|
|
2012-08-08 07:59:19 -04:00
|
|
|
object_id = defined?(::Moped) ? '"424242424242424242424242"' : "BSON::ObjectId('424242424242424242424242')"
|
|
|
|
str = <<-EOS.strip
|
2011-12-13 00:41:31 -05:00
|
|
|
#<MongoUser:0x01234567> {
|
2012-08-08 07:59:19 -04:00
|
|
|
:_id => #{object_id},
|
2011-12-13 00:41:31 -05:00
|
|
|
:first_name => "Al",
|
|
|
|
:last_name => "Capone"
|
|
|
|
}
|
2011-10-26 17:47:15 -04:00
|
|
|
EOS
|
|
|
|
out.gsub!(/0x([a-f\d]+)/, "0x01234567")
|
2012-08-08 07:22:15 -04:00
|
|
|
if defined?(::Moped)
|
|
|
|
out.gsub!(/:_id => \"[^"]+/, ":_id => \"424242424242424242424242")
|
|
|
|
else
|
|
|
|
out.gsub!(/Id\('[^']+/, "Id('424242424242424242424242")
|
|
|
|
end
|
2014-05-15 16:47:57 -04:00
|
|
|
expect(out).to eq(str)
|
2011-10-26 17:47:15 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should print the class" do
|
2012-08-08 07:22:15 -04:00
|
|
|
moped_or_not = defined?(::Moped) ? 'moped/' : ''
|
2014-05-15 16:47:57 -04:00
|
|
|
expect(@ap.send(:awesome, MongoUser)).to eq <<-EOS.strip
|
2011-10-26 17:47:15 -04:00
|
|
|
class MongoUser < Object {
|
2012-08-08 07:22:15 -04:00
|
|
|
:_id => :"#{moped_or_not}bson/object_id",
|
2011-12-13 00:41:31 -05:00
|
|
|
:_type => :string,
|
|
|
|
:first_name => :string,
|
|
|
|
:last_name => :string
|
2011-10-26 17:47:15 -04:00
|
|
|
}
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should print the class when type is undefined" do
|
|
|
|
class Chamelion
|
|
|
|
include Mongoid::Document
|
|
|
|
field :last_attribute
|
|
|
|
end
|
|
|
|
|
2012-08-08 07:22:15 -04:00
|
|
|
moped_or_not = defined?(::Moped) ? 'moped/' : ''
|
2012-08-08 07:59:19 -04:00
|
|
|
last_attribute = defined?(::Moped) ? 'object' : '"mongoid/fields/serializable/object"'
|
2014-05-15 16:47:57 -04:00
|
|
|
expect(@ap.send(:awesome, Chamelion)).to eq <<-EOS.strip
|
2011-10-26 17:47:15 -04:00
|
|
|
class Chamelion < Object {
|
2012-08-08 07:22:15 -04:00
|
|
|
:_id => :"#{moped_or_not}bson/object_id",
|
2011-12-13 00:41:31 -05:00
|
|
|
:_type => :string,
|
2012-08-08 07:22:15 -04:00
|
|
|
:last_attribute => :#{last_attribute}
|
2011-10-26 17:47:15 -04:00
|
|
|
}
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
rescue LoadError => error
|
2011-11-24 00:33:03 -05:00
|
|
|
puts "Skipping Mongoid specs: #{error}"
|
2011-10-26 17:47:15 -04:00
|
|
|
end
|