1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
|
"""
Test render and submit from the highest Django API level
so we are testing with exactly what Django gives.
Specific errors that are discovered through these tests
should be unit tested in test_fields.py
"""
from __future__ import unicode_literals
import django
from django.forms.models import ModelForm
from django.test import TestCase, Client
from django.contrib.auth.models import User
from tests.models import Book, Author, Person
from ajax_select import fields
try:
from django.urls import reverse
except ImportError:
from django.core.urlresolvers import reverse
# Other versions will autoload
if django.VERSION[1] < 7:
from tests import lookups # noqa
# --------------- setup ----------------------------------- #
class BookForm(ModelForm):
class Meta:
model = Book
fields = ['name', 'author', 'mentions_persons']
name = fields.AutoCompleteField('name')
author = fields.AutoCompleteSelectField('author')
mentions_persons = fields.AutoCompleteSelectMultipleField('person')
# --------------- tests ----------------------------------- #
class TestBookForm(TestCase):
def test_render_no_data(self):
form = BookForm()
out = form.as_p()
# print(out)
self.assertTrue('autocomplete' in out)
self.assertTrue('autocompleteselect' in out)
self.assertTrue('autocompleteselectmultiple' in out)
def _make_instance(self):
author = Author.objects.create(name="author")
book = Book.objects.create(name="book", author=author)
book.mentions_persons.add(Person.objects.create(name='person'))
return book
def _book_data(self, book):
persons_pks = [person.pk for person in book.mentions_persons.all()]
mentions_persons = fields.pack_ids(persons_pks)
return {
'author': str(book.author.pk),
'name': book.name,
'mentions_persons': mentions_persons
}
def test_render_instance(self):
book = self._make_instance()
form = BookForm(instance=book)
out = form.as_p()
# print(out)
self.assertTrue('autocomplete' in out)
self.assertTrue('autocompleteselect' in out)
self.assertTrue('autocompleteselectmultiple' in out)
def test_render_with_data(self):
"""
Rendering a form with data already in it
because it is pre-filled or had errors and is redisplaying.
"""
book = self._make_instance()
form = BookForm(data=self._book_data(book))
out = form.as_p()
# print(out)
# should have the values in there somewhere
self.assertTrue('autocomplete' in out)
self.assertTrue('autocompleteselect' in out)
self.assertTrue('autocompleteselectmultiple' in out)
def test_render_with_initial(self):
book = self._make_instance()
# this is data for the form submit
data = self._book_data(book)
# initial wants the pks
data['mentions_persons'] = [p.pk for p in book.mentions_persons.all()]
form = BookForm(initial=data)
out = form.as_p()
# print(out)
# should have the values in there somewhere
self.assertTrue('autocomplete' in out)
self.assertTrue('autocompleteselect' in out)
self.assertTrue('autocompleteselectmultiple' in out)
def test_is_valid(self):
book = self._make_instance()
form = BookForm(data=self._book_data(book))
self.assertTrue(form.is_valid())
def test_full_clean(self):
book = self._make_instance()
form = BookForm(data=self._book_data(book))
form.full_clean()
data = form.cleaned_data
# {u'author': <Author: Author object>, u'name': u'book', u'mentions_persons': [u'1']}
self.assertEqual(data['author'], book.author)
self.assertEqual(data['name'], book.name)
# why aren't they instances ?
self.assertEqual(data['mentions_persons'], [str(p.pk) for p in book.mentions_persons.all()])
def test_save(self):
book = self._make_instance()
form = BookForm(data=self._book_data(book))
saved = form.save()
self.assertTrue(saved.pk is not None)
# def test_save_instance(self):
# book = self._make_instance()
# form = BookForm(instance=book)
# import pdb; pdb.set_trace()
# if form.is_valid():
# saved = form.save()
# else:
# print(form.errors)
# saved = None
# self.assertTrue(saved is not None)
# self.assertEqual(saved.pk, book.pk)
class TestAdmin(TestCase):
def setUp(self):
self.user = User.objects.create_superuser('admin', 'admin@example.com', 'password')
self.client = Client()
ok = self.client.login(username='admin', password='password')
if not ok:
raise Exception("Failed to log in")
class TestBookAdmin(TestAdmin):
"""
Test the admins in tests/admin.py
"""
def test_get_blank(self):
app_label = 'tests'
model = 'book'
response = self.client.get(reverse('admin:%s_%s_add' % (app_label, model)))
content = str(response.content)
# print(content)
self.assertEqual(response.status_code, 200)
self.assertTrue('/static/ajax_select/js/ajax_select.js' in content)
self.assertTrue('autocompleteselectmultiple' in content)
self.assertTrue('autocompleteselect' in content)
self.assertTrue('autocomplete' in content)
self.assertTrue('/admin/tests/author/add/?_popup=1' in content)
self.assertTrue('/admin/tests/person/add/?_popup=1' in content)
class TestAuthorAdmin(TestAdmin):
"""
Test an admin with inlines
"""
def test_get_blank(self):
app_label = 'tests'
model = 'author'
response = self.client.get(reverse('admin:%s_%s_add' % (app_label, model)))
content = str(response.content)
# print(content)
self.assertEqual(response.status_code, 200)
self.assertTrue('book_set-1-mentions_persons' in content)
|