Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
353 views

Is there a way to hook Django's unittest into PyUnit in eclipse?

I've been working on a Django project for the past few weeks now, and it's been fairly smooth sailing. I use Django's unittest library to test everything, and the result show up in the console. ...
7
votes
1answer
1k views

nice html reports for pyunit

Do you know a tool for creating nice html reports for pyunit?
5
votes
2answers
301 views

Python Unit Testing: Automatically Running the Debugger when a test fails

Is there a way to automatically start the debugger at the point at which a unittest fails? Right now I am just using pdb.set_trace() manually, but this is very tedius as I need to add it each time ...
5
votes
4answers
529 views

Python Unittest

I am using python unittest module to do a number of tests; however, it is very repetitive. I have a lot of data that I want to run through the same test over and over, checking if correct. However, ...
5
votes
2answers
377 views

Testing Python Decorators?

I'm writing some unit tests for a Django project, and I was wondering if its possible (or necessary?) to test some of the decorators that I wrote for it. Here is an example of a decorator that I ...
5
votes
3answers
513 views

What is the keyboard shortcut to run all unit tests in the current project in PyDev + Eclipse?

I know Ctrl + F9 runs a single file. How to run them all? If there is no such thing, how to bind one keyboard shortcut to it?
4
votes
2answers
41 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 ...
4
votes
8answers
376 views

How do I test beginner student Python programs that use input() (maybe with unittest?)?

I'm a grader for a beginning programming class using Python. My python-fu is not so strong myself, but I would like to try to automate some of the grading. Looking online, I like the PyUnit testing ...
4
votes
3answers
222 views

A way to output pyunit test name in setup()

Is there a way in python for a pyunit test to output the test it's currently running. Example: def setUp(self): log.debug("Test %s Started" % (testname)) def test_example(self): #do stuff ...
4
votes
3answers
339 views

How to make my Python unit tests to import the tested modules if they are in sister folders?

