0
votes
1answer
36 views

Mocks and Stubs. I don't get the basics

I am in the process of freeing myself from FactoryGirl (at least in the lib folder). So, I start writing strange stuff like "mock" and "stub". Can somebody help a novice out? I have this module ...
0
votes
2answers
13 views

Rails test model instance method

So new to testing and hope you can advise. I have a simple model: class Checkout < ActiveRecord::Base validates......... def number_of_days (checkout - checkin).to_i end end I ...
0
votes
1answer
22 views

Generic way to mock something in Ruby

How could I mock any method without using any gem? Suppose I have access to an complex object like request How could I make request.location.country to return a mocked value. I read I can mock ...
0
votes
1answer
28 views

Ruby on Rails Method Mocks in the Controller

I'm trying to mock a method call to an outside API inside one of my rails controllers (in this case, Instagram.get_access_token) and I'm having some trouble. As written, the code is still calling the ...
0
votes
1answer
28 views

rspec mock not getting called on belongs_to association

I'm trying to test my controller in rails with RSpec, but it's not calling one of the mocks I made and I'm not sure why. my model has a user class, and a game class, and a player class, which belongs ...
0
votes
1answer
23 views

How can I mock a Non-DB-Model and let it return a given list on call

I have a CommentList class with a static method fetch. The problem is, that it is not an ActiveRecord Model, but it makes http calls to fetch data. class CommentList def self.fetch # http-foo ...
1
vote
1answer
27 views

Devise does now allow me to sign_in using TestCase

I am using Devise to sign in Users. I want to write some tests to ensure everything is running smoothly. My sign in is using Poloymorphism Association. A User can be a Employer or a Applicant, which ...
0
votes
1answer
96 views

How to mock any_instance in a scope with RSpec?

I'm trying to write a spec which expects a method to be called on all instances in a scope. Couldn't find a elegant way to do it. This is a simplified representation of my code: class MyClass < ...
3
votes
3answers
184 views

How to write short, clean rspec tests for method with many model calls?

I'm having trouble coming up with some tests for a method I want to write. The method is going to take a hash of some data and create a bunch of associated models with it. The problem is, I'm ...
3
votes
1answer
69 views

How to use mocks correctly?

I have this class: class EnablePost def initialize(post_klass, id) raise "oops" if post_klass.blank? @post_klass = post_klass @id = id end def perform post = ...
1
vote
2answers
206 views

RSpec: check if any model has been saved

In my Rails application I've created a method that creates a model hierarchy basing on JSON data. I'd like to assure that the method does not save anything to the database. I know I can write test ...
1
vote
2answers
92 views

how do use define_method on an instance of an object on objects of unknown type?

So, I'm kind of wanting to do something similar to rspec / mocha's mock, but only for two objects, and not all of them. This is what I have so far: def mock(obj, method_to_mock, value) obj.class ...
1
vote
2answers
47 views

Stubbing method for one argument, call original for other

to an API call during the test,I want to stub the OpenURI-open-method to return a file which content I packed up in a constant. However, in the same parsing method, all other calls to OpenURI open ...
0
votes
1answer
65 views

Getting 2 returns instead of 1 in tests

I'm writing test using double/stub, and i want to return me a fake value, but instead i'm getting and fake value and real value. Here is my controller and spec files, model has nothing in it. Any ...
1
vote
1answer
140 views

How to stub after_create callback save! in model?

I receive following error: Output: 1) LabelsController#create label is new creates a new label Failure/Error: post :create, attributes[:label], format: :json NoMethodError: undefined ...
0
votes
0answers
66 views

how to write expectation using rails mocha gem for chain of methods with parameters

I write tests using rspec, and mocha is the mocking framework I use. I have a method like this. Article.where(["product_id in (?)",[1,2,3]]).update_all("status = 'D'") How do I write an expectation ...
0
votes
1answer
188 views

RR Mock method called, but spec still fails

