使用Sinatra和Rspec进行测试JSON

时间:2017-02-02 06:00:08

标签: json ruby testing rspec sinatra

我是Rspec和Sinatra的新手,想知道如何测试以下内容。我想我已经将Sinatra配置为正确使用Rspec。我有一个JSON被消耗,项目运行100%。但是,测试不起作用。一个测试例子:

it "Has response HTTP 200" do
      get "/"
      puts last_response.inspect
      expect(last_response).to have_http_status(:success)
    end

从.inspect返回时,结果是:

<Rack::MockResponse:0x007fbc948c2f50 @original_headers={"Content-Type"=>"text/html;charset=utf-8", "X-Cascade"=>"pass", "Content-Length"=>"459", "X-XSS-Protection"=>"1; mode=block", "X-Content-Type-Options"=>"nosniff", "X-Frame-Options"=>"SAMEORIGIN"}, @errors="", @body_string=nil, @status=404, @header={"Content-Type"=>"text/html;charset=utf-8", "X-Cascade"=>"pass", "Content-Length"=>"459", "X-XSS-Protection"=>"1; mode=block", "X-Content-Type-Options"=>"nosniff", "X-Frame-Options"=>"SAMEORIGIN"}, @chunked=false, @writer=#<Proc:0x007fbc948c28c0@/Users/eltonsantos/.rvm/gems/ruby-2.3.3@sinatra/gems/rack-1.6.5/lib/rack/response.rb:30 (lambda)>, @block=nil, @length=459, @body=["<!DOCTYPE html>\n<html>\n<head>\n  <style type=\"text/css\">\n  body { text-align:center;font-family:helvetica,arial;font-size:22px;\n    color:#888;margin:20px}\n  #c {margin:0 auto;width:500px;text-align:left}\n  </style>\n</head>\n<body>\n  <h2>Sinatra doesn&rsquo;t know this ditty.</h2>\n  <img src='http://example.org/__sinatra__/404.png'>\n  <div id=\"c\">\n    Try this:\n    <pre>get &#x27;&#x2F;&#x27; do\n  &quot;Hello World&quot;\nend\n</pre>\n  </div>\n</body>\n</html>\n"]>

注意“ Sinatra不知道这个小曲”。用于Rspec和json的配置Sinatra是正确的???很严重,我正在尝试,但我不知道该怎么做:( 没有人用Rspec测试工作:( 这是我的存储库,克隆,分支,提交,任何东西,但请帮助我。

https://github.com/eltonsantos/locaweb-twitter

当我运行ruby app.rb时,它可以工作,但是rspec不起作用。

谢谢!

1 个答案:

答案 0 :(得分:0)

Taryn的

This blog post可能会有所帮助。她用RSpec描述了一个Sinatra控制器测试序列:

describe "GET '/'" do
it "loads homepage" do
  get '/'
  expect(last_response).to be_ok
end

帖子有很多细节,包括模拟返回值的解释。