I am still getting my head around the import statement. If I have 2 folders in the same level: src test How to make the py files in test import the modules in src? Is there a better solution (like ...
3
votes
1answer
84 views

Unit testing metaclasses and inner classes in python

I usually unit test per class and this is no problem. However after messing around with python I have hit a problem that I have not encountered before in other languages, meta classes and inner ...
3
votes
3answers
2k views

Python unittest: how to run only part of a test file?

I have a test file that contains tests taking quite a lot of time (they send calculations to a cluster and wait for the result). All of these are in specific TestCase class. Since they take time and ...
2
votes
2answers
88 views

How do i create a test Suite in python unittest

i tried: def buildTestSuite(): suite = unittest.TestSuite() for testcase in glob.glob('src/testsuite/test_*.py'): module = os.path.splitext(testcase)[0] print module ...
2
votes
1answer
104 views

PyUnit with child processes

In some Python code, I fork and do some processing in a child process while the parent waits for it to exit. It doesn't exec after the fork. I'm having a problem testing this code in PyUnit, because ...
2
votes
2answers
533 views

Test framework for component testing

I am looking for a test framework that suit my requirements. Following are the steps that I need to perform during automated testing: SetUp (There are some input files, that needs to be read or ...
2
votes
4answers
379 views

using pyunit on a network thread

I am tasked with writing unit tests for a suite of networked software written in python. Writing units for message builders and other static methods is very simple, but I've hit a wall when it comes ...
1
vote
1answer
35 views

Cant understand results while using assertRaises in unit testing on a sqlalchemy code

I am trying to unit test my sqlalchemy code. def add_user(*user_details): try: u = User(*user_details) session.add(u) session.commit() ...
1
vote
0answers
43 views

How to have different test documentation for subclasses in pyunit?

I've seen this question and this one but still am curious about how pyunit is meant to work for my use case. I want to test the same method for multiple inputs. To do this, I created a class with ...
1
vote
1answer
82 views

pyUnit unit testing for Magento a good idea?

Today it was suggested to me to use PyUnit with our Magento modules because of its request and response objects. Is there any advantage to using an xUnit testing framework? We would be running Hudson ...
1
vote
1answer
51 views

Mock an object in a method that is not a parameter in python

(i'm a python newbie) I was looking at: Mocking out objects and methods And I was wondering if i can replace an object in a python method which is not passed as a parameter, lets say my method is ...
1
vote
4answers
193 views

pyunit simulating input to stdin

I'm trying to test a function that takes input from stdin, which I'm currently testing with something like this: cat /usr/share/dict/words | ./spellchecker.py In the name of test automation, is ...
1
vote
0answers
144 views

Pyunit fork mode option to create a subprocess for every testcase

I heard that Junit has a fork mode option to fork and run every unittest.testcase instance in a separate process. Does pyunit have an option for this? More specifically, can I set this option ...
1
vote
1answer
715 views

Recommended PyUnit tutorials?

What is the best tutorial you know out there for getting started with PyUnit? (On Google I tend to find mostly fragmented hints and tricks and not much in terms of guides)
1
vote
2answers
239 views

How to stop/disable PyUnit when using PyDev

I would like to have PyUnit stop showing up each time I hit CtrlF11. It's distracting and I don't understand it's output anyways, nor did I (knowingly) elect to enable it. I can't find anything in ...
1
vote
1answer
159 views

How can I create a class-scoped test fixture in pyUnit?

I am unit testing mercurial integration and have a test class which currently creates a repository with a file and a clone of that repository in its setUp method and removes them in its tearDown ...
1
vote
2answers
225 views

PyUnit with a variable number of tests

What I would like to do, is create a folder, where people can put in a file for testing, and have pyunit automatically expand in order to run the test as a separate test. Currently, what I'm doing ...
1
vote
2answers
185 views

Running Tests From a Module

I am attempting to run some unit tests in python from what I believe is a module. I have a directory structure like TestSuite.py UnitTests |__init__.py |TestConvertStringToNumber.py In ...
1
vote
2answers
373 views

Generate test coverage information from pyunit unittests?

I have some pyunit unit tests for a simple command line programme I'm writing. Is it possible for me to generate test coverage numbers? I want to see what lines aren't being covered by my tests.
1
vote
1answer
249 views

How to extend and modify PyUnit

I'm about to embark upon extending and modifying PyUnit. For instance, I will add warnings to it, in addition to failures. I'm interested in hearing words of advice on how to start, for instance, ...
0
votes
0answers
87 views

Getting error “AttributeError: 'module' object has no attribute 'testsuite'” when trying to use python unittest loadTestsFromNames method

# Find all the test modules modules = map(trace.fullmodname, glob.glob('testsuite/test_*.py')) # Load All the tests into a suite suite = unittest.TestLoader().loadTestsFromNames(modules) ...
0
votes
1answer
36 views

Unit-testing extensions for an 'external' program with pyunit

I'm struggling to know where to start with unittest, having read the dive-into-python tutorial and looked at http://pyunit.sourceforge.net/. I've got a piece of analysis software (call it 'prog.exe') ...
0
votes
2answers
89 views

Exception raised with unittest assertions

When I run a unit-test where I am testing for equality of two integers, I get an assertion error exception instead of unittest reporting a failure, then proceding to the next test. Here is the test ...
0
votes
2answers
57 views

Mock an object in a method that is not a parameter in java similar to the following python code?

following is a very cool mocking with python, is there anyway to do that also in java? mockpath = os.path mockpath.isdir = Mock(return_value=False) myObj = MyClass() myObj.invoke_some_method() ...
0
votes
1answer
149 views

PyDev and Unittesting, not showing time / successful runs in summary?

Looking at the documentation for PyDev and it's test integration at The Pydev Site the screenshot shows output for each test with how long it took the test to run. However when I run it only failed ...
0
votes
0answers
67 views

How can I override the test name in PyUnit?

We've started to use PyUnit with the unittest-xml-reporting module to integrate with Hudson. We have various sources of unit tests, and so we want to be able to alter the XML report to modify the ...
0
votes
1answer
162 views

How can i make the attached pyunit python script search for tests in subfolders

The following python script searches and executes all pyunit tests in the current folder. """Regression testing framework This module will search for scripts in the same directory named ...
0
votes
2answers
98 views

how can i use Mercurial to run unit tests for Python

and also do code coverage analysis. I am using ubuntu 10.10
0
votes
0answers
228 views

Calling a Selenium Testcase in python

I'm trying to run a selenium testcase in python. I have testcases that I can run directly from the command line no problem with python seleniumtest.py However when I try to run it from within ...
0
votes
2answers
213 views

Is test suite deprecated in PyUnit?

Following the example in PyUnit, I came up with the following unittest code that works fine. import unittest class Board: def __init__(self, x, y): self.x = x; self.y = y; def __eq__(self, ...
0
votes
1answer
89 views

Pyunit: “Import Site”

Using pyUnit to do what is currently a very small and simple unit test I am getting the message: 'import site' failed; use -v for traceback ... ____________________________________________ Ran 3 ...
0
votes
2answers
411 views

Make pyunit show output for every assertion

How can I make python's unittest module show output for every assertion, rather than failing at the first one per test case? It would be much easier to debug if I could see the complete pattern of ...
-1
votes
2answers
204 views

Testing python methods that call class methods

I have a very simple method: Class Team(models.Model): def sides(self): return SideNames.objects.filter(team=self) SideNames is another model defined in the same file as Team, Which ...