如何使用Rack / Test测试Sinatra重定向?该应用程序工作,但测试没有

时间:2014-10-31 12:47:51

标签: ruby sinatra rspec2 rack-test

看起来我要么缺少一些非常基本的东西,要么Rack / Test无法应对Sinatra进行重定向。

据推测,有一种解决方法或Rack / Test是没用的。谁能告诉我我应该做些什么来让它在这里工作?

(编辑:我最终想要实现的是测试我最终得到的页面,而不是状态。在测试中,last_response对象指向我的应用程序中不存在的页面,并且当然不是你运行它时实际获得的页面。)

示例应用:

require 'sinatra'
require 'haml'

get "/" do
  redirect to('/test')
end

get '/test' do
  haml :test
end

这可以像您期望的那样工作。转到'/'或'/ test'可以获得views / test.haml的内容。

但是这个测试不起作用:

require_relative '../app.rb'
require 'rspec'
require 'rack/test'

describe "test" do
  include Rack::Test::Methods

  def app
    Sinatra::Application
  end

  it "tests" do
    get '/'
    expect(last_response.status).to eq(200)
  end
end

运行测试时会发生这种情况:

1) test tests
   Failure/Error: expect(last_response.status).to eq(200)

     expected: 200
          got: 302

这就是last_response.inspect的样子:

#<Rack::MockResponse:0x000000035d0838 @original_headers={"Content-Type"=>"text/html;charset=utf-8", "Location"=>"http://example.org/test", "Content-Length"=>"0", "X-XSS-Protection"=>"1; mode=block", "X-Content-Type-Options"=>"nosniff", "X-Frame-Options"=>"SAMEORIGIN"}, @errors="", @body_string=nil, @status=302, @header={"Content-Type"=>"text/html;charset=utf-8", "Location"=>"http://example.org/test", "Content-Length"=>"0", "X-XSS-Protection"=>"1; mode=block", "X-Content-Type-Options"=>"nosniff", "X-Frame-Options"=>"SAMEORIGIN"}, @chunked=false, @writer=#<Proc:0x000000035cfeb0@/home/jonea/.rvm/gems/ruby-1.9.3-p547@sandbox/gems/rack-1.5.2/lib/rack/response.rb:27 (lambda)>, @block=nil, @length=0, @body=[]>

我想知道Rack / Test是否随意决定将“http://example.org”插入重定向?

3 个答案:

答案 0 :(得分:3)

你的考试错了。

获取重定向是状态代码302.所以正确的测试是:

  

期望(last_response.status).to eq(302)

也许更好的方法来检查这只是assert last_response.ok?

http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.3.3

或者像github中的示例:

get "/"
follow_redirect!

assert_equal "http://example.org/yourexpecedpath", last_request.url
assert last_response.ok?

是的,这总是example.org,因为你得到的是模拟而不是真正的反应。

答案 1 :(得分:2)

正如@ sirl33tname指出的那样,重定向仍然是一个重定向,所以我可以期待的最佳状态是302,而不是200.如果我想测试在重定向结束时我是否有一个好的页面,我应该测试ok?而不是状态。

但是,如果我想测试我最终会得到的URL,我需要做更多的事情,因为Rack / Test基本上是一个模拟系统(原文如此)并在重定向上返回一个页面的模拟,而不是实际页面。

但事实证明,用follow_redirect!来覆盖它很容易。

测试成为:

it "tests" do
  get '/'
  follow_redirect!
  expect(last_response.status).to be_ok

  # ...and now I can test for the contents of test.haml, too...
  expect(last_response.body).to include('foo')
end

这就是工作。

答案 2 :(得分:0)

另一种方法是测试variant