Tagged Questions
3
votes
1answer
48 views
How to test this code
I'm trying my hand at TDD and unit-testing, having never really done either seriously.
I have an XML file that's output from a program. I want to convert this to JSON.
I found xmltodict so what I ...
0
votes
1answer
46 views
Django 1.5.1 “'STDOUT_LINE' is not defined” when running tests
When I run tests in Django for my applications I have the following exception
.......NameError: global name 'STDOUT_LINE' is not defined
There're only 9 test methods in the test case.
What may ...
0
votes
1answer
47 views
Why is run() method called twice for running the test case?
Consider the following Python code from Kent Beck's book Test Driven Development Chapter 18 where he is building a framework for unit testing.
class TestCaseTest(TestCase):
def testRunning(self):
...
2
votes
2answers
72 views
Python unittesting: run tests in another module
I want to have the files of my application under the folder /Files, whereas the test units in /UnitTests, so that I have clearly separated app and test.
To be able to use the same module routes as ...
1
vote
1answer
68 views
How do I use TDD to create a database representation of existing objects?
I have used TDD to develop a set of classes in Python. These objects contain data fields, functions and links to each other. Everything functionally works like I want.
Eventually all of this should ...
0
votes
0answers
43 views
Python test-based class relationship analysis?
Is a tool that, given I have 100% source code test coverage, would run the tests, analyse the relationships between the classes there and give me an UML diagram as an output (or some other form I ...
0
votes
1answer
47 views
pyunit test failed because method only accepts 4 arguments when 5 are passed in
Here is the def of the function I'm testing:
def runCMD(cmd,subString=-1,stripSlashes=True,getReturnCode=False):
Here is my test class
import unittest
from class_backups import *
class ...
0
votes
2answers
73 views
sniffer can't find DJANGO_SETTINGS_MODULE
I'm trying to automate the test rerun after a change while developing. After searching around a little sniffer seemed fine. But if I run it my tests fail with this error:
ERROR: Failure: ...
0
votes
0answers
49 views
Unit test for packages outside of django apps
In my Django project I have a few packages/folders that are not applications themselves, but contain code that uses Django models and needs to be covered with tests.
Obiously, when I run 'test ...
1
vote
1answer
106 views
Django Models .get fails but .filter and .all works - object exists in database
Racking my brain on this one. The model seems true, theoretically all of the commented permutations should work--- but the only things that can successfully retrieve the user is .filter and .all; .get ...
1
vote
1answer
139 views
How to mock database api?
Connecting database (even if it's an in-memory one) slows down my unittests (currently it took more than 5mins).
So I'm considering mocking the database api.
With the real database api, if there's ...
0
votes
1answer
70 views
Given we want to design the django polls application, sequentially how do we go about doing the BDD
I come from the python/django background.
I have been reading about BDD, and why it is more awesome than TDD. But few of the doubts that came up to my mind was, what would be an ideal way to go ...
4
votes
3answers
97 views
How should I indicate that a test hasn't been written yet in Python?
I'm doing TDD using Python and the unittest module. In NUnit you can Assert.Inconclusive("This test hasn't been written yet").
So far I haven't been able to find anything similar in Python to ...
3
votes
1answer
137 views
First steps with tdd
I am currently trying out the process of test-driven development on a hobby project and while I do understand the concept (write your unit test first, watch it fail, make it work, refactor your code) ...
1
vote
1answer
91 views
Unittest binary file output
I have an array of pixels which I wish to save to an image file. Python appears to have a few libraries which can do this for me, so I'm going to use one of them, passing in my pixel array and using ...
2
votes
5answers
215 views
Writing tests for “assertEqual” and “assertNotEqual”: should I bother?
I've got a Coordinate class, which has an add(Coordinate) method. When writing unit tests for this class, I've got tests to assertEqual a result:
a = Coordinate(1,2,3)
b = Coordinate(5,6,7)
result ...
1
vote
2answers
81 views
Is it possible to TDD when writing a test runner?
I am currently writing a new test runner for Django and I'd like to know if it's possible to TDD my test runner using my own test runner. Kinda like compiler bootstrapping where a compiler compiles ...
3
votes
1answer
162 views
How should I test using Mocks in Python?
I can see two different approaches to injecting mocks into python code that I want to test:
Dependency Injection:
Allow the collaborating classes to passed into the constructor of the object under ...
2
votes
2answers
356 views
How to mock pysvn
I am working on a Python module that suppose to checkout some code from SVN and build it. After much refactoring of some legacy code, I got a fairly decent coverage of the code, however, I have a ...
0
votes
0answers
85 views
Ctypes Wrapper and unit-testing
I wish to wrap a C library for use in python. I also wish to implement my class using test driven development. Here are the two classes I've written so far and their interface. There is a whole bunch ...
2
votes
3answers
258 views
Trying to learn TDD - not going so well
I've been trying to learn Python for about 6 weeks now. After reading a lot about TDD on this site I bought The Art of Unit Testing by Roy Osherove (great book!) to try and experiment with TDD while ...
4
votes
2answers
478 views
Python TDD directory structure
Is there a particular directory structure used for TDD in Python?
Tutorials talk about the content of the tests, but not where to place them
From poking around Python Koans, suspect its something ...
2
votes
2answers
145 views
TDD with large data in Python
I wonder if TDD could help my programming. However, I cannot use it simply as most of my functions take large network objects (many nodes and links) and do operations on them. Or I even read SQL ...
6
votes
2answers
451 views
How to approach unittesting and TDD (using python + nose)
I have been trying to get the hang of TDD and unit testing (in python, using nose) and there are a few basic concepts which I'm stuck on. I've read up a lot on the subject but nothing seems to ...
1
vote
1answer
138 views
Implement support for additional test runner in PyCharm
I'm working on my own python testing framework which I'd like to use within PyCharm. Is this something that can only be achieved by implementing a custom plugin or is there another (simpler) way to ...
2
votes
1answer
376 views
using assertRaises - handling propagated exceptions
I have some code where I'm testing for a wrapped exception, when it failed and the exception propagated I thought the error message and back trace wasn't verbose enough, primarily because it didn't ...
0
votes
1answer
258 views
Getting an actual return value for a mocked file.read()
I'm using python-mock to mock out a file open call. I would like to be able to pass in fake data this way, so I can verify that read() is being called as well as using test data without hitting the ...
7
votes
1answer
660 views
How TDD can be applied to Django Class based Generic Views?
Since Class based Generic Views in Django involve some work by the framework I find very hard to work with them in a TDD style. Now I use the TestClient to access the view from the http mocked stack, ...
3
votes
2answers
167 views
How to tell if Python/Django unit tests are hitting the network?
I was recently added to a project to add test coverage (Python/Django unittest module). This app deals heavily with web APIs and JSON requests and such, and part of my job is to make sure that none ...
5
votes
2answers
198 views
Running a method just once at the beginning before any tests are run in PyUnit
Im using PyUnit to write unit tests for my code. The setup method is called everytime before any test is run.
Is there a way i can define a method that will be run just once at the beginning before ...
2
votes
1answer
1k views
Mocking file objects or iterables in python
Which way is proper for mocking and testing code that iters object returned by open(), using mock library?
whitelist_data.py:
WHITELIST_FILE = "testdata.txt"
format_str = lambda s: ...
1
vote
2answers
789 views
In Python, how do I write unit tests that can access private attributes without exposing them?
I am trying to improve how I write my unit test cases for my Python programs. I am noticing in some cases, it would be really helpful to have access to private members to ensure that a method is ...
3
votes
3answers
123 views
How do I test whether a module is imported in Python for Test-Driven Development of a game?
I am about to make a game using python and libtcod roguelike game library.
More to the point, I am using PyMock because I am just starting to learn Test-Driven Development, and I am determined not to ...
2
votes
4answers
207 views
TDD practice: Distinguishing between genuine failures and unimplemented features
If you are in the middle of a TDD iteration, how do you know which tests fail because the existing code is genuinely incorrect and which fail because either the test itself or the features haven't ...
1
vote
2answers
116 views
How to test that a Python function takes less than a certain time to complete
I'm using Python's unittest.
I'd like to write a test that ensures a certain method completes before a certain time. I can do this by the usual calculation of the difference between timestamp after ...
1
vote
1answer
105 views
Which test could I write to force the following code
I like to have my test to force my design but when I comes to collections I always run into problems. The code I want to force is the following:
clientInvoices : (client, callback)->
@all ...
0
votes
1answer
243 views
Selecting a python framework for google appengine, maybe django?
I want to use an existing python framework to develop an application on google appengine.
It should be quick and easy to start and support test driven development practices in an easy way.
Can you ...
2
votes
2answers
132 views
What are your best practices for working with test data in Django?
I currently use a single fixtures file per application, but as projects grow, the tests are taking far too long and I believe that the (now large) fixtures being loaded for each test class are at ...
2
votes
4answers
372 views
Scientific Problems for Python Coding Dojos
We are organizing a Coding Dojo of scientific applications in the Brazilian Python Community, the main goals are: improve our skills in Numpy (and some others scientific libs); improve the use of TDD ...
4
votes
5answers
2k views
Testing Python Scripts
How do I test the STDOUT output of a Python script with a testing framework like doctest, unittest, nose, etc? For example, say running my script "todo.py --list" should return "take out the garbage". ...
2
votes
1answer
137 views
new class instance not being initialized
I'm writing a package, and doing my testing like a good little programmer, but here's what happens:
class TestOne(unittest.TestCase):
def setUp(self):
self.finder = Finder()
def ...
2
votes
3answers
190 views
Unit testing: Does it make sense to test parent object methods?
Let's say I am using a framework that has a class called Animal.
class Animal(object):
def speak(self):
logging.info(self.sound)
I have to subclass this object in order to use it and it ...
1
vote
3answers
750 views
TDD in python 3.1
I'm a C++ programmer who works via TDD. I am now learning python 3 and wish to continue with TDD. At the moment in C++, I give all my classes an interface and create mocked versions of them. I then ...
1
vote
3answers
296 views
TDD django models
If you're trying to do Test Driven Development, is it sane to write tests that check the column type of your models as you write your models?
Like before you write your model, you write a test and ...
0
votes
1answer
209 views
How to perform TDD when developing a Django API
When doing TDD on a Django app API, I write tests demonstrating that when proper constraints are provided, expected results are achieved. How do I write tests for the infinite permutations of cases ...
6
votes
3answers
277 views
Is having a unit test that is mostly mock verification a smell?
I have a class that connects three other services, specifically designed to make implementing the other services more modular, but the bulk of my unit test logic is in mock verification. Is there a ...
6
votes
2answers
256 views
Exclude system paths from django_coverage
I'm running django_coverage over a project with the command test_coverage. It's working, but it's including in the output and final calculation code in /usr/local/lib/python2.6/dist-packages. I'm not ...
5
votes
2answers
426 views
How do I run unittest on a Tkinter app?
I've just begun learning about TDD, and I'm developing a program using a Tkinter GUI. The only problem is that once the .mainloop() method is called, the test suite hangs until the window is closed.
...
2
votes
1answer
468 views
BDD in Google App Engine (Python)
I have seen some mention of some form of TDD for Python with Google App Engine, however I've not really seen a discussion of a BDD approach. Is someone familiar with how to string this together ...
6
votes
5answers
2k views
Proper way to test Django signals
I'm trying to test sent signal and it's providing_args. Signal triggered inside contact_question_create view just after form submission.
My TestCase is something like:
def ...
