Tagged Questions

5
votes
2answers
404 views

Mocking with rspec and mocha together

For a test suite that's already using mocha for mocking, can new tests be written with rspec mocking? maybe turn that on before(:all) and turn it back to mocha after(:all) I tried changing the ...
5
votes
2answers
847 views

How do you test an AJAX request with RSpec/RoR?

I'm fairly new to RoR and recently started learning BDD/Rspec for testing my application. I've been looking for a way to spec an AJAX request, but so far I haven't found much documentation on this at ...
4
votes
2answers
97 views

Ruby on Rails: Best way to test a failed call to a third party API

I call a third party web service right now as part of my application. I am using the RestClient gem in order to do this. There are a ton of tools available to do the same thing, so that should not ...
4
votes
3answers
719 views

Is there a way to undo Mocha stubbing of any_instance?

Within my controller specs I am stubbing out valid? for some routing tests, (based on Ryan Bates nifty_scaffold) as follows :- it "create action should render new template when model is invalid" do ...
3
votes
1answer
138 views

stubbing helpers using mocha

it "should have edit button if user has permission to edit" do EntitiesHelper.stubs(:permission_to_edit_entity?).returns(true) get :index @entities[0..3].each do |entity| response.should ...
3
votes
2answers
122 views

Does a mocked method's code actually run

Hi I'm using Mocha for a Rails project. I'm new to TDD so please forgive me if this is a stupid question. If I have this @client.expects(:create_config).once.returns(true) then am I right in ...
2
votes
1answer
65 views

Is it possible to stub a method in a parent class so that all subclass instances are stubbed in rspec?

Given a parent class Fruit and its subclasses Apple and Banana, is it possible to stub the method foo defined in Fruit, so that any calls to method foo on any instances of Apple and Banana are ...
2
votes
2answers
75 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
2answers
268 views

Is there a “not_expects” for mocha/rspec?

I need to make sure a method is not called giving a specific set of conditions, and I'm looking for the opposite of the mocha expects.
2
votes
1answer
349 views

How to properly stub a Rails association methods via mocha and test/unit?

I'm working on an app where most, if not all, of the data is scoped to a current_organization. So in my find calls in my controllers, I have things like this for example: def show @user = ...
2
votes
1answer
672 views

Mocking/Stubbing an Application Controller method with Mocha (Using Shoulda, Rails 3)

While writing functional tests for a controller, I came across a scenario where I have a before_filter requesting some information from the database that one of my tests requires. I'm using ...
2
votes
1answer
414 views

Mocha expectation on association build call failing

I have this example: # GET New context "on get to new" do it "should assign cardset" do @profile.cardsets.expects(:build).once.returns(Factory.stub(:cardset)) get :new ...
2
votes
1answer
570 views

Stub with Rspec/Mocha in Cucumber scenarios

I am using Cucumber as the BDD framework with rspec/mocha mocking. Ideally we would not mock/stub behavior in cucumber specs; however the scenario is exceptional here. To give you the brief idea of ...
2
votes
1answer
274 views

Force controller to use current_user with mocking

I am trying to specify in my RSpec tests that my controller should use current_user.projects.find() instead of Project.find() I am using the Mocha mocking framework and was trying something like this: ...
2
votes
1answer
514 views

Does mocha run the code in a stub (Rails)?

Im new to tdd and stubbing. When I stub a method im assumng that any code within that method does not get executed? Im trying to fake the method raising an exception but the results of my test ...
2
votes
1answer
2k views

Rails Test & Mocha: How to stub specific model - conditional any_instance?

I want to stub just a specific model, but not only a specific object and not every instance E.g. Given class 'Person' with attributes 'name' (string) and 'cool' (boolean). We have two models: ...
1
vote
1answer
33 views

Mocha: Silence satisfied expectations

Very often when I have a missed expectation in a unit test using mocha, it spits out dozens or hundreds of "satisfied expectations" that I really don't care about. There's so much of it that I have ...
1
vote
4answers
109 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
93 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
102 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
0answers
34 views

Mocha's regexp_matches missing some times

I'm having a hard time getting any consistant behavior from Mocha and the regexp_matches method. If autotest runs my entire test suite everything works fine. If I purposely cause the test containing ...
1
vote
0answers
123 views

Why doesn't Mocha complain about expectations?

I'm messing around with Mocha for days and cannot seem to get it working properly. I'm using Rails 3.1.0.rc4 and Mocha 0.9.12, running under Ruby 1.9.2-p180. In my Gemfile I have a gem 'mocha', ...
1
vote
1answer
332 views

Rails 2.3.x - How to stub a helper method (that gets called from a view) in a functional test (no RSpec)?

Please don't tell me "search more" or other stuff cause all solutions for similar question fail. Simple: I have a functional tests. I want to make a simple get and see if proper content gets rendered ...
1
vote
2answers
223 views

How to test counter_cache with test::unit and mocha

I'm curious if i can mock out somehow the testing of a counter cache. Now I'm creating all the records to test the counter_cache. Is there any good practices to test counter cache effectively? Edit: ...
1
vote
2answers
312 views

How do I add a mocha expectation that a helper method will be called?

I'm moving a method from a controller into a helper; the method will now be called from the view. Previously, in my controller I had def show @things = gather_things end and in my functional ...
1
vote
2answers
269 views

Testing if a function is called using Mocha

In my current Rails 3 app, I'm doing some unit testing to make sure that calls to update S3 are only done under certain situations. I don't want to update S3 during tests, so I'm using Mocha to stub ...
1
vote
1answer
395 views

RoR: Chained Stub using Mocha

