Testing multiple page actions in Rails

L

listrecv

Some actions in Rails require sessions spanning multiple pages. Things
like "login & check account" or "fill a shopping cart and check out".

I'm having trouble creating functional testing for these for two
reasons:

1) The post() etc. methods seem to reset the session each time.

2) How do you create a functional test that accesses multiple
controllers?

Specifically, could someone post a functional test to a controller that
requires the user be logged in first?

Thanks.
 
G

gregarican

Some actions in Rails require sessions spanning multiple pages. Things
like "login & check account" or "fill a shopping cart and check out".


I'm having trouble creating functional testing for these for two
reasons:


1) The post() etc. methods seem to reset the session each time.


2) How do you create a functional test that accesses multiple
controllers?


Specifically, could someone post a functional test to a controller that
requires the user be logged in first?


Thanks.


You might have better results posting this to the Rails mailing list at

http://lists.rubyonrails.org/mailman/listinfo.
 
L

listrecv

I took a look at some RoR projects, to see how they do this.

Many just set the session explicilty, to simulate what it would look
like in the middle.

I don't like this, because it couples the test to the implementation of
what's stored in the session. It would be much better to have a tester
that can span multiple requests.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,766
Messages
2,569,569
Members
45,044
Latest member
RonaldNen

Latest Threads

Top