Tagged Questions
The mocha tag has no wiki summary.
60
votes
7answers
11k views
Practicing BDD with python
Which are the most advanced frameworks and tools there are available for python for practicing Behavior Driven Development? Especially finding similar tools as rspec and mocha for ruby would be great.
...
13
votes
1answer
1k views
Getting Rails 3 Generators with Rspec 2 and Mocha
I've followed all of the steps that I've been able to find online for configuring Rails 3 with Rspec 2 and Mocha. In my Gemfile:
group :development do
gem 'rails3-generators'
gem "rspec", '>= ...
11
votes
4answers
533 views
Mocha Mock Carries To Another Test
I have been following the 15 TDD steps to create a Rails application guide - but have run into an issue I cannot seem to resolve. For the functional test of the WordsController, I have the following ...
6
votes
2answers
1k views
Is there a way to undo Mocha stubbing of any_instance in Test::Unit
Much like this question, I too am using Ryan Bates's nifty_scaffold. It has the desirable aspect of using Mocha's any_instance method to force an "invalid" state in model objects buried behind the ...
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
946 views
How to return a dynamic value from a Mocha mock in Ruby
The gist of my problem is as follows:-
I'm writing a Mocha mock in Ruby for the method represented as "post_to_embassy" below. It is not really our concern, for the purpose of describing the problem, ...
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
2answers
116 views
How do I programmatically shut down an instance of ExpressJS for testing?
I'm trying to figure out how to shut down an instance of Express. Basically, I want the inverse of the .listen(port) call - how do I get an Express server to STOP listening, release the port, and ...
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
1answer
257 views
Is there a good way to test `before_validation` callbacks with an `:on` argument in Rails?
I have a before_validation :do_something, :on => :create in one of my models.
I want to test that this happens, and doesn't happen on :save.
Is there a succinct way to test this (using Rails 3, ...
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
2answers
87 views
Is there a way to set the value of $? in a mock in Ruby?
I am testing some scripts that interface with system commands. Their logic depends on the return code of the system commands, i.e. the value of $?. So, as a simplified example, the script might say:
...
2
votes
1answer
265 views
Is there a Mocha equivalent of Rspec’s “mock().as_null_object”?
Is there a Mocha equivalent of Rspec’s “mock().as_null_object”?
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
1k views
MochaUI tutorial
where can I find a good and complete tutorial for MoachaUI?
I know good CSS, basic JS too and ofcourse php!
but this UI stole my heart but I couldn't find
a good tutorial to learn it :(
Thanks
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
513 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
2answers
658 views
Stubbing Sinatra helper in Cucumber
I am currently struggling with stubbing out a helper method of my Sinatra app from within Cucumber.
I have a Sinatra app with simple session authentication (by cookies) and I want to turn of ...
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
0answers
26 views
How can I test uncaught errors in mocha?
I would like to test that the following function performs as expected:
function throwNextTick(error) {
process.nextTick(function () {
throw error;
});
}
Here is my attempt:
...
1
vote
1answer
195 views
Node.js and coffeescript — testing app with Mocha and Zombie
I am trying to test a node.js webapp I have started working on with
Mocha and Zombie. But there are a few things I still don't understand
and would like some help. Please note that I am using express
...
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
70 views
Unable to create a mock object with mocha
I keep getting this error...
mockresponse.rb:4:in `createResponseObject': undefined method `mock' for main:Object (NoMethodError)
Here's my code (a code example I swiped):
require 'mocha'
def ...
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
1answer
194 views
how to stub everything on an object using mocha
How to stub out all the methods on an object using mocha ?
I tried
object.stubs(:everything)
stub_everything('class_name')
Both of the above ways are not working.
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
312 views
How to Mock Static Java methods with JRuby and Mocha?
My goal is to unit test legacy Java code, riddled with static utility methods, using JRuby and Mocha. Is this possible?
I am trying to apply similar techniques that are available in JMockit; a ...
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
2answers
467 views
How to mock an instance method of an already mocked object?
I need to mock the following:
Class User
def facebook
#returns an instance of a facebook gem
end
end
So in my User tests, to access the User's facebook info I need to call ...
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
230 views
Mock methods that receives a block as parameter
I have a scenario more or less like this
class A
def initialize(&block)
b = B.new(&block)
end
end
I am unit testing class A and I want to know if B#new is receiving the block passed ...
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 ...