1
0
Fork 0
mirror of https://github.com/awesome-print/awesome_print synced 2023-03-27 23:22:34 -04:00
awesome_print/spec/ext/mongo_mapper_spec.rb

102 lines
2.5 KiB
Ruby
Raw Normal View History

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
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
before do
@ap = AwesomePrint::Inspector.new(:plain => true, :sort_keys => true)
2011-05-06 17:29:53 -04:00
end
it "should print class instance" do
2011-05-06 17:29:53 -04:00
user = MongoUser.new(:first_name => "Al", :last_name => "Capone")
out = @ap.send(:awesome, user)
str = <<-EOS.strip
#<MongoUser:0x01234567
@_new = true,
attr_accessor :_id = #<BSON::ObjectId:0x01234567
attr_accessor :data = [
[ 0] 42,
[ 1] 42,
[ 2] 42,
[ 3] 42,
[ 4] 42,
[ 5] 42,
[ 6] 42,
[ 7] 42,
[ 8] 42,
[ 9] 42,
[10] 42,
[11] 42
]
>,
attr_accessor :first_name = "Al",
attr_accessor :last_name = "Capone",
attr_reader :_id_before_type_cast = #<BSON::ObjectId:0x01234567
attr_accessor :data = [
[ 0] 42,
[ 1] 42,
[ 2] 42,
[ 3] 42,
[ 4] 42,
[ 5] 42,
[ 6] 42,
[ 7] 42,
[ 8] 42,
[ 9] 42,
[10] 42,
[11] 42
]
>,
attr_reader :changed_attributes = {
"first_name" => nil,
"last_name" => nil
},
attr_reader :first_name_before_type_cast = "Al",
attr_reader :last_name_before_type_cast = "Capone"
>
2011-03-29 03:48:52 -04:00
EOS
2011-05-06 17:29:53 -04:00
out.gsub!(/0x([a-f\d]+)/, "0x01234567")
out.gsub!(/(\[\s?\d+\])\s\d+/, "\\1 42")
2011-05-06 17:29:53 -04:00
out.should == str
end
2011-03-29 03:48:52 -04:00
it "should print the class" do
2011-05-06 17:29:53 -04:00
@ap.send(:awesome, MongoUser).should == <<-EOS.strip
class MongoUser < Object {
2011-03-29 03:48:52 -04:00
"_id" => :object_id,
"first_name" => :string,
"last_name" => :string
2011-03-29 03:48:52 -04:00
}
EOS
2011-05-06 17:29:53 -04:00
end
it "should print the class when type is undefined" do
2011-05-06 17:29:53 -04:00
class Chamelion
include MongoMapper::Document
key :last_attribute
end
2011-05-06 17:29:53 -04:00
@ap.send(:awesome, Chamelion).should == <<-EOS.strip
class Chamelion < Object {
"_id" => :object_id,
"last_attribute" => :undefined
}
2011-03-29 03:48:52 -04:00
EOS
end
end
rescue LoadError
puts "Skipping MongoMapper specs..."
end