开发者

Test with Rspec using session sinatra

开发者 https://www.devze.com 2022-12-22 23:17 出处:网络
I have sinatra ap开发者_运维问答pliction using session, how do I test a page that uses session?

I have sinatra ap开发者_运维问答pliction using session, how do I test a page that uses session?

I using Rspec + sinatra

Tks


This page, show's the main problem of testing session with rspec and sinatra.

The main problem is that the variable session is not accessible from the test code. To solve it, it suggests (and I confirm) to add the fowling lines at spec/spec_helper.rb:

def session
  last_request.env['rack.session']
end

It will make accessible a mocked session object from the last request at the test code.

Here's my controller code that read's a code param and stores its value at session:

post '/step2callback' do
  session['code'] = params['code']
end

Then here's test code:

context "making an authentication" do
  before do
    post "/step2callback", code: "code_sample"
  end
  it "reads the param code and saves it at session" do
    expect(session['code']).to eq("code_sample")
  end  
end


Same like all other pages.

You need to clarify your question. What is problem with testing session. If problems is that user need to be logged in, then you can use something like this in spec file:

before :each do
  post "/login", {:username => "myuser", :password => "mypass"}
end

which will log you in before each test.


I was only able to get it to work by disabling sessions for the test environment. This blog post has a good example: http://benprew.posterous.com/testing-sessions-with-sinatra

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号