Mercurial > public > sg101
annotate bio/tests/test_forms.py @ 821:71db8076dc3d
Bandmap WIP: geocoding integrated with add form.
Add form works. Before submitting the form, client side JS makes
a geocode request to Google and populates hidden lat/lon fields
with the result. Successfully created a model instance on the
server side.
Still need to update admin dashboard, admin approval, and give
out badges for adding bands to the map. Once that is done, then
work on displaying the map with filtering.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 23 Sep 2014 20:40:31 -0500 |
parents | 8789299c75b1 |
children | 164a39d985ef |
rev | line source |
---|---|
bgneal@612 | 1 """ |
bgneal@612 | 2 Form tests for the bio application. |
bgneal@612 | 3 |
bgneal@612 | 4 """ |
bgneal@612 | 5 from django.test import TestCase |
bgneal@612 | 6 |
bgneal@612 | 7 from bio.forms import EditUserProfileForm |
bgneal@612 | 8 |
bgneal@612 | 9 |
bgneal@612 | 10 class EditUserProfileFormTestCase(TestCase): |
bgneal@612 | 11 |
bgneal@612 | 12 def test_valid_timezone(self): |
bgneal@744 | 13 |
bgneal@612 | 14 post_data = {'time_zone': 'US/Central'} |
bgneal@612 | 15 form = EditUserProfileForm(post_data) |
bgneal@612 | 16 self.assertTrue(form.is_valid()) |
bgneal@612 | 17 |
bgneal@612 | 18 def test_invalid_timezone(self): |
bgneal@744 | 19 |
bgneal@612 | 20 post_data = {'time_zone': u'Am\xe9rica/Argentina_/_Buenos_Aires'} |
bgneal@612 | 21 form = EditUserProfileForm(post_data) |
bgneal@612 | 22 self.assertFalse(form.is_valid()) |
bgneal@612 | 23 |
bgneal@612 | 24 def test_blank_timezone(self): |
bgneal@744 | 25 |
bgneal@612 | 26 form = EditUserProfileForm({}) |
bgneal@612 | 27 self.assertTrue(form.is_valid()) |
bgneal@612 | 28 |