25

我正在寻找一个使用 Rspec 2 作为测试库的相当新的开源应用程序。我想看看有经验的开发人员如何正确利用该库来测试整个堆栈,因为我一直对自己的知识持怀疑态度(来自 testunit,部分原因是最新 Rspec 版本的文档相当稀疏,甚至虽然它不断改进)。

如果一个项目同时使用 Cucumber、Pickle 和/或 Capybara 以及 Rspec 2,你会让我高兴得跳起来。

任何指针?

干杯!

4

1 回答 1

54

我的 2 美分:

用牛排代替黄瓜。它的核心是 RSpec,它很简单并且可以完成工作。

https://github.com/cavalle/steak

Capybara 允许您使用不同的驱动程序。一些驱动程序支持 javascript,使用浏览器运行,速度更快,速度更慢等。为您正在使用 Swinger 测试的规范使用最好的驱动程序:

https://github.com/jeffkreftmeijer/swinger

我使用我自己的 Akephalos 分支 - 一个驱动程序 - 速度快,支持 javascript、UTF-8(这是我的分支添加的)并且不需要外部浏览器。

https://github.com/Nerian/akephalos2

RSpec 的一个好习惯是使用“上下文”。问我是否需要澄清。另外,请注意let方法。它返回块返回的任何内容。它对于在内部声明模拟对象并在样本上使用它们很有用。.

feature "Course" do

  let(:school) {School.make!}

  context "Loged in" do
    before(:each) do
      switch_to_subdomain(school)
    end

    context "In the new course form" do
      before(:each) do
        click_link("Courses")
        click_link("New course")
      end

      scenario "New course" do               
      end

      scenario "A Course without name should not be accepted" do
      end

      scenario "A new course should not be created if there is another one with the same name in the same school" do
      end
    end
  end  
end   

此外,这本书:实用程序员的 RSpec Book 是一个很好的资源,可以帮助您了解 RSpec、Capybara、Cucumber 和所有这些行为驱动开发敏捷事物背后的核心概念 :)

编辑:

另外,我使用 Machinist2 作为固定装置。 https://github.com/notahat/machinist

效果很好。比工厂女强。

还有 Fabricator,它有一个优秀的网站和一个非常有用的 DSL。

https://github.com/paulelliott/fabrication

您可以将 Machinist 与 Forgery 结合使用以创建智能数据。

https://github.com/sevenwire/forgery

 School.blueprint do
    name { "Pablo de olavide"}
 end

 Student.blueprint do
    first_name { Forgery::Name.first_name}
    last_name { Forgery::Name.last_name }
    school { School.make! }
 end

您可以将此与 Thor 任务结合使用,以填充您的开发数据库,​​以最终用户看到的方式查看应用程序。

def populate        
    require File.expand_path('config/environment.rb')
    require File.expand_path('spec/support/blueprints.rb')        
    drop
    puts "populating database"
    1.times do |num|
       school = School.make!
       50.times do
       Student.make!(:school => school)

       end                                             
    5.times do        
       Course.make!(:school => school)          
       Professor.make!(:school => school)                
       end            
    end
end

RSpec 2 的文档有很多例子:

http://relishapp.com/rspec

此外,这篇文章还提供了许多其他提示:

http://eggsonbread.com/2010/03/28/my-rspec-best-practices-and-tips/

另一个非常好的建议的帖子:

http://flux88.com/2011/05/dry-up-your-rspec-files-with-subject-let-blocks/

优化测试的执行时间:

http://blog.leshill.org/blog/2011/10/23/fast-specs.html

http://jeffkreftmeijer.com/2011/spec-helpers-bundler-setup-faster-rails-test-suites/

于 2011-01-06T18:31:29.243 回答