Rspec测试在使用Paperclip时卡住了

6
我可以帮助您翻译。以下是翻译的结果,保留了HTML标签和原始格式:

我在我的应用程序中有一个图片模型,它使用Paperclip来附加一张图片。

该模型如下:

class Picture < ActiveRecord::Base
  has_attached_file :image, :default_url => "/system/:attachment/missing.png", :styles => { :small => "100x100#", :medium => "460x460>", :large => "1024x1024>" }

  validates_attachment_presence :image
  validates_attachment_content_type :image, :content_type => [/image\/(x-)?png/i, /image\/(p)?jpeg/i]
  validates_attachment_size :image, :less_than => 5.megabytes

  validates_presence_of :name
  validates_format_of :name, :with => /^[a-z0-9_\-!@#%&()' ]+$/i
end

当我运行测试时,日志中的测试在此部分挂起:
Processing PagesController#index (for 0.0.0.0 at 2010-07-10 11:29:54) [GET]
  Parameters: {"action"=>"index", "controller"=>"pages"}
  Picture Load (0.2ms)   SELECT * FROM "pictures" LIMIT 1
Rendering template within layouts/application
Rendering pages/index
Completed in 2ms (View: 0, DB: 0) | 200 OK [http://test.host/index]
[paperclip] identify '-format' '%wx%h' '/var/folders/cD/cDCiDnTlH5ehwTjJq1pxYE+++TI/-Tmp-/stream,6515,0.txt[0]' 2>/dev/null

我的页面控制器如下:

class PagesController < ApplicationController
  def index
    @picture = Picture.first ? Picture.first : Picture.new
  end
end

控制器的测试如下所示:
describe PagesController do
  describe "GET 'index'" do
    before(:each) do
      get :index
    end

    it "should be successful" do
      response.should be_success
    end

    it "should assign picture" do
      assigns[:picture].should_not be_nil
    end

    it "should assign a valid picture" do
      assigns[:picture].class.should == Picture
    end
  end
end

我的测试在运行rake spec:models时也会挂起,只会显示
[paperclip] identify '-format' '%wx%h' '/var/folders/cD/cDCiDnTlH5ehwTjJq1pxYE+++TI/-Tmp-/stream,6515,0.txt[0]' 2>/dev/null

日志中的一行。我的模型测试看起来像:

describe Picture do
  it { should have_attached_file(:image) }
  it { should validate_attachment_presence(:image) }
  it {
    should validate_attachment_content_type(:image).
    allowing('image/png', 'image/x-png', 'image/jpeg', 'image/pjpeg').
    rejecting('text/plain', 'text/xml', 'image/tiff')
  }
  it { should validate_attachment_size(:image).less_than(5.megabytes) }

  it { should validate_presence_of(:name) }
  ["Client's website", "This is a great site!", "my_awes0me-s!te"].each do |phrase|
    it { should allow_value(phrase).for(:name) }
  end
  ["Client's web$ite", "This is a great^ site!", "my_awes;0me-s!te"].each do |phrase|
    it { should_not allow_value(phrase).for(:name) }
  end

  context "is new" do
    it "should have a default missing image" do
      picture = Picture.new
      picture.image.url.should == "/system/images/missing.png"
    end
  end
end

为什么会卡顿?(如果我运行模型测试一段时间后,它会慢慢移动,看起来像是在运行所有的转换,如何将其存根掉?)
1个回答

1

我在使用 Ruby 1.8.7 时遇到了同样的问题,但在 Ruby 1.9.2 上完全没有卡顿。

这个链接解决了我的问题。


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接