Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design. This tag is about writing and running tests for your Django apps.

learn more… | top users | synonyms

0
votes
0answers
13 views

Can django testing with databases be fixed for MySQL?

I have a large django project (AskBot) that I am running the tests for. When I configure DATABASES to use sqlite, the tests pass. When I figure to use PostgreSQL, the tests pass, but when I configure ...
0
votes
1answer
41 views

Django testing not getting connected to the database

I am a newbie to django. In my first django app, I am testing one of my view to check login. Here is my view: from testprjct.testapp.forms import LoginForm_form from django.contrib import auth def ...
1
vote
1answer
40 views

Display list of all tests in a Django project

Is there an easy way to get a list of all tests in a Django project without running the tests themselves? I was hoping for something like ./manage.py test --list.
0
votes
1answer
24 views

Test coverage in django - No module named django_test_coverage.runner

I installed django_test_coverage by easy install and simply added the line TEST_RUNNER = 'django_test_coverage.runner.CoverageTestSuiteRunner' to my settings (Django 1.4) But when I run the test ...
5
votes
1answer
41 views

Django testing for templates loaded via template tags

I am writing a suite of tests for an app. In a number of places I use Django's handy "assertTemplateUsed". This works for all templates except, as far as I see for templates loaded via template tags ...
1
vote
1answer
53 views

Django TestCase: SimpleUploadedFile shows wrong filetype

I've been trying to get the tests running on upload forms. But, whenever I run the tests, it says that file is of wrong type. Upload form saves the file with a randomly generated file name: class ...
0
votes
0answers
24 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
1answer
61 views

django unit test class based view error No JSON object could be decoded

I want to test my class based view. Here is the models.py file: class TodoList(models.Model): todoitem = models.CharField(max_length=200) description = models.TextField() pub_date = ...
1
vote
2answers
62 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
2answers
21 views

Django models relationship tests

I am new to django testing and have some issues using them to test relationship between models. Here is an extract of my models: class Member(models.Model): user = ...
0
votes
0answers
39 views

Eclipse with Django Unittest

I have a simple set of Django test cases that fail in Eclipse. Specifically if I have something like: resp =self.client.get('/accounts/newUser/') self.assertEqual(resp.status_code,200) ...
4
votes
1answer
98 views

Django with django-nose: two identical settings files with different behavior in running test command

With Django 1.4.5, I'm using django-nose 1.1.0. I have two settings files with no diff. -> % diff local_settings.py test_settings/sqlite.py I run the tests with: -> % python manage.py test ...
1
vote
0answers
94 views

Send post data in a DELETE request from Django-tastypie testing client

I'm trying to test a REST request using tastypie ResourceTestCase and api_client, but it has a different behaviour from using angular js, for example. The data sent for a DELETE request comes in GET ...
0
votes
1answer
45 views

Unit testing Django with remote calls to another server

So I have a Django app, which as part of its functionality makes a request (using the requests module) to another server. What I want to do is have a server available for unittesting which gives me ...
0
votes
1answer
101 views

Adding extra filter to polls urls.py causes tests to fail

