Tagged Questions
The stubbing tag has no wiki summary.
9
votes
1answer
2k views
Stubbing authentication in request spec
When writing a request spec, how do you set sessions and/or stub controller methods?
I'm trying to stub out authentication in my integration tests - rspec/requests
Here's an example of a test
...
9
votes
2answers
2k views
RhinoMocks - Stub a Method That Returns a Parameter
I am using RhinoMocks, I need to stub a method, and always have it return the third parameter, regardless of what is passed in:
_service.Stub(x => x.Method(parm1, parm2, parm3)).Return(parm3);
...
8
votes
5answers
2k views
Rhino Mocks stubs and mocks are only good for interfaces?
Is it correct that Rhino Mocks stubs and mocks are only good for interfaces, not concrete classes? I spent quite a time trying to make this piece of code working. What I did not expected is that ...
5
votes
1answer
122 views
Rhino Mocks: stubbing value used in assertion?
First my question, and then some details:
Q: Do I need to stub the value of a property when making sure its value is used in a subsequent assignment?
Details:
I'm using Rhino Mocks 3.5's AAA syntax ...
5
votes
6answers
103 views
How would I go about unit testing this?
I need to develop a fairly simple algorithm, but am kindof confused as how to best write a test for it.
General description: User needs to be able to delete a Plan. Plan has Tasks associated with ...
4
votes
1answer
127 views
Writing Synthetic/Bridge method in java
I am writing an application which checks if the method is sythentic or bridge.
For testing this application I have added various methods in my stub.
But for none of the method this block is getting ...
4
votes
2answers
3k views
Mockito: How to easily stub a method without mocking all parameters
I have a method i'd like to stub but it has a lot of parameters.
How can i avoid mocking all parameters but still stub the method.
Ex:
//Method to stub
public void myMethod(Bar bar, Foo foo, FooBar ...
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
4answers
163 views
Getting into stubbing and mocking
I've been thinking about learning about stubs and mocks, and I know of several of the available libraries for .Net: RhinoMocks, Moq, TypeMock... and although I still don't have too clear the ...
3
votes
5answers
565 views
When to use stubs and mocks?
I've this confusion all the time. If I write a code which uses fake code to assert some operation, how do i trust my real implementation when it is started really using the real objects instead of ...
2
votes
1answer
673 views
Rspec 2 and Rails 3 stubbing / mocking
I am currently in the process of migration to rails 3 from rails 2 in a large application. In our functional specs, we have alot of stuff like this:
@model = Factory :model
@child = Factory :child
...
2
votes
1answer
208 views
RSpec Stubbing: Return the parameter
Though my question is pretty straightforward, I failed to find an answer around here:
How can I stub a method and return the parameter itself (for example on a method that does an array-operation)?
...
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
191 views
Difference in techniques for setting a stubbed method's return value with Rhino Mocks
What is the main difference between these following two ways to give a method some fake implementation?
I was using the second way fine in one test but in another test the behaviour can not be ...
2
votes
1answer
2k views
Given wsdl + xds type file, how do I create a stub WCF webservice?
I understand this is a basic topic but never done this before starting from wsdl.
I am being handed a wsdl file and a bunch of xsd with the types definitions. I don't have a clue if they were created ...
1
vote
1answer
24 views
Comment belongs_to a deleted user. How to associate a “placeholder”?
My comments are placed by users. The Comment belongs_to :user and the User has_many :comments.
But users can be removed. If done, I'd rather not delete their comments, but instead associate their ...
1
vote
1answer
64 views
Stubbed method returns nil inside a before_create callback
I'm in a dead end testing a before_create callback in my models.
My spec
# The spec
let(:stamp){ mock_model(CompanyStamp) }
let(:signature){ mock_model(CompanyHandwrittenSignature) }
let(:account) { ...
1
vote
1answer
75 views
Mockito - Stubbing a method of an object that was returned by a mock object method
Let's say I have an mock object, and I don't want to stub any of it's methods, but I want to stub a method of an object it returns. For example,
when(mockObject.method1()).thenReturn(returnValue)
...
1
vote
1answer
47 views
Node.js/JavaScript Stubbing of Built-in Types?
This exercise is fairly academic, but it's useful in understanding JavaScript's behavior.
Why does this work:
var fs = require('fs');
console.log(fs.readdirSync('/').length); //approximately '28' on ...
1
vote
1answer
96 views
How is 'provided' implemented in a fact in Midje?
I was reading Clojure in Action chapter 8 about TDD and experimented with the stubbing macro. It uses the dynamic binding mechanism to stub functions. Alas, in Clojure 1.3 it is not possible to use ...
1
vote
4answers
62 views
Stubbing out functions or classes
Can you explain the concept stubbing out functions or classes taken from this article?
class Loaf:
pass
This class doesn't define any methods or attributes, but syntactically, there needs to ...
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
2answers
198 views
How to stub an external API for testing
I have a project that makes some calls to Twitter's API from the node.js server that I would like to test. However, I don't want to test the Twitter API (OAuth and the actual API I'm calling), so I ...
1
vote
1answer
176 views
Objective C - OCMock and stubbing?
Is it possible to have an actual object of a class and only mock a method in that class instead of mocking the whole object?
I want the object to behave 100% the same as the real object except 1 ...
1
vote
1answer
161 views
Stubbing Custom TagLib method in Controller Unit Test
I have a method in a custom taglib like so:
def deleteAction = {attrs ->
def id = attrs['id']
def type = attrs['type']
def clazz = attrs['class']
def html = new MarkupBuilder(out)
...
1
vote
3answers
34 views
Question about stubbing method composed with other methods
def foo
a & b & c & d
end
And it is very important for application logic, so I have to write good test for it. Methods a,b,c,d are already tested. Should I prepare full data ...
1
vote
1answer
74 views
Stubbed method return value isn't being returned
I have stubbed a method and asked it to return a specific value. However when running the unit tests the real method gets called and returns a real value generated value.
i.e I stubbed the method ...
1
vote
1answer
696 views
Stub controller action in Rspec controller test, but it's still executed
I would like to test if a controller action is actually called without a redirect happening in some before_filter. Since the controller action itself may do a redirect, I want to stub the action to ...
1
vote
2answers
229 views
Stubbing Paperclip S3 requests in specs
I am using Paperclip and S3 for image uploads and am trying to stub out calls to S3 from my test suite. I found the thoughtbot post which mentions doing
a.cover { ...
1
vote
1answer
445 views
stub_chain together with should_receive
I am trying to test if in a method calling chain one of the methods get a specific parameter. In the below code for example MyModel must receive the parameter 0 for the method offset. Unfortunately ...
1
vote
2answers
307 views
Mockito re-stub method already stubbed with thenthrow
I ran into a problem with mockito.
I am developing a web application. In my tests the user management is mocked.
There are some cases when I have to alter the User returned by the getLoggedInUser() ...
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
2answers
228 views
How can I stub the Properties.Settings object when the unit test is in a different assembly?
I have an object the references a bunch of Properties.Settings.Default... values and I need to stub these in the unit test for this object.
Unfortunately the type for the settings object is declared ...
1
vote
2answers
430 views
RhinoMocks exceptions when stubbing out Equals method
I've a problem setting up a test for an Equals method on an object.
The object in question is defined by this interface:
public interface IHours {
ITimeOfDay OpenAt { get; set; }
ITimeOfDay ...
1
vote
1answer
114 views
unit testing datastores in PHP
I'm using PHPUnit but find it difficult to make it create good mocks and stubs for objects used as datastore.
Example:
class urlDisplayer {
private $storage;
public function ...
1
vote
3answers
614 views
Unit Testing Adding to Zip / Extracting from Zip
I have the following code for adding to/extracting from Zip. I'm trying to refactor this to make it test-ready. Can someone provide pointers on how I can accomplish this?
Aside: I'm using Moq as my ...
1
vote
3answers
842 views
How can I stub or mock the request.subdomains method in Rails?
I am trying to write some functional tests in my rails app, and in the application_controller.rb I have this:
before_filter :current_account
def current_account
@current_account ||= ...
1
vote
4answers
365 views
Automatic stubbing in java word. What to use?
I have huge class that I need to build stub for.
To give you picture it is Messages class of the GWT. Often this is class with dozens of methods that return String.
With JMock I can do stubbing, ...
0
votes
1answer
16 views
Can mocks and stubs persist between Cucumber steps?
I have an app that relies on a 3rd party API called PSC, but I want to isolate my cucumber tests from API calls to PSC.
So, I wrote a couple of cucumber steps:
When /^we pretend that PSC is up$/ do
...
0
votes
0answers
23 views
RSpec Stub doesn't cover multiple nested Describe blocks
I have a test suite structured as follows:
describe ... do
[list of dates].each do
describe
before(:all) do
base_date = ...
end
describe ... do
[list of ...
0
votes
0answers
178 views
Stub out Paperclip geometry in rspec
I've got a Rails 3 project in which I use paperclip and I would like to test if I'm uploading the wrong sized image.
I kept getting the error:
Paperclip::NotIdentifiedByImageMagickError:
is not ...
0
votes
1answer
95 views
stubbing templates in RSpec functional tests
So I'm working on a gem that provides helpers for use with the Jeditable jQuery plugin, called jeditable-rails. These helpers are essentially writing javascript that create forms.
I am looking to ...
0
votes
1answer
39 views
junit: mocks and stubs--reference links?
So I'm primarily a RoR developer at this stage in my career (still some lingering attachments to Python and Django) and I've been put on a java/ejb/tomcat project recently. I'm trying to wrap my head ...
0
votes
3answers
324 views
Stub out address geocoding during RSpec unit test
I'm using the geocoder gem to add geocoding functionality to one of my Active Record model classes. This works great, but I don't actually want the geocoding to fire during unit tests.
I've tried ...
0
votes
1answer
97 views
How to use the real parameters when creating a stub method in RhinoMocks?
I want to create a stub of the following interface:
interface IUnitOfWork
{
void DoInTransaction(Action method);
}
In the stub object, all I want DoInTransaction to do is run method().
...
0
votes
1answer
52 views
getting the object passed as an argument to a stubbed method with Mocha
Foo.expects(:bar)
Foo.bar(:abc => 123, :xyz => 987)
# assert Foo.bar was called with a hash that has a key of :abc == 123
Basically I want to examine the object passed as an argument to a ...
0
votes
1answer
100 views
What is the best way to implement a “stub” on Android?
I'm creating an Android application that will register an Observer and listen for events, I will probably use one of the suggestions by Mark in this previous question.
However, my question is, how ...
0
votes
2answers
240 views
Stubbing defaults in Mockito
How can I stub a method such that when given a value I'm not expecting, it returns a default value?
For example:
Map<String, String> map = mock(Map.class);
...
0
votes
1answer
78 views
VS2005 Options Generate Method Stub not working
Ok I installed the linq preview(May 2006) and it seems to have screwed me up. Now the one the of the most important features in VS2005 is not working anymore (Options Generate Method Stub ...
0
votes
2answers
354 views
Where/what to test? Mocks, stubs, functional, unit… (in Ruby/Rails)?
I'm trying to test a fairly large Rails app, which I probably should have been doing all along but never felt entirely comfortable with. Now I'm working on a functional test to see if a user is ...