0
votes
1answer
15 views

Patching os.path.isfile with side_effects not working in list comprehension

I'm attempting to excercise the following method in a Python class: def find_tests(self): tests_dir = glob.glob("tests/*") if not tests_dir: return None # Filter out only the ...
1
vote
0answers
19 views

mock objects in python are not working on Jenkins?

I have a method, which needs to be mocked dependend on params. e.g.: mock_obj.method('param1').get() returns 10 mock_obj.method('param2').get() returns '~/Programs' etc. I do that using ...
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
0answers
29 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
1answer
26 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 ...
-6
votes
1answer
40 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
29 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 ...
-4
votes
0answers
46 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
0answers
40 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 ...
1
vote
1answer
30 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
0answers
23 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
2answers
59 views

Embedded python interpreter, generate stub source code for autocompletion

I have an application that embeds python and exposes its internal object model as python objects/classes. For autocompletion/scripting purposes I'd like to extract a mock of the inernal object model, ...
0
votes
2answers
50 views

Mocking python function based on input arguments

We have been using Mock for python for a while. Now, we have a situation in which we want to mock a function def foo(self, my_param): #do something here, assign something to my_result ...
2
votes
1answer
62 views

Python Mocking a method from an imported module

I just want to verify that I am doing this in a sensible way in Python 2.7.3 And I am totally open to more pythonic or supported ways to approach this. What I want to do is mock a function in a ...
1
vote
2answers
32 views

Asserting mocked calls to __iter__() method

from mock import MagicMock, call m = MagicMock() m.foo() for i in m: print m m.bar() print m.mock_calls [call.foo(), call.__iter__(), call.bar()] [call.foo(), call.__iter__(), call.bar()] == ...
1
vote
2answers
61 views

Python mock, django and requests

