0

我有以下代码检查返回的视频对象是否与我输入的相同。

video 对象是Panda Stream对象,参考他们的主页,Panda::Video.find应该完全Panda::Video.create返回我使用该方法放入的对象。

# screencast_spec.rb
before(:each) do
  @screencast = Factory.build(:screencast)
  @video = Panda::Video.create(:source_url => "http://panda-test-harness-videos.s3.amazonaws.com/panda.mp4")
end
it "should fetch the video with the #video method" do
  @screencast.video = @video
  @screencast.video.should == @video
end

# screencast.rb
# Returns the panda::video object
def video
  Panda::Video.find(self.video_id)
end
# Sets the +video_id+ reference
def video= video_object_or_id
  video_object_or_id = video_object_or_id.id unless video_object_or_id.is_a?(Integer)
  self.video_id = video_object_or_id
end

RSpec 返回的错误是这样的:

1) Screencast#video should fetch the video with the #video method
Failure/Error: @screencast.video.should == @video
   expected: #<Panda::Video id: "dac9bf057c9b667f57096054a64625a1", created_at: "2012/01/29 18:04:07 +0000", updated_at: "2012/01/29 18:04:07 +0000", original_filename: "panda.mp4", source_url: "http://panda-test-harness-videos.s3.amazonaws.com/panda.mp4", duration: nil, height: nil, width: nil, extname: ".mp4", file_size: nil, video_bitrate: nil, audio_bitrate: nil, audio_codec: nil, video_codec: nil, fps: nil, audio_channels: nil, audio_sample_rate: nil, status: "processing", path: "dac9bf057c9b667f57096054a64625a1", cloud_id: "55372b1612963b045f27bb093fed0abb">
        got: #<Panda::Video id: "dac9bf057c9b667f57096054a64625a1", created_at: "2012/01/29 18:04:07 +0000", updated_at: "2012/01/29 18:04:07 +0000", original_filename: "panda.mp4", source_url: "http://panda-test-harness-videos.s3.amazonaws.com/panda.mp4", duration: nil, height: nil, width: nil, extname: ".mp4", file_size: nil, video_bitrate: nil, audio_bitrate: nil, audio_codec: nil, video_codec: nil, fps: nil, audio_channels: nil, audio_sample_rate: nil, status: "processing", path: "dac9bf057c9b667f57096054a64625a1", cloud_id: "55372b1612963b045f27bb093fed0abb"> (using ==)
   Diff:
 # ./spec/models/screencast_spec.rb:26:in `block (3 levels) in <top (required)>'

请注意差异表示两个对象之间没有区别,那么为什么比较失败?

如果你们中有任何人有任何指示,或者在我能得到所有指导之前尝试过测试熊猫流

4

1 回答 1

0

ruby 提供了 3 种测试相等性的方法== eql? equals?。使用时,==您正在按对象身份进行比较。ruby 为此使用对象 ID。重要的是类可以重新定义,==就像对字符串比较所做的那样。

如果您不想了解有关此主题的更多信息,我可以建议您这篇博文:http ://www.skorks.com/2009/09/ruby-equality-and-object-comparison/

于 2012-01-30T18:28:55.013 回答