Is it possible to stub an entire chain using Mocha? For example, I want to stub: User.first.posts.find(params[:id]) such that it returns a predefined post instance instead of accessing the ...
1
vote
1answer
383 views

How to mock to twitter api using Ruby on Rails?

I'm developing a application that uses the twitter API. I'm currently using rspec with mocha, but I found it to be cumbersome and I cannot reuse the mocking that I create for a give method. Is there a ...
1
vote
2answers
317 views

Rails Faking a Route

To be specific, I'm trying to get ActionController::Routing::Routes.recognize_path to recognize a route that is not in routes.rb, for testing purposes. Is it possible to somehow mock or dynamically ...
1
vote
1answer
383 views

Mocking an external API

I'm new to testing strategies and mocking, and I'm having a tough time figuring out how to mock a call to an external service. I'm sure it's something easy I'm missing, I just don't know what ...
1
vote
2answers
571 views

RSpec on Controller and Stubbing

I am pretty new to using rspec and am trying to write my tests for my controllers. I have this controller (I am using mocha for stubbing): class CardsController < ApplicationController ...
1
vote
1answer
304 views

Mocha no longer can be loaded after installing will_paginate 3.0pre

So I came about the strangest rails bug. I have been starting a new rails3 app, and just installed will_paginate 3.0pre. Unfortunately the rails 3.0.0.beta2 update made some of will_paginate 3.0pre ...
0
votes
0answers
16 views

rails 3.1 mocha loading order issue

we are migrating code from rails 2.3 to 3.1.3. we used mocha in our tests. mocha is failing after rails 3.1.1 due to the fact rails explicitly loads it. please read this post it can be fixed in 3.0 ...
0
votes
1answer
40 views

Set expectation of method call while still calling original implementation

It appears as though setting any method-call expectation with Mocha prevent the original implementation from being called. This seems to cover calling the origina method with rspec. Is there a way ...
0
votes
1answer
53 views

Moching rails association methods

Here is my helper method which I want to test. def posts_correlation(name) if name.present? author = User.find_by_name(name) author.posts.count * 100 / Post.count if author ...
0
votes
2answers
154 views

Using rspec the ensure logger is called

I am trying to test a controller in my rails app under a specific condition that should raise an error and log it. I got the raise test working great but I would like to make sure the logger gets ...
0
votes
1answer
96 views

How to set up Colors for Test Output when Using Mocha?

I was using gem turn to format ANSI color output for tests, which worked great. Then I discovered that it doesn't work with mocha. Is there a way to get them to work together? How do you create color ...
0
votes
1answer
52 views

setting expectation on user instance in integration test with mocha and capybara

So I am trying to ensure that a callback happens on save... My test is: user = create_user login user visit new_post_path fill_in "post_title", :with => "my post" ...
0
votes
1answer
439 views

mocha stubs with exception - rspec test not passing

Hey, I am trying to use Mocha and Rspec to test a scenario where a method always raises some exception. Here is the controller code I am trying to test: def add_parent begin parent = ...
0
votes
1answer
341 views

Mocha not mocking a class method in a functional test (Rails 3)

In a rails 3 app, I'm using mocha to do some mocking in my functional tests. However it doesn't seem to mock a class method in the functional controller. Controller code class TagsController < ...
0
votes
1answer
129 views

Factory.create fails in Put context but not Post context

I'm using factorygirl. I'm still new, in particular to the testing aspect of rails. When I descibe POST create I can create any number of Person objects without any issue. I don't actually need to ...
0
votes
2answers
364 views

Using mocha for controller in functional test with RSPEC

I'm doing some tests here using Rspec and I would like to assure that the controller is calling the log method in some actions. I'm also using mocha. I would like something like this: it "update ...
0
votes
2answers
126 views

RSpec Google Contacts Connection

I'm trying to test out a controller action on Rails 2.3.10 that connect to Google to retrieve contacts. I'm using Rspec and Mocha for testing. I want to stub out the actual call to Google since this ...
0
votes
1answer
196 views

Testing association methods with Mocha

I have a Rails app with an Order and a Refund model. Order has_many :refunds. All well and good. I'm trying to write a functional test for refund logic in a controller. Here's what I have right now: ...
0
votes
1answer
189 views

Using Mocha in Rails to test form_for path generation

Using the resource routes, you can do things like url_for(@apple) to get a url to that particular resources "show" method. However, in testing, using Mocha to mock up my objects, I'm having trouble ...
0
votes
1answer
329 views

Why does rspec redirect not get full route during test?

I'm attempting the following functional test on the controller. I'm using the following RSpec2 Rails 3 Shoudla Mocha Here's the test context "POST on create should be successful" do ...
0
votes
1answer
60 views

How are both of these tests passing?

I'm using Shoulda, Mocha, and Test::Unit for testing. I have the following controller and test: class FoosController < ApplicationController caches_action :show def show @foo = ...
0
votes
3answers
389 views

Mocking authlogic from shoulda with mocha

I am having trouble mocking authlogic from shoulda. I have the following test fixture: class HomeControllerTest < ActionController::TestCase context "on GET to index" do setup do ...
0
votes
1answer
180 views

Testing two different expectations with mocking

I've recently just added Devise to my first Rails3 app, and I'm having a bit of trouble with the controller tests. I'm testing the User controller class, which is the same model that Devise uses. So ...
0
votes
1answer
150 views

Expectation for find not working, but expectation for find_by_id is

I have this controller code: # GET /cardsets/1 def show @cardset = current_user.cardsets.find_by_id(params[:id]) end And this RSpec test code (mocking with Mocha): # GET Show context "on get to ...

1 2