Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
2answers
676 views

How can I unit test django messages?

In my django application, I'm trying to write a unit test that performs an action and then checks the messages in the response. As far as I can tell, there is no nice way of doing this. I'm using ...
16
votes
2answers
1k views

Writing good tests for Django applications

I've never written any tests in my life, but I'd like to start writing tests for my Django projects. I've read some articles about tests and decided to try to write some tests for an extremely simple ...
12
votes
2answers
957 views

Django test FileField using test fixtures

I'm trying to build tests for some models that have a FileField. The model looks like this: class SolutionFile(models.Model): ''' A file from a solution. ''' solution = ...
9
votes
2answers
592 views

Django testing tips

In the spirit of this question, I would like to know if anyone has any tips on creating a useful and "complete" test suite (can a test suite ever be "complete"?) for a Django webapp. My situation: ...
8
votes
3answers
702 views

Configure Django to find all doctests in all modules?

If I run the following command: >python manage.py test Django looks at tests.py in my application, and runs any doctests or unit tests in that file. It also looks at the __ test __ dictionary ...
7
votes
1answer
271 views

Django, generic relations, make fixtures

I'm trying to add generic relations and one-to-one relations support for django-test-utils makefixture command, here is the source ...
7
votes
4answers
622 views

Testing email sending - Django

any tips on testing email sending? Other than maybe creating a gmail account, especially for receiving those emails? I would like to maybe store the emails locally, within a folder as they are sent. ...
6
votes
2answers
228 views

How do I tell Django to save my test database?

Running Django unit tests is far too slow. Especially when I just want to run one test but the test runner wants to create the entire database and destroy the whole thing just for that one test. In ...
6
votes
5answers
1k views

How to test custom template tags in Django?

I'm adding a set of template tags to a Django application and I'm not sure how to test them. I've used them in my templates and they seem to be working but I was looking for something more formal. ...
5
votes
3answers
101 views

Writing tests for Forms in Django

I'd like to simulate requests to my views in Django when I'm writing tests. This is mainly to test the forms. Here's a snippet of a simple test request: from django.tests import TestCase class ...
5
votes
3answers
228 views

Django testing: Test the initial value of a form field

I have a view that should be setting an initial value for a form field based on a GET value. I want to test this. I'm currently using Django's test client but I am open to looking at other tools. ...
5
votes
3answers
1k views

Choose test database?

I'm trying to run ./manage.py test But it tells me Got an error creating the test database: permission denied to create database Obviously it doesn't have permission to create the database, ...
4
votes
1answer
107 views

What kind of tests should one write in Django

Let's says I have a Djano app. Users can sign up, get a activation mail, activate their accounts and log in. After logging in, users can can create, update and delete objects rhough a custom Form ...
4
votes
3answers
219 views

Running django tests with sqlite

I use Postgres for production and development, but I'd like to use sqlite to run some tests. I don't see an easy way to configure one engine for tests and another for dev / production. Am I missing ...
4
votes
2answers
133 views

django - specify database for TestCase fixtures

I have two databases that my site uses and I have an app that uses both of them. I need to write a TestCase that loads fixtures for both databases. I use a DB router, which works fine in production, ...
4
votes
2answers
253 views

How to launch tests for django reusable app?

Can I launch tests for my Django reusable app without incorporating this app to some project? My app uses some models, so it is necessary to provide (TEST_)DATABASE_* settings. Where to store them ...
4
votes
2answers
271 views

Django - testing using large tables of static data

I am using "manage.py test" along with a JSON fixture I created using using 'dumpdata' My problem is that several of the tables in the fixture are very large (for example one containing the names of ...
4
votes
2answers
757 views

Problems using User model in django unit tests

I have the following django test case that is giving me errors: class MyTesting(unittest.TestCase): def setUp(self): self.u1 = User.objects.create(username='user1') self.up1 = ...
4
votes
1answer
202 views

How do you add OpenId session data to a Django test client POST?

I'm trying to test that a UserProfile model is created as a new User is registered in django_authopenid. I don't understand how to add the Openid session data to the POST. class ...
4
votes
4answers
686 views

Django Testing - Hard code URLs or Not

This is a best-practices question. When writing tests in Django, is it better to hard code urls in your tests.py, or to use the dispatch's reverse() function to retrieve the correct url? Using ...
4
votes
3answers
1k views

Django: is there a way to count SQL queries from an unit test?

I am trying to find out the number of queries executed by a utility function. I have written a unit test for this function and the function is working well. What I would like to do is track the number ...
3
votes
2answers
131 views

Testing Django Facebook App

I'm making a Django app with Fandjango and I'm trying to unit test it with Django's test framework. The only thing is, in order to test effectively I need a "signed_request" parameter that Facebook ...
3
votes
2answers
353 views

Using Basic HTTP access authentication in Django testing framework

For some of my Django views I've created a decorator that performs Basic HTTP access authentication. However, while writing test cases in Django, it took me a while to work out how to authenticate to ...
2
votes
1answer
40 views

Django test client Response contains empty list of templates?

According to the Django testing docs, the Django client Response object contains 'templates', which is: "A list of Template instances used to render the final content, in the order they were rendered. ...
2
votes
1answer
127 views

Detect django testing mode

I'm writing a reusable django app and I need to ensure that its models are only sync'ed when the app is in test mode. I've tried to use a custom DjangoTestRunner, but I found no examples of how to do ...
2
votes
1answer
233 views

IntegrityError when loading fixture during django testing

I'm loading a fixture created with dumpdata, and getting the following exception: Problem installing fixture 'db_dump.json': Traceback (most recent call last): File ...
2
votes
1answer
281 views

Testing Django apps that use South migrations

I'm trying to create some Functional tests for a Django app that uses South migrations. Eventually, I will also be creating Twill tests. When I try to run the existing tests, the test database is not ...
2
votes
1answer
202 views

Can Django Test Client Be Used for API Calls in Production?

I'm building a Django app with an API built on Piston. For the sake of keeping everything as DRY as possible and the API complete, I'd like my internal applications to call the API rather than the ...
2
votes
1answer
286 views

Test coverage in teamcity with Django

I have got teamcity working and it builds and runs a custom testrunner (http://pypi.python.org/pypi/teamcity-messages) I loosly foolowed this post: TeamCity for Python/Django continuous integration ...
2
votes
1answer
110 views

Django Testing: determine which view was executed

In the Django testing documentation they promise that you can "Test that the correct view is executed for a given URL." However I didn't find any possibility how to test which view was executed. I ...
2
votes
2answers
209 views

Why are the Django project URLs not all available to the Django test client?

I've been trying to add the django-lean app to my project. The django-lean app is not located in the project I'm working on, it is on the PYTHONPATH. I have not been able to get the django-lean tests ...
2
votes
1answer
533 views

Django's self.client.login(…) does not work in unit tests

I have created users for my unit tests in two ways: 1) Create a fixture for "auth.user" that looks roughly like this: { "pk": 1, "model": "auth.user", "fields": { ...
2
votes
3answers
364 views

What tools can I use for Django Testing Automation?

I'm looking into automating a test runner which would do the following things daily (or hourly or whenever I want basically): Pull the latest code from a git repository. Run the Django test suite or ...
2
votes
3answers
610 views

Loading SQL dump before running Django tests

I have a fairly complex Django project which makes it hard/impossible to use fixtures for loading data. What I would like to do is to load a database dump from the production database server after ...
1
vote
2answers
70 views

In Django, why do I need to add the site name to imports in tests.py?

I've put some unit tests in mysite/vncbrowser/tests.py, and I can run these with: cd mysite python manage.py test vncbrowser In tests.py, I import the model classes with: from vncbrowser.models ...
1
vote
3answers
81 views

Mocking a Django Queryset in order to test a function that takes a queryset

I have a utility function in my Django project, it takes a queryset, gets some data from it and returns a result. I'd like to write some tests for this function. Is there anyway to 'mock' a QuerySet? ...
1
vote
1answer
84 views

How to run all tests in a setup.py script?

I would like to write a setup.py script that runs all of my django app's tests and fails the installation if one of the tests don't pass. How can it be done? What do I need to do?
1
vote
2answers
32 views

how to examine database in the middle of a Django test run?

I'm trying to be a good programmer and use Django's testing facility. things are going pretty well, but I would like to be able to examine the database when I stop the program in the debugger. It ...
1
vote
1answer
146 views

Django testing of multi-db with automatic routing

Simple problem - I'm using multi-db successfully with automatic routing setup as documented on a legacy db (which are unmanaged). Now I want to test it. I've already set a testrunner to get around ...
1
vote
1answer
141 views

How do I execute an arbitrary script in the context of my Django project?

Sometimes I want to execute a file in the context of my Django project, just as if I were using the shell, but with the convenience of using a text editor. This is mainly to try something out, or ...
1
vote
0answers
155 views

Django test to use existing database

I'm having a hard time customizing the test database setup behavior. I would like to achieve the following: The test suites need to use an existing database The test suite shouldn't erase or ...
1
vote
1answer
132 views

django object ids increment between unit tests

I'm using Django 1.2.3-3+squeeze1 on Debian squeeze with PostgreSQL 8.4.7-0squeeze2 (though I don't think PostgreSQL is relevant here), and running Django unit tests based on unittest with the ...
1
vote
1answer
103 views

Test specific models in Django

Is it possible to have a set of models just for testing purposes? The idea is that I've written an app that contains some helper abstract model HelperBase. Now I'd like to provide some models that ...
1
vote
4answers
385 views

How do I modify the session in the Django test framework

My site allows individuals to contribute content in the absence of being logged in by creating a User based on the current session_key I would like to setup a test for my view, but it seems that it ...
1
vote
1answer
168 views

Django not running tests with manage.py test, unless an app and a specific test method is specified

I have a Django application, myApp. In it, there's a tests.py file which defines a number of test cases using django.test.TestCase class. For example, one of them is called WebViews, and has a test ...
1
vote
2answers
403 views

django:: invoking middleware in tests

I have a middleware function which defines request.foo. A function I want to test depends on foo being defined from the middleware. How do I test said function since the middleware isn't run during ...
1
vote
1answer
229 views

Django test client response context None

I have moved my Django app from my development machine (OS X, Python 2.6.5, Django 1.2.3) to a staging server (Ubuntu VM, Python 2.6.6, Django 1.2.3). If I now run my test suite on the staging ...
1
vote
2answers
219 views

Error in django unittest while loading a fixture

I am making unittests for a django app. I need some data in the database for my tests so I am using a json fixture. I have two fixtures: for users and it works ok. for some webpages The fixture ...
1
vote
2answers
609 views

Django testing - InternalError: current transaction is aborted, commands ignored until end of transaction block

In my tests I do not only test for the perfect case, but especially for edge cases and error conditions. So I wanted to ensure some uniqueness constraints work. While my test and test fixtures are ...
1
vote
1answer
91 views

How can reverse('opensearch') work in the shell, but fails in a Test?

I'm trying to install django-lean into my application. Open search is used in my app App. I can reverse('opensearch') in the Python shell. However, in the test, reverse('opensearch') * ...

1 2