I want to test a scenario to check if action caching is perfectly
working. My test case goes something like this:-
Step 1 : Call the action which is cached. This action has an
instance variable which stores queried results of user specific stats
like number of users belonging to each of the areas out of a number of
areas within a city. I need to fetch the initial set of results some how
from the controller to my spec file.( The question is how do I do that
?)
Step 2: Update an area for a single user. This would change the
overall stats wrt this area(if it already exists) or would add a new
area if its completely unique.
Step 3: Recall the cached action, and check If I am still able to
end up with the old results, not the latest changes as of what was done
in step 2; in terms area stats for the users. Now to do this, I need to
use the instance variable result as in Step 1, with an instance variable
result I obtain after recalling the cached action this very Step.
Step 4: Finally , comparing both results, they should be same. This
would pass my test case.
The BIG Question again, how do I access the local variable(s) of a
controller method in my spec file?
Step 1 : Call the action which is cached. This action has an Step 3: Recall the cached action, and check If I am still able to
end up with the old results, not the latest changes as of what was done
in step 2; in terms area stats for the users. Now to do this, I need to
use the instance variable result as in Step 1, with an instance variable
result I obtain after recalling the cached action this very Step.
Step 4: Finally , comparing both results, they should be same. This
would pass my test case.
The BIG Question again, how do I access the local variable(s) of a
controller method in my spec file?
You don’t need to, so why would you want to?
Here’s the strategy I use to spec caching, and I think this is pretty
common.
In a request spec (or integration, if you prefer that naming), write
an end to end example that specifies that you repeatedly get the same
result. This doesn’t say anything about caching, just that the same
result comes back twice. This should have no stubbing or mocking. It
will be slow, but there’s only one of these.
In a controller spec, set a message expectation on a model that the
query is only requested once, and invoke the controller action twice.
e.g.
User.should_receive(:in_zipcode).once
get :the_action_that_is_being_cached
get :the_action_that_is_being_cached
That’s it! No need to interrogate internals. No need to actually access
data. The only thing being mocked is on the surface of the object.
Now you probably want to specify how/when the cache expires as well, but
that’s a different matter. This only covers the caching itself.
Now you probably want to specify how/when the cache expires as well, but
that’s a different matter. This only covers the caching itself.
HTH,
David
Thanks David, your inputs were really useful. How do you suggest I can
test expiry of cache in this scenario. Are there any common strategies
for this too?
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.