django-unittest tag refers to writing unit tests in Django, tests that are expressed as methods on a Python class that subclasses unittest.TestCase or Django's customized TestCase.

learn more… | top users | synonyms

1
vote
1answer
30 views

Django Unit testing, unknown column error

I'm a Django beginner and am getting acquainted to using it, and I'm also a big believer in unit testing. Given a sample database table contracts with the fields parent_id int contract_num varchar ...
0
votes
0answers
28 views

How to debug Django unit tests?

I have a Django unit test, and I want to put print statements in it for debugging purposes but apparently django is suppressing them. How else can I print the value of a variable? I may be able to ...
0
votes
0answers
38 views

How to test django tastypie api with asychronous requests

I am working on API which is built on tastypie. what API do? It checks that if two or more requests are there on the server, it swaps the data. After that it initially returns a chunked response and ...
3
votes
1answer
120 views

Overriding decorator during unit test in python

I have a django class based view that I'm decorating. Unfortunately that decorator makes outside calls to do status checks which is outside the scope of what the unit test should do so I want to ...
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): ...
1
vote
1answer
57 views

Django Reverse Inverse

Is there an inverse method for Django's django.core.urlresolvers.reverse()? I want a function f(x) such that f(django.core.urlresolvers.reverse('shadowfax')) == 'shadowfax'. Does anybody have ...
1
vote
0answers
56 views

Running selenium tests on dependent projects

I have two Django projects (project A and project B) that use the same codebase and have separate settings files (we use the contrib.sites framework). The projects also use the same database. ...
2
votes
0answers
152 views

Django unit test client response has empty context

I have a unit test that's failing in an assertion that passes in another test in the same test case class. Here's the passing test: def test_home(self): c = Client() resp = c.get('/') ...
1
vote
0answers
161 views

django unit-test login user causes “duplicate entry” error

I have the following test Class FriendsTest(TestCase): # always login user def setUp(self): self.user = User.objects.all().order_by('date_joined')[0] ...
0
votes
1answer
91 views

Django Unit Testing: CSS selectors to test HTML?

There's something I discovered about the Rails framework which I really like, the ability to test the output of templates really easily with css selector, for example test how many "li" elements are ...
1
vote
1answer
141 views

Getting user logged in with django-social-auth

