Tagged Questions
0
votes
0answers
14 views
rspec controller testing - has_many :through :source - RuntimeError: Called id for nil
Please help me. I try to run the following controller test but I cannot figure out why it returns following error:
Failure/Error: get :index, user_id: controller.current_user.id
RuntimeError:
...
0
votes
1answer
22 views
Rails rspec test wheter controller action define instance variable
I have a controller with action:
def new
@team = Team.new
@team.team_links.build
end
And I want to test this action with rspec. (I know it works, because it works as it should in the ...
0
votes
2answers
42 views
Rspec: Controller specs for 2 level nested resources
my routes.rb
namespace :magazine do
resources :pages do
resources :articles do
resources :comments
end
end
end
While writing controller specs for Comments:
describe "GET ...
0
votes
3answers
31 views
How to test a controller with steps to use some action
In my system, I have a user that have one company that have multiple accounts.
User sign in system using Devise, and have a virtual attribute called selected_company that was setted in ...
0
votes
1answer
20 views
How do I set a variable in my rspec test so that it can be used by the controller for a query?
I have a variable in my sessions controller.
session[:facebook_profile_id] = @user_info['id']
@user_info['id'] is an int. Example: 123
I then use that session variable in my main controller to get ...
2
votes
0answers
35 views
Simulating sub-uri in RSpec tests
In my Rails 3.2 application controller responds with JSON containing an URLs to images (stored with Paperclip). It works ok locally,but links are broken on server, because the application is deployed ...
0
votes
0answers
60 views
How can we test /user/show?id=xx with rspec?
The route in my system is:
user_show GET /user/show(.:format) user#show.
The controller code is:
def show
@user = User.find(params[:id])
respond_to do |format|
format.html # ...
0
votes
1answer
37 views
Respond to JSON is responding via HTML
In my Rails app, I have in the Application controller
respond_to :json
A controller that inherits Application controller responds with json like so in the action...
# Some code
if ...
1
vote
1answer
64 views
Test a base (abstract) controller
I have a base controller with some functionality, that base controller is not accessible from the outside, no route matches it.
Then, I extend that controller with other controllers to add extra ...
0
votes
1answer
74 views
Assign variable in rspec controller test
I have an rspec test in which I need to test my controller.
it "renders the #show view" do
get :show, id: FactoryGirl.create(:quiz)
@facebook_profile = FactoryGirl.create(:facebook_profile)
...
1
vote
2answers
80 views
RSpec - Controller Specs with no corresponding views
This is a simple issue for more advanced Rails developers, but I haven't been able to pin down an answer. I have two very basic controller specs that aren't passing. I don't have associated views (I'm ...
0
votes
1answer
45 views
Is stubbing/mocking necessary with 3rd party api
I have an action in my controller that connects to a third party api and does some work. If the code succeeds then my user is saved. If the third party api fails, then the user is not saved.
def ...
0
votes
2answers
144 views
Rspec controller error? expecting <“index”> but rendering with <“”> or it's working?
I'm new with rspec test and maybe there are something that I dont undertand.
if can any help me, I really appreciate some help.
File Structure:
app/models/booking.rb
app/models/user.rb
...
0
votes
0answers
91 views
Rspec controller error: No route matches {:controller=>“bookings”, :action=>“/dashboard/index”}
I'm getting an error when I try to test mi controller, I'm new with rspec test and maybe there are something that I dont undertand.
$rspec spec/controllers/booking_controller_spec.rb
I get the ...
0
votes
1answer
130 views
session hash does not persist on rspec tests
In my people_controller_spec.rb I have
before(:each) do
@office = FactoryGirl.create(:office)
@organization = FactoryGirl.create(:organization)
@user = FactoryGirl.create(:user, ...
1
vote
1answer
31 views
Testing Controllers that are within Modules
I'm using Rspec and I want to test a controller that is within a module that is within another module.
module Food
module Fruit
class ApplesController < ApplicationController
etc...
...
2
votes
2answers
101 views
Mixed up with rspec assigns while testing controller
I'm trying to get a handle on testing controllers, and so far I seem to be stuck on the simplest problems.
documents.controller:
def edit
@document = Document.find(params[:id])
end
...
0
votes
1answer
127 views
Rspec testing a controller search method
I'm trying to test the behavior of a custom search method in my controller:
#RecordingsController
def search
# raise params.inspect
@search = params[:search]
searches = []
...
0
votes
0answers
21 views
Ruby on Rails rspec CanCan discrepency
So I ran into some behavior I found peculiar. Lets say I have 2 rspecs for 2 controllers, A_spec and B_spec. In the testing of A_spec, I had the following line in my spec_helper file
config.include ...
0
votes
1answer
66 views
Rails: Use controller for import
I have a lot of data in JSON and want to import it to my db. My problem is, that I have several after_create and after_update methods in my controller, where other stuff is written to the db.
So I ...
0
votes
1answer
40 views
Rspec not working with having < operator in controller
I'm following Ryan Bates railscasts on password reseting. I decided to implement his code through TDD but one of my tests refuses to work. Whenever I run
context "for checking update succeeds" do
...
0
votes
1answer
176 views
In Rspec, how test a controller action that does not have a route?
In a few of my controllers I have an action that does not have a corresponding route because it is accessed only via a render ... and return in other controller actions.
For example, I have an action
...
0
votes
0answers
30 views
Controller specs: check content of JavaScript delivered by the server after an AJAX request
I have a method EmailConnectionController#show; this renders show.js.haml, which has the following content:
$("#email_account_#{@email_account._id} ...
2
votes
2answers
44 views
How do I test a controller with rspec-rails?
I want to test that my edit recipe page renders using rspec, though it doesn’t route to
recipes/edit
it routes to recipes/id/edit (id being replaced with a number)
my current test looks like ...
6
votes
1answer
514 views
Devise Rspec registration controller test failing on update as if it was trying to confirm email address
I have the following route:
devise_for :users, :controllers => { :omniauth_callbacks => "users/omniauth_callbacks",
:registrations => ...
0
votes
1answer
46 views
Rspec: Stubbing out a where statement in a controller test
I'm writing the following test:
let!(:city_areas) { FactoryGirl.create_list(:city_area, 30) }
before {
@city_areas = mock_model(CityArea)
...
1
vote
1answer
38 views
How do I emulate logging in for controller tests?
I have a SearchesController that requires a user to be logged in before it will do its thing.
I'd like to write an rspec helper function login to emulate logging in for controller tests. (NB: I ...
1
vote
1answer
52 views
Testing Rails Controller: get and post strange behavior
I'm using RSpec (through the gem rspec-rails) for testing and developing
my application.
I've tried to "test" a controller and run up against a strange behavior of post and get methods (same for all ...
5
votes
2answers
280 views
No route match in controller spec for my complex route
I have this route:
resources :items, path: 'feed', only: [:index], defaults: { variant: :feed }
which is nested in the api and v1 namespaces. (the request_source params comes from the Api ...
1
vote
1answer
74 views
How to pass in a form param from a Rails controller in RSpec?
I'm trying to write a spec for one of my Rails 3 controllers. The path I'm trying to hit is:
GET /:user_id/photos/shared_photos?page=:page
That :page param is usually instantiated through an AJAX ...
0
votes
0answers
173 views
Rspec. Testing controller with gon.rabl
I use gon with rabl to pass variables from rails to javascript. But when i test the application, i get the error
Failure/Error: get 'index
NoMethodError:
undefined method `controller_path' for ...
1
vote
2answers
332 views
Rspec Rails: testing controller method 'create' with a multi-model form
I am building a Ruby on Rails app with the usual assortment of models, views and controllers.
The 'create' action in one of my controllers is supposed to create an instance of two different models. ...
1
vote
1answer
650 views
rails rspec - (2nd test) Expected response to be a <:redirect>, but was <200>
Expected response to be a <:redirect>, but was <200>
My tests has:
describe "Link POST #create" do
context "with valid attributes" do
it "creates a new link" do
expect{
...
2
votes
2answers
144 views
Are instance variables from the controller passed to the spec in Rails?
For some reason, my spec isn't passing. It appears that @categories isn't getting to the spec.
Here's the controller:
class CategoriesController < ApplicationController
def index
...
0
votes
1answer
310 views
rspec index example works but not show example
$ rake spec
1) GroupsController GET show show one group's name & description
Failure/Error: get :show
ActionController::RoutingError:
No route matches ...
2
votes
1answer
1k views
Rspec controller spec
I am new to Rspec please tell me what would be the controller Spec for the following two methods In index method only login page is seen by entering the username control goes to login method and find ...
1
vote
2answers
472 views
What is the proper way to test 'create' controller actions?
I am using Ruby on Rails 3.2.2, Rspec 2.9.0 and RspecRails 2.9.0. I would like to test the create controller action but I don't know how to make that the "right"/"proper" way. I "scaffolded" model, ...
0
votes
2answers
159 views
How to test 'new' controller actions?
I am using Ruby on Rails 3.2.2, Rspec 2.9.0 and RspecRails 2.9.0. I am trying to test a new controller action and I would like to know why I get the error explained above only for that action.
Given:
...
0
votes
1answer
43 views
Testing the behavior of a page through a named route
I have a named route for narrowing the index action to a particular week
match "workouts/week/(:date)" => "workouts#index",
:constraints => { :date => /\d{4}-\d{2}-\d{2}/ },
:as => ...
2
votes
1answer
708 views
how do I test controller method using rspec?
I'm trying to learn rspec. I can't seem to test a rails controller method. When I call the method in the test, rspec just returns an undefined method error. Here is my test example
it 'should ...
0
votes
1answer
137 views
Rspec matching ActiveRecord result sets
UPDATED: I realise now that I've been misreading the diff, and I have a string or symbol on one side of the comparison. Still unsure how I should be putting the expectation in this test however..
I'm ...
0
votes
1answer
305 views
Trace Rspec's get request routing in controller action spec
I am trying to test a simple controller action in a moduled controller. However, my get :index request returns a 404, instead of a 200 response. Is there a way to trace the routing of this get ...
1
vote
0answers
159 views
Test controllers in gem with RSpec
I wonder how to test controllers outside of rails - in a new gem.
How to mock them, and how to use Rails controller test helpers like get, post?
I am trying to test before_filter, that is executed ...
4
votes
2answers
2k views
Testing the Controller with RSpec, Devise, Factory Girl
I have models: Post and User(Devise). I am testing controller Post.
describe "If user sign_in" do
before(:all){
@user = Factory(:user)
}
it "should get new" do
sign_in @user
...
0
votes
0answers
344 views
Rails 3 Routes: controller spec doesn't match member routes
I'm trying to write a spec to a member controller action that suppose to points to "/admin/projects/:id/some_action", the routes.rb file has the following content:
namespace :admin do
resources ...
2
votes
0answers
109 views
assert_template in test_case.rb seems to be broken. How do I test the layout in a controller spec?
Below is a code snippet form #assert_template. expected_layout is not defined! and what sets @layouts.
msg = build_message(message,
"expecting layout <?> but action rendered ...
2
votes
1answer
2k views
RSpec test for create action of a controller for a nested resource
I have a Rails application (Rails 3.0.10) where users can have many articles, and where the users can leave comments on the articles. Comments are made on the article show page.
Now I want to test ...
0
votes
0answers
78 views
Contradiction between Rspec and Rake [duplicate]
Possible Duplicate:
Rails pages_controller_spec.rb test shouldn't be failing but is, error?
Rails 3.0, following Ruby on Rails Tutorial by Michael Hartl
How is it possible to get "No ...
0
votes
1answer
189 views
Ruby Problemewith filter and RSpec
I can't figure out why this RSpec test fails. Any advice?
I try to handle the destruction of post. Only users who create posts can delete them.
class PostsController < ApplicationController
...
1
vote
1answer
2k views
Testing nested resource controller with rspec in Rails 3.1
I am trying to make a test for a controller for a nested resource.
The nesting is like this in the routes.rb
resources :cars, :only => [:index, :destroy, :show] do
resources ...