Following the tutorial at djangoproject, I have tried to have urls.py filter out the polls with no choices with the urlpattern below. urlpatterns = patterns('', url(r'^$', ...
3
votes
1answer
340 views

Django 1.5.1 'ImportError: No module named urls' when running tests

I've started project with Django 1.5 I've the following urls, views, and tests of the profile app. When I browse localhost:8000/profiles it works just fine but when I run test for profile app ...
0
votes
0answers
54 views

Django-CMS test - register app

I have a function to build some skeleton of CMS in my tests: def create_base_cms_structure(): from cms.api import create_page from cms.utils.conf import get_cms_setting superuser = ...
0
votes
0answers
39 views

Unregistering default Django apps from admin breaks tests

In one of my apps/admin.py I have from django.contrib import admin from django.contrib.sites.models import Site from django.contrib.redirects.models import Redirect from mezzanine.generic.models ...
1
vote
1answer
103 views

TDD for plupload with Django/Splinter

I'm trying to set up tests for a upload using the plupload[1] queue widget. I'm using Splinter[2] for in-browser test, but I couldn't find a way to make it happen. Splinter has some methods to attach ...
0
votes
2answers
40 views

test that an URL is matching the correct view

for these two django url patterns (r'^articles/(\d{4})/$', 'news.views.year_archive'), (r'^articles/2003/$', 'news.views.special_case_2003'), the special_case_2003 view will never be called because ...
0
votes
0answers
35 views

Python unit tests with initial_data fixtures

I'm working on a Django app with a lot of unit tests, all of which require the same test fixtures for testing. Most of the data contained in the fixtures belong in models that will not be manipulated ...
0
votes
1answer
61 views

Loading fixtures for particular test cases

i have a situation where i need to load different fixtures for different cases in an functional test class class Mytest(LiveServerTestCase): fixtures = ['somefixture.json'] def ...
4
votes
1answer
258 views

Testing with a custom user model as a ForeignKey in Django 1.5

I'm using Django 1.5 and I'm trying to make an application work with any custom user model. I've changed the app to use get_user_model everywhere and the app itself is not showing any problems so far. ...
1
vote
1answer
60 views

save function raising error in django tests.py

my model.py is: Sample(models.Model): id=models.DecimalField(max_digits=8, decimal_places=0, primary_key=True) name=models.CharField(max_length=12) length=models.DecimalField(max_digits=8, ...
2
votes
1answer
248 views

Tests on Django 1.5 with AUTH_USER_MODEL

I migrated my django application to Django 1.5. I configured AUTH_USER_MODEL and everything looks fine, but when I tried to create some tests I got the following error: DatabaseError: (1146, "Table ...
3
votes
2answers
84 views

Getting rid of empty models.py in django testsuite

I have two pure service apps, that act as servant to my core models. Hence, they do not have any own models. While the testsuite for the first service runs fine, the second throws the following ...
0
votes
2answers
49 views

Is there a significant performance penalty for using deep template inheritance in django?

In my django application, I had a typical base template with things like my doctype, script and css tags. In the interest of clarity and code organization, I deconstructed this base template into ...
1
vote
1answer
78 views

Monkeypatching views with Django's LiveServerTestCase

I'm attempting to write tests for the frontend behavior of my application, using Selenium. However, the pages I'm attempting to test get their data from Solr, and I don't want to spin up a Solr ...
0
votes
1answer
115 views

Django unit test. Simple example

I learn unit test with Django. How to write test for this function? I need this example to understand. @login_required def datas(request): queryset = Data.objects.filter(user=request.user) if ...
0
votes
2answers
258 views

Django LiveServerTestCase: User created in in setUpClass method not available in test_method?

I am using Django 1.4's LiveServerTestCase for Selenium testing and am having trouble with the setUpClass class method. As far as I understand MembershipTests.setUpClass is run once before the unit ...
1
vote
2answers
110 views

Django : Testing if the page has redirected to the desired url

In My django app, I have an authentication system. So If I do not log in and try to access some profile's personal info, I get redirected to a login page. Now I need to write a test case for this. ...
0
votes
2answers
24 views

Where is groups__name documented?

My Django app has several different types of users. For my Project model, I want to limit the pm column to User objects only belong to the 'Project Manager' group. After browsing through SE & ...
1
vote
2answers
40 views

run every TestCase inside a module

How can you run tests from all TestCase classes, in a specific module under tests package? In a Django project, I have split tests.py under tests/ Each file(module) has several TestCase classes, and ...
0
votes
1answer
25 views

What tests do I need to write for the customfield that I have developed?

i have developed a custom field that extends ImageField and this custom field, dynamically creates 2more normal fields. Now, I need to write tests for this custom fields ? What tests are needed for ...
1
vote
1answer
75 views

Django - finding the module where warnings are coming from?

Here's my test output. I can't figure out where the bad DateTimeField is being set, because all I can see is: ...
0
votes
1answer
111 views

django-test-utils global name 'setup_test_environment' is not defined

I'm trying to use django-test-utils to keep my database after test running. But when I execute quicktest command: python manage.py quicktest I obtain this error: re/management/__init__.py", line ...
0
votes
0answers
131 views

Many-to-many relationship in factory_boy?

I'm trying to test a many-to-many relationship between two Django models using factory_boy. The factory_boy documentation doesn't appear to discuss this and I'm having trouble figuring out what I'm ...
0
votes
1answer
75 views

django not rasising IntegrityError for duplicate primary key

Does django enforce uniqueness for a primary key? The documentation here seems to suggest so, but when I define a class as: class Site(models.Model): id = models.IntegerField(primary_key=True) ...
0
votes
1answer
43 views

Create Django view just for testing

We are writing a new decorator that will test for the presence of an authentication token in the request headers. The request is created by posting data to a URL. There are currently no views that use ...
0
votes
0answers
122 views

Django/ Selenium - can't select and click checkbox

I am writing some system test for a Django project. All has worked fine until I hit the following stumbling block. I have an element on the page which is rendered into the Dom when the page is ...
0
votes
1answer
142 views

Correct way to unit test Django models without transaction errors

I'm writing some models with constraints like unique=True and blank=False and null=False. I'm trying to write tests for the models with nose. However, if I write a test like this: from ...
2
votes
1answer
134 views

Random test failures when code pushed to Jenkins

I have asked this one earlier too but am not satisfied with the answer. What I use: Working on Django/python website. Development done on python virtual envs locally. using GIT as my SCM have ...
1
vote
1answer
245 views

Setting up a test database in Django

I want to create integration tests so that i can create 1000 records of a single model in my database. for my settings.py file i have specified to use the same database default when running tests. ...
1
vote
1answer
47 views

Django - Testing model field change

Suppose a model field defaults to None and a method after some complex action is expected to change the field to None. At the end of a test, I do assertEqual and the field is None as expected. What ...
0
votes
2answers
76 views

Injecting in Django for testing and debugging

I am writing an app which depends heavily on dates and times. I want to be able to have an injectable concept of now() and today(). I was thinking that I could write my own versions of these two ...
0
votes
0answers
57 views

Django Testing - using custom SQL create scripts for multiple (non-slave) databases

Is there a way to NOT spawn syncdb on the non-default database when using a multiple-database design. Note: the other databases are not used in slave configuration. When running tests syncdb is ...
1
vote
0answers
67 views

Django test error

When running python manage.py test myapp2, I get this error: Creating test database for alias 'default'... Problem installing fixture '... project folder .../mymainapp/fixtures/initial_data.yaml': ...
1
vote
1answer
329 views

Broken Pipe Error while running django-test with selenium

while running django tests with selenium (no remote, no xvfb), I always get the following exception: Creating test database for alias 'default'... Traceback (most recent call last): File ...
2
votes
1answer
93 views

Using Django's test client, make a request using an in-memory file

I'm writing a test for a Django view, and I want to POST a file. It's a fairly trivial test, and I don't want to litter my tests/ directory with different text files, so I'd like to use an in-memory ...
1
vote
0answers
81 views

Django testing and middleware

I am having problems using the Django test Client() for testing middleware. It seems to emulate the sessions middleware specifically. However, since it is based on the RequestFactory, it does not seem ...

1 2 3 4 5