I set up a unit test as such: class UserViewTests(TestCase): def setUp(self): self.user_passwords = '123456' self.user1 = User.objects.create(username='Bobby Johnson', ...
0
votes
1answer
36 views

Django Unit Testing stucks with an E

I'm experiencing a strange error in Djangos Unit Testing Framework. It worked before, but out of the blue, the tests do not work any longer. The framework puts out: python manage.py test Creating ...
1
vote
0answers
41 views

Django Unit Test fails project-wide but passes app-wide

I'm using Django 1.4 with Python 2.7 on Ubuntu 12.10. I have a project with several apps and dozens of unit tests. We've recently run into a little issue using the @override_settings decorator. ...
0
votes
2answers
121 views

django unittest output

I would like to run django unittest via python subprocess and I would like to store all the data (especially the words Failure or OK) in a variable. However when I use subprocess to run this the ...
0
votes
1answer
79 views

How to test methods that compute relative time in python using unitttest?

I have a method in a django model that does a computation relative to the current time. Here is a snippet: def next_date(): now = datetime.now() trial_expires = max(self.date_status_changed + ...
5
votes
2answers
235 views

How can I get Python's unittest to not catch exceptions?

I'm working on a Django project but I think this is a pure Python unittest question. Normally, when you run tests, exceptions will be caught by the test runner and handled accordingly. For debugging ...
4
votes
3answers
386 views

python unit test: assertEqual on same objects throwing AssertionError

I have a class as class PlaylistManager(models.Manager): def add_playlist(self, name): playlist = Playlist(name=name) playlist.save() return playlist def ...
0
votes
1answer
136 views

Logging in using django-social-auth in a django unittest

I'm writing a test suite for a django project which needs to login via django-social-auth (its facebook backend) in order to access the website. The method I'm taking now is: for each test: create ...
1
vote
1answer
100 views

Good approach/design to unittest django application

My django application is having a handler for each functionality (e.g. Salesinvoice handler for create/save/retrieve the invoice models with validation). These handlers are used in the views to ...
1
vote
1answer
113 views

Django - Timestamp Unit Test

My application provides a status depending on the date and time of day that is provided as input to a custom URL. Normally it will use the current time (datetime.now()), but I'd like to create unit ...
1
vote
1answer
193 views

How does django/sqllite3 build database for testing?

Hi I'm attempting to write some unittests for my django web application but I'm running into some database problems when trying to run my tests. I'm using Factory Boy in some places in order to ...
0
votes
0answers
59 views

Unittests for Celery PeriodicTask (django)

Is there any sensible way to test Celery PeriodicTask using django unittests? It seems that PeriodicTask is always using the "main" database instead of database generated by django unittests ...
2
votes
1answer
228 views

Mocking django's database save

I'm trying mock out a save method call on a django models.Model. I'm using Mock as my mocking library. I'm testing a function in the file house_factory.py , which is located at ...
0
votes
1answer
220 views

How do I run my Django testcase multiple times?

I want to perform some exhaustive testing against one of my test-cases (say, create a document, to debug some weird things I am encountering..) My brutal force was to fire python manage.py test myapp ...
3
votes
2answers
169 views

Inspecting django unittest errors in pdb

I have a unittest that throws an exception. The exception isn't thrown by my code, it's from somewhere deep within django. I want to open a pdb session at that spot and see what's the haps, but when I ...
0
votes
2answers
132 views

django 1.4c1 unit test looks for 'other' database

In order to pass the unit tests running on a fresh install of django trunk (1.4c1), it is necessary to add in a 'dummy' other database in settings.py, like this:- DATABASES = { 'default': { ...
1
vote
2answers
570 views

Django Unittest doesn't load fixtures

Django testrunner is not loading fixtures out of media app fixtures/ directory. How can I debug it - find if it's looking for my fixtures and where? (Python 2.7.1, Django 1.3.1) My app ...
2
votes
2answers
666 views

Testing for expected 404 with Django test client leads to unhandled exception

I'm using the Django test client, django.test.client.Client, to test some views in a Django app. In particular, I'm testing a case where the view calls a get_object_or_404 method and the object isn't ...
1
vote
1answer
273 views

Importing the django.test does not work

As it is failing to import django.test module, unit test does not work. >>> import django.test Traceback (most recent call last): File "<stdin>", line 1, in <module> File ...
3
votes
0answers
278 views

Django unit tests spews database error - cannot commit transaction - SQL statements in progress

I'm using unittest2 together with manage.py test, and before it even seems to run any tests, it spews a horrid database error, as below. I'm in my development environment (actually on a dreamhost ...
3
votes
1answer
253 views

Change the default domain of Client() in unittest of Django

I am writing a unit test for Django views. class TestLog(unittest.TestCase): """Test for Contact""" def setUp(self): self.c = Client() try: self.bob = ...
0
votes
1answer
92 views

Execute Unittest in Django

I have written a small unit test for my django view .My project structure is like Project_name/ apps/ module1/ tests.py module2/ ...
2
votes
2answers
82 views

How do I test a Django site that uses UDFs in the database?

I have a django project that uses a postgres db with a number of UDFs. The UDFs are written in plpythonu. Since plpyhtonu is an untrusted language, only database super users can use it to to create ...
2
votes
2answers
945 views

Running the django tests using fabric

I have a fabric script that attempts to run the tests for an application that I wrote. It is already installed using setup.py and I am able to import it. I am following the script I found here. My ...
12
votes
3answers
1k views

What is the clean way to unittest FileField in django?

I have a model with a FileField. I want to unittest it. django test framework has great ways to manage database and emails. Is there something similar for FileFields? How can I make sure that the ...