Stubbing is modifying an instance method or property of an object at runtime to extend its functionality.
1
vote
1answer
23 views
PHPUnit: Pass mock object as method parameter
Say I have the following class:
class Document
{
private file;
public function setFile(UploadedFile $file)
{
$this->file = $file;
}
public function getExt()
{
return ...
0
votes
0answers
24 views
Restubbing same mock object on Mockito - Throws stack overflow error
I have an object stubbed for chained method calls
ReceiptAcknowledgementExceptionDocumentImpl receiptAckExpDoc = PowerMockito
...
0
votes
1answer
44 views
Testing class method using OCMock release 2.1.1
I am trying to check if a class method is getting invoked using OCMock. I have gathered from OCMock website and other answers on SO that the new OCMock release (2.1) adds support for stubbing class ...
0
votes
1answer
23 views
How do I set a variable in my rspec test so that it can be used by the controller for a query?
I have a variable in my sessions controller.
session[:facebook_profile_id] = @user_info['id']
@user_info['id'] is an int. Example: 123
I then use that session variable in my main controller to get ...
0
votes
1answer
25 views
How to record http interactions in ruby vcr?
I am working in Rails project which uses below gems.
gem "webmock", "1.6.1"
gem "vcr", "1.4.0"
Already few http interactions are recorded in test_data.yml. I have implemented new business logic and ...
2
votes
1answer
37 views
How do I properly test this method with OCMock?
I'm new to OCMock and i'm trying to test if a method is called, except I want the method to be a stub since it contains other loading methods I do not care to test in the current test.
- (void)setUp
...
0
votes
1answer
16 views
Stubbing calls to exteranl API in gmaps4rails in cucumber scenarios
I have cucumber(with capybara) scenarios, which use gmaps4rails gem, thus some steps call gmaps external API during test's execution. I wanna stub out these calls. What is the best way to achieve ...
2
votes
1answer
26 views
Is it possible to use a standard assertion rather than a mock expectation here?
I'm working on a custom job class for Delayed::Job so that I can observe the jobs as they are being run and moving through their various lifecycle events. In this particular case, I'm interested in ...
0
votes
1answer
80 views
Mocking computed fields with Jasmine and Knockout
I'm trying to write a test for a ko.computed field that is dependent on two other complex computeds (removed here for demonstration).
function PositionsViewModel(options) {
var self = this;
...
0
votes
1answer
34 views
How to stub after_create callback collectively in a model?
I'm using Rails 3.2.11, Mac OS X Mountain Lion, Rspec
Here's my problem:
I have a model that when created, it sends the information to an api. It works all right but when I'm testing it in rspec, ...
0
votes
2answers
68 views
Rspec testing ordered retrieval from a scoped method of model using mocking and expectations
I'm a newb to rspec, mocking and stubbing. I'm slowly starting to appreciate and wrap my head around the concepts of isolated testing and mocking/stubbing in general. I have a basic question, which i ...
0
votes
1answer
27 views
How do I use Gently to stub a method of an object that is not immediately exposed by a module?
I'm using the AWS SDK for NodeJS.
I've got a module (moduleFoo) set up like this:
if (global.GENTLY) { require = GENTLY.hijack(require); }
var aws = require("aws-sdk"),
ec2;
...
1
vote
1answer
86 views
How to stub “global” module variables in node.js with Coffeescript without --bare?
I have some environment variables from Heroku and for readability, I tend to assign them to global variables for readability:
ACCESS_TOKEN = process.env.ACCESS_TOKEN
Now I'd like change value for ...
2
votes
1answer
58 views
How to test a function which takes a block with rspec
I have a function, which accepts a block, opens a file, yields and returns:
def start &block
.....do some stuff
File.open("filename", "w") do |f|
f.write("something")
...
3
votes
2answers
133 views
How to stub error raising using Rspec in Rails?
I'm new to Rails and Rspec and I'm using Rspec to test this controller method which includes exception handling:
def search_movies_director
@current_movie = Movie.find(params[:id])
begin
...
0
votes
1answer
80 views
Rspec testing instance method which require other methods return (stubbing?)
I want those already methods to be tested, but everything I try, doesn't seem to fit with best practices nor do it work.
May be somebody can support me with this?
CODE To be tested
def ...
0
votes
1answer
26 views
Stubbing out save methodin rails with rspec
I have the following action in my controller:
def create
@user = current_user
@vin = @user.vins.new(params[:vin])
if @vin.save
# waiting for implementation
...
3
votes
1answer
353 views
RSpec - mock (or stub) overriden mixin method
I have situaltion like this:
module Something
def my_method
return :some_symbol
end
end
class MyClass
include Something
def my_method
if xxx?
:other_symbol
else
...
0
votes
1answer
39 views
Create new stub method that checks if the method exists in Rspec
I would like to create some especial stub methods stub_check and stub_chain_check that ensure the method exists.
For example:
#spec/controllers/payments_controller_spec.rb`
describe ...
0
votes
1answer
190 views
Stubbing with Faraday and Rspec
I have a model that looks like this:
class Gist
def self.create(options)
post_response = Faraday.post do |request|
request.url 'https://api.github.com/gists'
...
1
vote
1answer
62 views
Rhino Mocks stub Expressions
I would like to stub a method with the following signature:
Product[] GetAllActive(Expression<Func<Product, bool>> predicate, bool asNoTracking = true, params ...
0
votes
1answer
73 views
How do I stub a path generating method in Rails?
I'm writing a view spec, and it renders a view that contains the line (in haml):
=link_to new_post_path
but the spec fails with:
ActionController::RoutingError: No route matches ...
0
votes
1answer
203 views
Play 2.0: FakeApplication calling a stub controller instead real one
This is a continuation of a prior question in which answer I saw that I had a misconception about the use of plugins in FakeApplication.
First I have a Model created as a trait and a object that ...
0
votes
2answers
85 views
Unit Test Assert against end result or verifying whether the parameters were called using Moq
Below is a class (Class1) that I want to test, but I'm not fully satisfied with my Unit Test. Please see below code samples.
System Under Test
public interface IRepository {
string ...
1
vote
1answer
90 views
PowerMock - stubbing a parent methodcall does not return stubbed value
Two classes. Parent: B. Child: A. A.method1() overrides B's.
public class B {
protected boolean method1(){...};
}
public class A extends B {
protected boolean method1(){
boolean val ...
0
votes
1answer
72 views
Stub ssl_required so my RSpec will pass
I'm using bartt-ssl_requirement in a Rails 3.0.9 app.
The ssl_required and ssl_allowed statements at the top of my controllers are breaking my rspec with their redirects. How do I fix that?
From ...
0
votes
1answer
194 views
Populating instance variables in rspec tests
I have a class which has the following initialise method.
def initialize(my_var)
@my_var = my_var
end
and I want to test the method which then does something to @my_var
def split
...
1
vote
2answers
224 views
Overriding functions in other modules in node.js
I'm trying to stub a function with nodeunit in a Node.js app. Here's a simplified version of what I'm trying to do:
In lib/file.js:
var request = require('request');
var myFunc = function(input, ...
2
votes
1answer
158 views
How to implement or mock a Go interface with reflection?
I want to implement Go interfaces with reflection to generate mocks and stubs. But if I look at the reflect package, I get no idea how to do it (maybe it is not possible).
Example: Testing that a ...
0
votes
2answers
221 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
...
1
vote
2answers
229 views
Any_instance undefined in model
I am writing up a rspec test - and for some reason, i am told that the method any_instance is undefined. I am quite surprised, because I have a very similar expectations in one of my controllers rspec ...
0
votes
1answer
635 views
Webmock not registering my request stubs correctly
I am registering a request stub as follows:
url = "http://www.example.com/1"
stub_request(:get, url).
with(body: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project>\n ...
1
vote
1answer
191 views
How to set <body> tag as fixture in Jasmine
I'm currently trying to test a JS function with Jasmine. Since the function checks for CSS classes set in the body tag, I want to use the tag in a fixture:
setFixtures('<body class="themed ...
1
vote
1answer
897 views
Visual Studio 2012 Fakes not generating a stub for an interface that has a method with Stream return type
Using Visual Studio 2012 to generate stubs with "Add Fakes Assembly", everything works as expected, except it is failing to generate a stub for this interface:
public interface IFileWrapper
{
...
1
vote
2answers
504 views
sinon stub for window.location.search
I am trying to test a simple function that makes a call to window.location.search. I'm trying to understand how to stub this call so that I can return a url of my choosing.
function:
...
2
votes
1answer
156 views
How to spy on a property that is not exported
I have a module "sitescollection" like this:
var site = require('./site'); // <- this should be stubbed
var sitesCollection = function(spec) {
var that = {};
that.sites = {};
...
0
votes
2answers
256 views
How to stub/mock XMLBeans object for testing?
I'm working with an application using Apache XMLBeans (interfaces for XML structure elements extending org.apache.xmlbeans.XmlObject, implementations for those interfaces extending ...
0
votes
1answer
374 views
RSpec: Stubbing SFTP
I'm attempting to stub out Net::SFTP from an object. Here's the model:
class BatchTask
require 'net/sftp'
def get_file_stream(host, username, password, path_to_dir, filename)
raise ...
1
vote
1answer
466 views
Stubbing File.open with Rspec
I'm attempting to stub File.open in order to test a method I have that reads a CSV file.
Here's the model:
class BatchTask
def import(filename)
CSV.read(filename, :row_sep => "\r", :col_sep ...
0
votes
0answers
46 views
Test loading data from database in model: adapter stub or fixture?
I read that abusing stubs and mocks may lead to not test what class should do but how is implemented.
I'm wondering should I stub data adapter if framework heavily use it? I mean every model use or ...
1
vote
2answers
152 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 ...
3
votes
2answers
896 views
Cleaning up sinon stubs easily
Is there a way to easily reset all sinon spys mocks and stubs that will work cleanly with mocha's beforeEach blocks.
I see sandboxing is an option but I do not see how you can use a sandbox for this
...
0
votes
1answer
302 views
Stub a method from tested class to test another method
I discovered that stub and mock are very helpful in testing.
But I wondering about one thing. I think an example will show it clearly.
Class A {
public function isOk() {
// some work
...
0
votes
1answer
56 views
Javascript Unit testing dependencies - How to make a test fail when a depended object changes
I have a controller which is depended on a model property.
I wrote a test which test this controller and stubbed the model, How can I make my controller test fail whenever the model property name ...
1
vote
2answers
182 views
Stubbing when an object's constructor builds another object
So I've got some code that, grossly simplified, looks like this:
class B
def initialize opts
@opts = opts
end
end
class A
def initialize opts
# defaults etc applied to opts
@b = ...
0
votes
2answers
168 views
Does should_receive do something I don't expect?
Consider the following two trivial models:
class Iq
def score
#Some Irrelevant Code
end
end
class Person
def iq_score
Iq.new(self).score #error here
end
end
And the ...
3
votes
1answer
1k views
RSpec: how to test Rails logger message expectations?
I am trying to test that the Rails logger receives messages in some of my specs. I am using the Logging gem.
Let's say that I have a class like this:
class BaseWorker
def execute
logger.info ...
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 ...
1
vote
1answer
660 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 ...
0
votes
2answers
73 views
isolating controller tests from models
Is it possible (and reasonable) to write Controller tests and classes before writing the underlying Model classes? I thought I saw notes on how to do that, but now I can't find the recipe.
For ...

