Mocking and faking are ways to isolate code or components to ensure that unit tests run against the testable unit of code only without actually utilizing other components or dependencies of an application. Mocking differs from faking in that a mock can be inspected to assert the results of a test.
0
votes
1answer
66 views
Mockito with local variables
I have a simple method that returns a String.
It also creates a local List. I want to test the value added to the local List.
Here is an example
package com.impl;
import java.util.ArrayList;
...
0
votes
1answer
40 views
How can I patch a function stored in a variable?
How can I make the following test to work?
mymodule.py
import requests
http_methods = {
"GET": requests.get,
"POST": requests.post,
"PUT": requests.put,
"DELETE": requests.delete
}
...
0
votes
1answer
68 views
Telerik JustMock throws exception when trying to mock SPServiceContext
I'm trying to write some unit tests for a Sharepoint 2010 Webpart that uses UserProfile manager.
In order to mock UserProfileManager, I also need to mock SPServiceContext.
When I try to assign my ...
0
votes
2answers
42 views
grails domain class not mocked
I'm trying to mock the Role class generated by shiro plugin in a Grails 2.2.1 app. When i'm runnint the unit test I'm getting this error that looks like the dynamics method are not added.
This is the ...
0
votes
1answer
56 views
Mockito mocking get methods from the database services
I am trying to mock a getBy() method after adding an element by a mocked service add.
This is what I have:
FeedItem feedItem = feedServiceTested.createFeedItem("Text Test", "Category Test", "Author ...
0
votes
0answers
30 views
How to replace file-access references for a module under test
pyfakefs sounds very useful: it "was developed initially as a modest fake implementation of core Python modules to support moderately complex file system interactions, and was introduced Google-wide . ...
0
votes
0answers
37 views
PHPUnit Mock Database Connection Class
I'm adding unit tests to legacy codes in a MVC framework. I have a model class called DbConnection that initiate all the database connection, it looks like this:
class DbConnection
function ...
1
vote
1answer
44 views
use State base verification or Behavior base verification?
In my oponion,I tend to like the state ,The reason are:
1.state base verification is more simple and easiler to understand.
2.State base verification use the "AAA" model.
3.Behavior base verification ...
0
votes
3answers
74 views
Moq : async methods return null
If I try to mock a type containing an async method such as :
interface Foo
{
Task<int> Bar();
}
Then the mock's Bar method is returning null. I guess Moq is choosing ...
0
votes
1answer
34 views
Partial Mocks for DI?
For my last Java project I unit tested all classes. Each class had it's own interface and implementation (ie. Person and PersonImpl). Classes interacted with each other via interface only and I used ...
0
votes
1answer
46 views
Is it necessary to create mocks for all table classes in every PHPUnit test method in Zend Framework 2?
I have a complete running application and want to write tests for it. I've started by the Application module and I am following the manual. Now I'm writing the "first controller test" and as expected ...
0
votes
1answer
93 views
Karma AngularJs Cancel/mock Timeout E2E
In angular I have a service object which animates page transitions. The problem is the animation is making karma/testacular E2E tests run very slowly. The code looks like the following:
...
1
vote
1answer
43 views
Jmockit String final length method mocking Issue
Using jmockit 1.2 jar,
Trying to mock String's length method but getting Unexpected Invocation Exception:
FAILED: test
java.lang.IllegalStateException: Missing invocation to mocked type at this ...
0
votes
1answer
27 views
Mock library for Python, return value only once in mocked function?
Mocking a method with mock is simple enough, for instance, like this:
o.get_idlist = mock.Mock(return_value=[1])
However, that will make get_idlist() return [1] every time. Is there a way to ...
0
votes
0answers
29 views
How can I create dynamic proxy for final Class?
In short:
1. I have some final class that I want to create dynamic proxy for it. How can I do it?
2. Can I convert MethodHandle to Method?
Details
First of all, does exists any API to convert ...
0
votes
1answer
37 views
Mocking IDataRecord
I'm trying to mock an IDataRecord using Moq.
The mock was created as follows:
Mock<IDataRecord> mockDataRecord = new Mock<IDataRecord>();
The line under test is:
DateTime timestamp = ...
0
votes
2answers
22 views
Create Mock for a constant method in Turtle
I have,
class CFoo : public CFooPar
{
public:
CFoo(){}
~CFoo(){}
virtual bool ret() const
{
return true;
}
};
How can I create mock class for this virtual ...
0
votes
2answers
101 views
How do I mock a backend in AngularJS?
My angular app communicates with my server through a REST API. I want to mock out this API to quickly develop the front end.
There are two approaches I see:
Use ngMockE2E $httpBackend. This ...
0
votes
0answers
60 views
Test Doctrine ODM respository with phpunit in Symfony2
I want to test this simple query:
public function findArticlesByUsers($ids) {
$qb = $this->createQueryBuilder();
$qb
...
0
votes
1answer
91 views
Best practice TDD - Java Object Validation and clean code
Suppose a Java class called Car, whose objects are initialized through a static factory:
public class Car {
private String name;
private Car(String name){//...}
public static Car ...
-6
votes
1answer
41 views
Why are there no available downloads for pyfakefs? [closed]
pyfakefs mocks Python's filesystem modules, useful for testing. It seems to be quite mature, being "used in over 900 Google Python tests". However, there doesn't seem to be a convenient way to ...
0
votes
1answer
32 views
Creating domain objects when testing a grails service
I am trying to create unit tests for testing my grails services. I have the following test
@TestFor(ActivityProcessorService)
@Mock([ActivityProcessorService, Activity])
class ...
0
votes
1answer
43 views
How to test method that uses external package to interact with DB
I am trying to test a function, which is part of the business logic layer of a struts application. I am facing problem because the code is dependent on external functions in a organization wide used ...
0
votes
1answer
72 views
How to unit test the rest call using easy mock
How to unit test the below method with the EasyMock. I tried to mock WebResource but it is returning me a NullPointerException.
public void connect()
{
Client client = setUpClient();
...
0
votes
0answers
32 views
mocking up method return invoked in a separate thread using Mockito
I'm having a problem mocking up a method return value on my mock object invoked in a new thread. In my test I have :
@Test
public void startConnectionTest(){
clientConnection.startConnection();
...
0
votes
0answers
8 views
RESX Resource IO Issue from unit test
The Action method that i have is something like this -
public ActionResult Index(Guid id)
{
.....
string resourseValue = Resources.UIResource.ViewName;
.....
}
When i am trying to unit ...
1
vote
1answer
24 views
Mocking methods of the object under test
Lately I've been writing some objects wherein the behavior of one method sometimes consists of calling another one of its own methods under certain conditions. To test this, I've been mocking the ...
0
votes
1answer
28 views
Is there any way to do mock argument capturing in Spock
I have looked around and tried different things to no avail. The examples out there on the interwebs are few, and IMHO pretty simple. My use case:
(the 'itocNetworkHandler' below is the mock)
when: ...
0
votes
2answers
32 views
How to return the argument of a mocked method?
Hi all how can I make it so in PHPUnit a mocked method returns its passed argument?
E.g:
$redirector->expects( $this->once() )->method('gotoUrl')->will( $this->returnValue($argument) ...
0
votes
1answer
23 views
Mocha expected at most once, invoked twice, but method is clearly invoked only once
I'm using Mocha for mock testing. Below is the relevant code:
# test_player.rb
should "not download the ppg more than once for a given year" do
@durant.expects(:fetch_points_per_game).at_most_once
...
1
vote
0answers
51 views
ScalaMock 3. Mocking methods with function parameter
I would like to mock methods with a function parameter and a function parameter in combination with curried paramters like:
trait Secured {
def IsAuthenticated(f: AuthenticatedData => ...
0
votes
1answer
30 views
JMockit NullPointerException on mocked object in Expectations
Here is the relevant part of my test case:
@NonStrict
private StowServiceWrapper mockStowServiceWrapper;
@NonStrict
private IsItemStowableResponse mockIsItemStowableResponse;
@NonStrict
private ...
2
votes
2answers
104 views
How to mock dependencies in Intern tests
Is intern use requireJs to load the test? I'm using this approach to mock out dependencies for the module I wanna test, so I wonder if this will work with Intern as well.
0
votes
1answer
35 views
Python - How to unmock/reset mock during testing?
I'm using nosetests and in two separate files I have two tests. Both run fine when run individually, but when run together, the mock from the first test messes up the results in the second test. How ...
0
votes
1answer
93 views
using ControllerContext.RequestContext in a web api controller
I am try to integrate SagePayMvc.dll into a ASP.NET Web API project which requires ControllerContext.RequestContext to be passed in order to form the Notification Url.
Currently I am experiencing ...
3
votes
2answers
130 views
Scala: Mocking and the Cake Pattern
I've been trying to adopt the Cake Pattern but I'm having difficulties adapting to this programming styles, especially where unit tests are concerned.
Lets assume that I have the following business ...
-4
votes
0answers
47 views
How can I use mocks with Django? [closed]
I'm trying to use a mock with Django to make some unit testing. I want to test my models but I can't find how. Do you have an idea?
0
votes
2answers
48 views
Use mock frameworks for something else then unit-tests?
Do mock frameworks are just supporting to write unit tests or are there any other cases where a developer would use them? Are there situations where they are useful outside the testing area?
1
vote
1answer
61 views
C++ Mock Frameworks: 'Generic' vs 'Declarative'
I'm recently learning a lot about Mocking Frameworks for C++, but there is one question which I couldn't solve so far:
There seem to be 2 different types of mocking Frameworks available (at least for ...
0
votes
0answers
42 views
Python Mock: Stub method only for set parameters
Python mockito lets you stub methods when called with certain parameters.
E.g.
from mockito import when
# No wonder that modules have to be imported first
import os.path
# Stub calls
...
0
votes
0answers
27 views
Mocking network packets from different IP addresses for java unit tests
I need to test java code that receives network packets from multiple IP addresses.
How can I mock the system up in Java unit test?
1
vote
1answer
34 views
How can i check call arguments if they will change with unittest.mock
One of my classes accumulates values in a list, uses the list as an argument to a method on another object and deletes some of the values in this list. Something like
element = element_source.get()
...
0
votes
2answers
258 views
Testing a Spring MVC controller method with Spring MockMvc* classes
I am trying to test the following Spring mvc controller method:
@RequestMapping(value = "/preferences/email", method = RequestMethod.POST, produces = "text/html")
public String ...
0
votes
1answer
54 views
Mockito 1.9.5 + Dexmaker on Android in Eclipse get NoClassDefFoundError
I need to test one application on Android in Eclipse. I made Android Test Project and in it this class. I need some mock so i use Mockito so i added into my test project library this: ...
0
votes
1answer
24 views
From Real stdClass Object to Mock
I have a Soap WebService that returns StdClass Object with different properties. What i want to do is to create a Mock Object that simulates the StdClass returned by WebService. What i dont want to do ...
0
votes
1answer
23 views
rspec mock not getting called on belongs_to association
I'm trying to test my controller in rails with RSpec, but it's not calling one of the mocks I made and I'm not sure why.
my model has a user class, and a game class, and a player class, which belongs ...
1
vote
2answers
36 views
Can I test code that uses introspection with Mockito?
I'm writing unit tests for a block of code that uses introspection; specifically it calls getDeclaredField() on the class I want to mock and tries to get the value of the field. Is there a way to ...
2
votes
1answer
53 views
Is it possible to capture parameters with Google Mock (gmock)?
I am planning on using Google Mock. I need to capture an object reference so that I can subsequently call some methods from that object.
Does Google Mock have any capturing abilities? If not, what ...
0
votes
0answers
25 views
Mocking object gets in Django unittests
Edit: This didn't work initially as the imports used differing imports into the view, and into the mock. I used project.app.views.Model in the test mock, whereas in the import in the views.py was ...
0
votes
1answer
18 views
How can I mock a Non-DB-Model and let it return a given list on call
I have a CommentList class with a static method fetch. The problem is, that it is not an ActiveRecord Model, but it makes http calls to fetch data.
class CommentList
def self.fetch
# http-foo ...

