Tagged Questions
2
votes
1answer
44 views
Rspec: Test redirects in Devise::OmniauthCallbacksController subclass
Following the Railscast on Devise and OmniAuth I have implemented an OmniauthCallbacksController < Devise::OmniauthCallbacksController which contains a single method to handle an OmniAuth callback:
...
0
votes
0answers
25 views
rails: rspec assignment in model test
In my User model I have this before_validation
def assign_category_on_new
if self.new_record? && self.user_type.blank?
self.user_type = @sign_up_as_creative == "1" ? :creative : ...
0
votes
1answer
22 views
converting to devise - capybara::ElementNotFound:
I am in the process of converting my user authentication from scratch to the devise gem. All is completed and appears to be working fine. I changed my rspec tests over, but I have one recurring ...
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
2answers
36 views
Testing Password Length with RSpec Using Devise
I am attempting to test my User model (using the devise gem). I'm running on the rails4 branch of the devise gem. And I'm trying to write a test for the minimum password length.
In my user_spec.rb, ...
0
votes
0answers
50 views
How to test guest user in devise rails gem?
I want to use Devise in my App and i need guest user. I try to use this example -
https://github.com/plataformatec/devise/wiki/How-To:-Create-a-guest-user
Now, i want write some rspec tests for user ...
0
votes
2answers
26 views
How do you get rspec to output what it encountered rather than it “didn't find what it expected”?
I have been struggling to using ruby/rspec/capybara/devise to test my code. A simple test I am trying to write is for signing in. I have a valid user sign in and expect to see an h1 tag as defined ...
0
votes
2answers
24 views
How do I spoof a request host in an rspec test?
We have a small method that some of our other teams use internally. I'm writing tests for it, but I have run in to a small issue:
The method itself checks to ensure the request comes from a specific ...
0
votes
0answers
64 views
Rspec Controller Tests with an STI user model?
I'm attempting to write some controller specs for a sub controller, in this case Admin::UsersController
It has the basic set of CRUD actions.
my users_controller_spec.rb
describe ...
0
votes
1answer
49 views
Rspec + Devise + BaseController
I'm creating a base controller for the admin section of a project. All controllers whitin the admin section will inherit from it.
#app/controllers/admins/base_controller.rb
class ...
0
votes
1answer
61 views
rspec+devise: current_user is missing attribute methods when rspec is ran
This is one of the filter method that is ran when edit method is ran for Users controller
def correct_user?(post)
post.user == current_user || current_user.admin
end
This is the test I am running
...
1
vote
1answer
32 views
How can I test a controller method that uses information from the current_user of Devise?
I am trying to test a controller method that obtains the user_id from the current_user of devise.
Following other answered questions, I try to sign_in with the User mock_up but it gives me the same ...
0
votes
1answer
121 views
Rspec for Devise: Can't mass-assign protected attributes: user_password, user_password_confirmation
I am trying to write a sign up spec for Devise 2.2.2 using RSpec. I prepared the User model as usual.
# app/models/user.rb
class User < ActiveRecord::Base
attr_accessible :role_ids, :as => ...
0
votes
1answer
91 views
RSpec + Devise + override update_with_password
I'm having some troubles to test update_with_password method from devise which I overrided on my User model.
I'm using Rails 3.2, Devise 2.2.3 and Rspec-rails 2.13
Here's what my user model ...
0
votes
1answer
125 views
RSpec, authenticating Devise user in request specs
I'm trying to write RSpec request specs in order to test my service API and for that I need the user to be authenticated.
I found some examples on the net but nothing works, for the moment I'm stuck ...
0
votes
0answers
153 views
integration tests for devise password recovery using rspec, capybara and email_spec
I'm trying to test the password recovery using rspec/capybara using email_spec
My test.rb contains:
config.action_mailer.delivery_method = :test
My test goes like this:
feature User do
...
1
vote
2answers
124 views
Devise Authentication not working in Test Environment with RSpec Request Spec and Capybara
I've been stuck trying to get my requests spec to work. I've tried a number of different approaches I've found thru Google and SO. Below are the following helpers I've tried separately with my request ...
1
vote
1answer
41 views
Controller tests fail when ran together, pass when ran individually. How can this be?
I have some tests that require the user to be logged in. When I run the controller test by itself, it passes, and everything is green. If I run rspec spec/controllers some of my tests are failing with ...
0
votes
1answer
25 views
Devise::TestHelpers docs unclear on Devise.mappings[:mapping] usage
In the docs for using the Devise TestHelpers it states to use lines such as...
@request.env["devise.mapping"] = Devise.mappings[:admin]
or
@request.env["devise.mapping"] = Devise.mappings[:user]
...
0
votes
0answers
58 views
CanCan in RSpec Controller spec
I spent most of the day trying to root out a problem with a controller spec, and the current workaround seems unacceptable to me. Any take on why this works? ... and what I should do instead.
Given a ...
0
votes
2answers
77 views
Devise spec - scoped views have no effect
I am using Devise, which I think is a great authentication tool for my rails 3.2 application. Testing it with rspec, however, isn't so easy.
Here is my problem. I have different user roles, one is ...
0
votes
0answers
112 views
getting BCrypt::Errors::InvalidHash in rspec for devise registration controller
I am trying to write rspec for my custom Devise::RegistrationController#update method.
class RegistrationsController < Devise::RegistrationsController
def update
@user = current_user
...
3
votes
1answer
93 views
Testing devise views with rspec
I have generated Devise's views running rails g devise:views and would now like to test them.
This is what I have come up with:
require 'spec_helper'
describe "devise/sessions/new" do
before do
...
0
votes
2answers
75 views
It is possible create records in controller specs?
I've wrote the follow example:
it "should assign @services containing all the current user services" do
customer = FactoryGirl.create(:user, fullname: "Iris Steensma")
sign_in customer
service ...
0
votes
2answers
143 views
Cucumber vs Rspec what to use to check user permissions
I'm using devise and cancan to ensure protection to some areas of my website.
What tool is best to check that a user with a role can access and another role cannot?
Actually I'm creating several ...
0
votes
3answers
79 views
Mass-Assignment Roles issue in controller spec
I'm developing an application using Devise.
Since I need a UI to manage users I also generated a controller and associated views to perform all CRUD operations on the User model.
Then I create a ...
1
vote
0answers
74 views
Including Devise modules into a User model defined outside of Rails
I'm using Rails 2.3 and Devise 1.0.11. Please forgive any glaring mistakes as I'm new to Rails.
The User model is defined in a folder outside of Rails (named "Common") and it is shared between ...
0
votes
0answers
45 views
Upgrade to rspec 2.12.2 from 2.8.0 with devise 2.1 — why needed to change controller tests?
After upgrading from rspec 2.8.0 to 2.12.2, I had a bunch of controller tests give me the error:
undefined method `authenticate!' for nil:NilClass>
The failing tests only concerned tests of not ...
1
vote
1answer
36 views
Do I need to test functionality of Ruby Gems (Devise) I am using?
I am still new to rails, but I went through Michael Hartl's book (super hepful, btw).
However, I started using Devise (also super helpful) and I had a question about testing with rspec. In Hartl's ...
0
votes
1answer
41 views
Access Devise Configured Messages for Rspec and Capybara Tests
I'm trying to test that a non-logged in user is directed to the devise sign up page when they attempt to access secured content. I'm using RSpec with Capybara for the tests.
To make sure they reach ...
0
votes
1answer
111 views
Devise Rspec tests not passing. Can't figure out why
I've got an app in which I'm extending Devise's RegistrationsController to add some of my own functionality, and for some reason, I can't get of my account creation tests to pass. Everything works ...
0
votes
0answers
83 views
RSPEC devise, sign_out helper not hitting my SessionsController::destroy action
I'm writing some RSPEC tests for an e-commerce application and, I would like to clear a user's session of a cart_id upon sign out. I'm trying to test the sign out method with devise test helpers, and ...
2
votes
2answers
75 views
send delete request to controller in cucumber step definition
Does any of you know how to do (implement) something like this:
sample.feature
...
scenario: unauthorized user cannot delete event
Given list of events
When event is deleted
Then nothing ...
1
vote
1answer
228 views
FactoryGirl,Rspec2 and devise rails 3
I am using Rspec, FactoryGirl and Spork for my tests.There are 2 things I am a litte unclear on, first is the location of my factories.rb file. At present I have it located in
...
1
vote
1answer
1k views
Capybara, Devise, CanCan and RSpec integration tests: valid sign in 302 redirects to example.com
Update: see end of post for how the specs now work now that I have my specs in spec/requests instead of spec/controllers. Still wondering how to get a valid signed in user for integration tests with ...
1
vote
1answer
331 views
Capybara, RSpec and Devise: any way to make integration tests faster by circumventing slow login and setting session directly?
For nearly every integration test, a user has to be signed into Devise. This takes a lot of time, so I wondered whether there's a way to set up the user session without having to visit the login page, ...
0
votes
2answers
133 views
Anyone know of a full suite of Devise Rspec / Capybara tests
I've been learning Rails 3 with Devise and, so far, seem to have it working quite well. I've got custom session & registration controllers, recaptcha is working and a signed-in user can upload an ...
1
vote
2answers
704 views
Rspec controller error expecting <“index”> but rendering with <“”>
New to testing, I'm struggling to get some controller tests to pass.
The following controller test throws the error:
expecting <"index"> but rendering with <"">
I have the following ...
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 => ...
5
votes
2answers
405 views
Testing Views that use Devise with RSpec
I am trying to get a previously passing rspec "view spec" to pass after adding Devise's user_signed_in? method to the view template in question. The template looks something like this:
<% if ...
0
votes
1answer
116 views
Using devise-async gem with RSpec
I am using the devise-async gem to send my devise emails asynchronously - using Resque.
I am doing some simple RSpec controller tests to make sure the, say, forgotten password is being sent, by ...
0
votes
1answer
70 views
Devise, Rspec and testing get 'new' in RegistrationsController
I'm getting the following error :
1) RegistrationsController has an registration page load up successfully
Failure/Error: response.code.should == 200
expected: 200
got: "404" ...
1
vote
1answer
129 views
Basic Devise spec with I18N
I'm new to RSpec, and trying to write a simple test that shows Devise is working. I've picked a random page and want to write a test that shows that a non logged-in user is re-redirected to ...
3
votes
1answer
923 views
Setting roles through rolify in FactoryGirl definition
I am using devise, rolify and cancan. I'm also using rspec with FactoryGirl for testing. Right now I'm working on some tests and I want to define users with different roles for those tests. Here is my ...
1
vote
1answer
923 views
Rails 3 + Devise + Rspec - undefined method error in Controller test
I have such spec (spec/controllers/stats_controller_spec.rb) to test my controller:
require 'spec_helper'
describe StatsController do
render_views
before(:each){ @user = FactoryGirl.create( ...
0
votes
0answers
96 views
Devise authenticate_user gives 401 only (w xhr, in Rspec)
The simplest version of my code is
class ThingsController < ApplicationController
before_filter authenticate_user!
def index
Thing.create # this is just to give an easy thing to test ...
1
vote
2answers
266 views
testing controller with spec and factory girl, can't sign_in
I'm newbie on rails and testing rails applications. I try to test an existing rails application with rspec. I've just finished model tests and i have to complete controller tests too.But i have a ...
0
votes
2answers
375 views
Devise & Rspec Test Integration
I'm trying to run tests with Devise and Rspec and have been unsuccessful thus far - any help would be greatly appreciated.
rake spec:requests --trace
gives me this error
...
0
votes
0answers
67 views
I can't figure out how to get Devise sessions#destroy test passed with Rspec
I'm testing my rails app with rspec. and I'm using Devise.
My users/sessions controller is like this
class Users::SessionsController < Devise::SessionsController
def destroy
super
...
1
vote
1answer
389 views
Rails Devise Token Autentication Rspec JSON API testing session issues
I am building a JSON api using Ruby on Rails for a mobile application.
I have a random game function that works like such:
Player 1 requests random game.
Player 2 requests random game.
Game is now ...