Stack: Rails 3.0.7, Mongoid 2.2.5, RSpec 2.11.0, RR 1.0.4 I have a Subscription model that looks like this: class Subscription include Mongoid::Document embeds_many :addons after_save ...
0
votes
2answers
250 views

How do I stub out a current user's attributes in a view spec

I have a view spec where I'm testing conditional output. How do I get the spec to return the user I've mocked out? View file: .content - if @current_user.is_welcome == true Welcome to the site ...
0
votes
1answer
199 views

wrong number of arguments (1 for 0)

I am setting up a test that should expect calls on two "subscriber" instances: it "sends out sms to all the subscribers" do @user.subscribers.create! @user.subscribers.create! ...
0
votes
1answer
215 views

rspec mock model issue

sorry for my english, I am using rspec and I have a problem with the next spec. describe 'POST /role' do before(:each) do Role.stub!(:new).and_return(@role = mock_model(Role)) end ...
3
votes
3answers
129 views

Temporarily setting system time with Ruby for unit testing

I've created a custom validation on a Apt model that verifies that an appointment can't be booked for the next day if the form submission is done after 3 PM and I'm trying to determine the best way to ...
0
votes
1answer
393 views

RSpec: stubbing SFTP - private method called

I'm attempting to stub out SFTP in a model. Here's the model: class BatchTask require 'net/sftp' def get_file_stream(host, username, password, path_to_dir, filename) raise ArgumentError if ...
1
vote
2answers
162 views

Is it good to use database queries in Rspec?

I have started writing tests using Rspec for a really old project. The models which i am testing are all ActiveRecords(backend is Oracle). I have read some blogs that say we should use mocking and ...
0
votes
1answer
196 views

How to mock Logger in Rails test using Test::Unit?

In test_helper: class Logger @@log = [] def self.info(message) @@log.push(message) end def self.log @@log end end But when running the tests it seems to use the regular ...
0
votes
1answer
302 views

RSpec Mocking Mailer — fails when called second time

I'm testing some methods that involve email, and am trying to use a mock mailer object. I'm obviously going about it the wrong way, because the test works the first time but the very same test fails ...
1
vote
1answer
199 views

Best approach to test scope chains in Rails

In all my ruby on rails app, I try to not use the database in controllers, since they should be independent from persistence classes. I used mocking instead. Here is the example for rspec and ...
1
vote
1answer
2k views

Having trouble stubbing a class method in RSpec / Rails (and using dynamic returns on stubs)

Good evening, I'm trying to test a fairly long method in my "Simulation" class, which calls class methods "is_male_alive?" and "is_female_alive?" on my "Age" class a few hundred times. The return ...
2
votes
1answer
730 views

How do you stub all methods of a particular mock instance

I have a particular mock that is being handled by a third party. I just want to check that the same mock has been returned back. However, the third party calls array methods and save methods that my ...
1
vote
0answers
298 views

Testing controllers with local variables using Rspec

I'm new to Rspec and fairly new to RoR. With that said, I've exhausted all my options trying to get this to work. I have a variable in a method to create a User in the create action of my ...
0
votes
1answer
423 views

Ruby on Rails: Mock session variable in helper class

I am trying to mock the session hash in a controller's helper file: Helper_Spec: session.stub!(:[]).with("fb_token") RotaHelper.getListOfFriends.should == expected_friends Helper: ...
1
vote
0answers
241 views

Rails: How to mock gems, such as fb_graph