So, I've just started using mock with a Django project. I'm trying to mock out part of a view which makes a request to confirm with a remote server that a request was genuine (a form of verification ...
0
votes
1answer
31 views

Patch - How to check that a patched class's instance called a class function?

I'm trying to patch a class, have a function under test create an instance of the patched class, have that instance call a class function, then I want to test that that class function was called. How ...
1
vote
1answer
39 views

Patch - Why won't the relative patch target name work?

I've imported a class from a module, but when I try to patch the class name without it's module as a prefix I get a type error: TypeError: Need a valid target to patch. You supplied: 'MyClass' For ...
1
vote
2answers
29 views

Patch - Patching the class introduces an extra parameter?

First time using patch. I've tried to patch one of my classes for testing. Without the patch attempting to run gets past the test function definition, but with the patch the test function definition ...
1
vote
1answer
71 views

How to create mock LDAP server for Django project?

I'm using django-auth-ldap and was wondering what is the easiest way to create a python mock ldap server. The problem arises when I'm developing away from the network the ldap server is located on. ...
0
votes
1answer
35 views

How to force an exception in django in order to test it in django

I've really searched for how to patch Whatever.objects.get_or_create, but I can't get any suggestion or idea how to do it. Well, my problem is that I have something like this: def ...
0
votes
2answers
29 views

Trying to mock method in Object gives 'AttributeError'

I am trying to test a method in an already existing class. Within inputStreamThread method in the Foo.crawler.crawlerapp.CrawlerApp class the method addUrl is called. inputStreamThread reads from ...
1
vote
1answer
69 views

How do you assert that Django's QuerySet.count() method was called on a Mock?

I'm using Mock to replace a Django Model, and it is configured as follows: >>> config = {'objects.filter.return_value.count.return_value': 1} >>> MockModel = Mock(**config) I can ...
0
votes
1answer
61 views

python django mock cache

In my settings.py , I have specified my cache as : CACHES = { 'default': { ...... } } In my views.py, I have import requests from django.core.cache import cache, get_cache def ...
0
votes
1answer
43 views

python how to access input params in MagicMock?

I want to add a unit test for the function 'method_a': def method_a(some_thing): #some logic here return update({'a':1}, request=some_thing) def update(value, request): if request: ...
1
vote
0answers
49 views

How to properly use mock in python with unittest setUp

In my attempt to learn TDD, trying to learn unit testing and using mock with python. Slowly getting the hang of it, but unsure if I'm doing this correctly. Forewarned: I'm stucking using python 2.4 ...
1
vote
2answers
90 views

Mocking two functions with patch for a unit test

I have a function I want to unit test contains calls two other functions. I am unsure how can I mock both functions at the same time properly using patch. I have provided an example of what I mean ...
0
votes
1answer
56 views

python mock Requests and the response

I am a beginner to using mock in python and trying to use http://www.voidspace.org.uk/python/mock. Please tell me the basic calls to get me working in below scenario. I am using pythons Requests ...
1
vote
1answer
70 views

UnitTest Python mock only one function multiple call

I'm using Mock (http://www.voidspace.org.uk/python/mock/mock.html), and came across a particular mock case that I cant figure out the solution. I have a function with multiple calls to some_function ...
0
votes
1answer
34 views

How to patch 'open' from an imported module using Mock

I am writing some unit tests for a module I have. I need to patch open so when the functions inside the tested module calls open the mock is used instead of the real open. This code works but I think ...
0
votes
1answer
93 views

Patching(mocking) forms form in django tests

I tried to mock form with mock.patch and can`t. I have this code forms.py class CreatePostForm(object): pass views.py: from forms import CreatePostForm def doit(): print CreatePostForm() ...
1
vote
1answer
70 views

How can I create a class method with multiple dots?

In python I want to create a (class) method with multiple dots, in order to make tests regarding xmlrpc methods, which can have method names with many dots. When I try just the following: class ...
0
votes
0answers
60 views

How to mock python module in unittest

I have a problem when mocking in unittest. #!/usr/bin/env python import sys sys.modules["foo.Bar"] = __import__("mock_bar") import foo.Bar print foo.Bar.__name__ I've got an ImportError exception ...
1
vote
1answer
58 views

Fake module used by other modules

Is any possibility to fake module, which is used(import) by other modules that I use in my tests? Example: This is my test.py: import unittest import module1 //test code here module1.some_method() ...
0
votes
1answer
108 views

Django mock patch doesn't work as I expect

Summary : I am doing an experiment to try to create a simple mock to replace redis. What I'm trying to do should be obvious from the code. Short version is, the mock doesn't work - It's still going to ...
0
votes
0answers
60 views

Unit testing for method that calling other method using mox, python

I need to create unit test for this case. TestFoo.testCall() . The problem is that function is not returning any thing. So how can we test this method TestFoo.testCall() is working correctly or not. I ...
0
votes
0answers
55 views

How can we patch a module globally in a project?

In Python, I normally use mock library to do monkeypatching. I have a small project with several files. They all use requests library to make http requests. But the way I use patch is it needs to ...
2
votes
4answers
92 views

How to patch method ''.join using the mock library

To create a unit test of a given function, I need to patch ''.join(...). I've tried many ways to do this (using the mock library) but I just can't get it to work even though I have some experience ...
2
votes
1answer
122 views

Python Mock Process for Unit Testing

Background: I am currently writing a process monitoring tool (Windows and Linux) in Python and implementing unit test coverage. The process monitor hooks into the Windows API function EnumProcesses on ...
1
vote
1answer
51 views

Asserting `mock_calls` equals expected call list

I am trying to recreate the mock_calls example so that I can check that an expected list of calls is equal to the actual calls made. However, I am receiving a NameError exception because name 'call' ...
0
votes
0answers
62 views

how mock only one method called within the object you are testing

I want to test a method but mock out other methods that it calls. I created this simple example that should illustrate the concept: class myClass(): def one_method(self): print "hey" ...
1
vote
1answer
82 views

Mocking a decorator in one Django app

I want to test if a views decorator works properly if a proper view is called So, here's decorator get_object and view features are in myapp.views. @get_object def features(request, object): ...
0
votes
1answer
67 views

how to mock an exception call in python?

I have a code like this: def extract(data): if len(data) == 3: a = 3 else: component = data.split("-") if len(component) == 3: a,b,c = component ...
1
vote
2answers
133 views

Pass keyword argument only to __new__() and never further it to __init__()?

Part 1 I have a setup where I have a set of classes that I want to mock, my idea was that in the cases where I want to do this I pass a mock keyword argument into the constructor and in __new__ ...
1
vote
1answer
71 views

How do I test an API Client with Python?

I'm working on a client library for a popular API. Currently, all of my unit tests of said client are making actual API calls against a test account. Here's an example: def ...
0
votes
2answers
73 views

Using mock library to patch a class method

I'm writing unit tests, and I need to mock a method call so that in most of the cases it behaved as method itself except when argument gets a special value 'insert into'. Here is a simplified ...
0
votes
0answers
80 views

django nose and mock when testing one app gives `AttributeError: object has no attribute 'lib'

I'm trying to migrate to using nose, because I want to use coverage. when I run manage.py test, all of the tests run, and i get 3 failurs in one of my apps (lets call it magic_app). these tests mock ...
1
vote
1answer
49 views

How to mock a function defined in a separate Python module using mock's @patch

I am attempting to build a test for a Python application using mock and the @patch decorator. Given the following directory structure: |-- mypackage | |-- mymodule | | |-- __init__.py ...
1
vote
1answer
62 views

ImportError when attempting to mock a module

I have a module that I am testing that depends on another module that won't be available at the time of testing. To get around this, I wrote (essentially): import mock import sys ...
0
votes
0answers
24 views

Decorating Pyro remote objects

I understand this is a far shot, but would there be a (not too complicated) way to decorate, wrap, or mock methods on Pyro remote objects?

1 2 3 4 5