Tagged Questions

2
votes
2answers
112 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
255 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
1answer
413 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
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
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
21 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
32 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
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
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
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 ...
0
votes
1answer
93 views

global leak errors in mocha

Was trying to unit test the apple push notification library https://github.com/argon/node-apn but I get a global leak error when I try to open up an APN connection. Is that a configuration error ...
0
votes
1answer
131 views

How can I get my node.js unit tests to recognize node_modules?

I have the following code: var foo = require('foo'); /* module.exports = function(n){ return 2 * n} */ describe('basic', function(){ describe('body', function(done){ foo(2).should.equal(4); ...
0
votes
2answers
103 views

Test method that was called from other method

I have module Database with method generate_from_database that spins for loops and calls method get_length. How can I test if get_length was called n times, by using rspec or mocha? module Database ...
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 ...
0
votes
2answers
287 views

Weird error when trying to test method with argument in Mocha. Is it a bug or is it me?

It's rather hard to find any documentation on Mocha, so I'm afraid I'm totally at sea here. I have found a problem with stubbing methods that pass arguments. So for instance if I set up a class like ...
0
votes
2answers
108 views

Testing methods called on yielded object

I have the following controller test case: def test_showplain Cleaner.expect(:parse).with(@somecontent) Cleaner.any_instance.stubs(:plainversion).returns(@returnvalue) post :showplain, ...
0
votes
2answers
945 views

Mocha + Cucumber to mock the Net response

The following is the app/models/websites.rb class Masterpiece < ActiveRecord::Base validates_presence_of :title, :link validates_uri_existence_of :link, :allow_redirect => false end ...
0
votes
2answers
3k views

Returning mock objects from factory girl

I am using Mocha and Factory_girl in a JRuby rails application. When I call the factory I would like to return the objects with some mocking already done. Here is a code snippet of what I am trying ...