I am using the gem fb_graph. I am new to rails, and am trying to figure out how to mock this gem using rspec. ( https://github.com/nov/fb_graph ) The code I am attempting to test is: facebook_user ...
0
votes
1answer
286 views

Mock web responses in Rails

We are creating a web application which will communicate with an API of another service to pull data etc.. The problem is that the API is not built, however we do the the JSON format what will be ...
16
votes
3answers
4k views

How to say “any_instance” “should_receive” any number of times in RSpec

I've got an import controller in rails that imports several csv files with multiple records into my database. I would like to test in RSpec if the records are actually saved by using RSpec: ...
4
votes
1answer
244 views

Mock a Active Record abstract class and how to stub a nil object in rails test::unit/mocha?

i have two question 1.How do i stub a nil object in rails test cases. 2.Mock an Active Record Abstract class I have a application X with a test database X_test, Now i need to stub an database ...
0
votes
1answer
34 views

what RSpec approach could I use for this requirement

Background: So I have roughly (Ruby on Rails app) class A def calculate_input_datetimes # do stuff to calculate datetimes - then for each one identified ...
0
votes
1answer
201 views

How to stub a method on an already stubbed controller method with RSpec?

When a user im trying to unfollow doesn't exist I throw an exception that sets a flash error message and redirects the user back to the page they were on. All the access to the twitter gem is handled ...
0
votes
2answers
399 views

How can I optionally mock geocoder?

I'd like to be able to mock the results of the geocoder gem in some of my tests. I use RSpec and Cucumber. In cucumber I'd like to default to mocking the Geocoder results, but be able to turn it back ...
2
votes
1answer
1k views

Should I stub the model in Factory girl or in the spec file while testing?

Almost every spec file I come accross I end up writing stuff like: before :each do @cimg = Factory.build :cimg_valid @cimg.stub(:validate_img).and_return true ...
2
votes
1answer
197 views

Verify partial arguments with RSpec

I need to set expectation on one single argument. How can I access the received arguments from RSpec? Here is what I want to achieve. let(:api) { double('API') } it "should pass :filter in options" ...
1
vote
2answers
890 views

How to rspec mock ruby rails logger class

Hi I and trying to rspec mock the following class: class Person def initialize(personid) Rails.logger.debug "Creating person with id #{personid}" end end Using this: ...
1
vote
2answers
229 views

Can Cucumber prompt for input?

Is it possible to prompt the user for input while running a Cucumber feature? For example, I'm adding a feature for user authentication in a Rails app, but since authentication will be happening ...
0
votes
1answer
521 views

How to rspec Rails Configuration class and the array it creates from a yml file

I was wondering if anyone had any suggestions how to rspec (mock) the Rails Configuration instance returned in my class below by the MyModile::Application.config method call? I understand how to ...
1
vote
4answers
808 views

Mocking/stubbing a method that's included from “instance.extend(DecoratorModule)”

I use a decorator module that get's included in a model instance (through the "extends" method). So for example : module Decorator def foo end end class Model < ActiveRecord::Base end class ...
1
vote
1answer
1k views

How to unstub Mocha mock?

I have the following mocha mock that works great. In a test.rb file: setup do Date.stubs(:today).returns(Date.new(2011, 7, 19)) Time.stubs(:now).returns(Time.new(2011,1,1,9,0)) end The ...
1
vote
1answer
691 views

How to test rspec ActiveRecord queries with multiple assocations

I have several methods that query the database if the right paramater is passed in, and am trying to find the best way to test them. At this point I'm using stub_chain's but feel this is tied very ...
3
votes
2answers
214 views

How to mock Rails::configuration

I'm attempting to test a class which makes use of the rails configuration file. I'd like to mock Rails::configuration. I've tried things like ...
2
votes
1answer
1k views

omniauth mock facebook response

I'm want to test my login through facebook. Im using pure omniauth, w/o Devise. I check the wiki page and do following: helper for request specs module IntegrationSpecHelper def ...
1
vote
2answers
256 views

How do I stub away send_file using mocha

The most direct attempt is to do @controller.stubs(:send_file) But that results in an output error like ActionView::MissingTemplate: Missing template ... So how do I stub away the send_file ...
1
vote
4answers
122 views

Controller tests bleeding to models?

I am writing some tests with RSpec (tests and not specs, the code was untested until now) and have stumbled upon an uncertainty... I want to know whether a controller is calling the model's methods ...
0
votes
1answer
136 views

Rails test involving an object that requires an api update

I am trying to get a Bill object to perform tests on. This is a US congress bill, which I have in xml via rsync on a data directory. My code takes in the name of the bill, say "h1.xml", parses the xml ...

1 2