123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240 |
- import json
- from django.core import mail
- from django.contrib.auth.models import User
- from django.test import TestCase, Client, override_settings
- from contribmap.models import Contrib
- from contribmap.forms import PublicContribForm
- class APITestClient(Client):
- def json_get(self, *args, **kwargs):
- """ Annotate the response with a .data containing parsed JSON
- """
- response = super().get(*args, **kwargs)
- response.data = json.loads(response.content.decode('utf-8'))
- return response
- class APITestCase(TestCase):
- def setUp(self):
- super().setUp()
- self.client = APITestClient()
- class TestContrib(TestCase):
- def test_comma_separatedcharfield(self):
- co = Contrib(name='foo', orientations=['SO', 'NE'],
- contrib_type=Contrib.CONTRIB_CONNECT,
- latitude=0.5, longitude=0.5,
- )
- co.save()
- self.assertEqual(
- Contrib.objects.get(name='foo').orientations,
- ['SO', 'NE'])
- co.orientations = ['S']
- co.save()
- class TestContribPrivacy(TestCase):
- def test_always_private_field(self):
- c = Contrib.objects.create(
- name='John',
- phone='010101010101',
- contrib_type=Contrib.CONTRIB_CONNECT,
- latitude=0.5,
- longitude=0.5,
- )
- self.assertEqual(c.get_public_field('phone'), None)
- def test_public_field(self):
- c = Contrib.objects.create(
- name='John',
- phone='010101010101',
- contrib_type=Contrib.CONTRIB_CONNECT,
- privacy_name=True,
- latitude=0.5,
- longitude=0.5,
- )
- self.assertEqual(c.get_public_field('name'), 'John')
- def test_public_callable_field(self):
- c = Contrib.objects.create(
- name='John',
- phone='010101010101',
- orientations=['N'],
- contrib_type=Contrib.CONTRIB_CONNECT,
- privacy_name=True,
- latitude=0.5,
- longitude=0.5,
- )
- self.assertEqual(c.get_public_field('angles'), [[-23, 22]])
- def test_private_field(self):
- c = Contrib.objects.create(
- name='John',
- phone='010101010101',
- contrib_type=Contrib.CONTRIB_CONNECT,
- latitude=0.5,
- longitude=0.5,
- )
- self.assertEqual(c.privacy_name, False)
- self.assertEqual(c.get_public_field('name'), None)
- class TestViews(APITestCase):
- def test_public_json(self):
- response = self.client.json_get('/map/public.json')
- self.assertEqual(response.status_code, 200)
- self.assertEqual(len(response.data['features']), 0)
- Contrib.objects.create(
- name='John',
- phone='010101010101',
- contrib_type=Contrib.CONTRIB_CONNECT,
- privacy_coordinates=True,
- latitude=0.5,
- longitude=0.5,
- )
- response = self.client.json_get('/map/public.json')
- self.assertEqual(response.status_code, 200)
- self.assertEqual(len(response.data['features']), 1)
- def test_private_json(self):
- self.client.force_login(
- User.objects.create(username='foo', is_staff=False))
- response = self.client.get('/map/private.json')
- self.assertEqual(response.status_code, 403)
- def test_private_json_staff(self):
- self.client.force_login(
- User.objects.create(username='foo', is_staff=True))
- response = self.client.get('/map/private.json')
- self.assertEqual(response.status_code, 200)
- @override_settings(NOTIFICATION_EMAILS=['foo@example.com'])
- def test_add_contrib_sends_email(self):
- response = self.client.post('/map/contribute', {
- 'roof': True,
- 'privacy_place_details': True,
- 'privacy_coordinates': True,
- 'phone': '0202020202',
- 'orientations': 'N',
- 'orientations': 'NO',
- 'orientations': 'O',
- 'orientations': 'SO',
- 'orientations': 'S',
- 'orientations': 'SE',
- 'orientations': 'E',
- 'orientations': 'NE',
- 'orientation': 'all',
- 'name': 'JohnCleese',
- 'longitude': -1.553621,
- 'latitude': 47.218371,
- 'floor_total': '2',
- 'floor': 1,
- 'email': 'coucou@example.com',
- 'contrib_type': 'connect',
- 'connect_local': 'on',
- })
- self.assertEqual(response.status_code, 302)
- self.assertEqual(len(mail.outbox), 1)
- self.assertIn('JohnCleese', mail.outbox[0].subject)
- self.assertIn('JohnCleese', mail.outbox[0].body)
- <<<<<<< HEAD
- class TestForms(TestCase):
- valid_data = {
- 'roof': True,
- 'privacy_place_details': True,
- 'privacy_coordinates': True,
- 'orientations': ['N'],
- 'orientation': 'all',
- 'name': 'JohnCleese',
- 'longitude': -1.553621,
- 'email': 'foo@example.com',
- 'phone': '0202020202',
- 'latitude': 47.218371,
- 'floor_total': '2',
- 'floor': 1,
- 'contrib_type': 'connect',
- 'connect_local': 'on',
- }
- def test_contact_validation(self):
- no_contact, phone_contact, email_contact, both_contact = [
- self.valid_data.copy() for i in range(4)]
- del phone_contact['email']
- del email_contact['phone']
- del no_contact['phone']
- del no_contact['email']
- both_contact.update(phone_contact)
- both_contact.update(email_contact)
- self.assertFalse(PublicContribForm(no_contact).is_valid())
- self.assertTrue(PublicContribForm(phone_contact).is_valid())
- self.assertTrue(PublicContribForm(email_contact).is_valid())
- self.assertTrue(PublicContribForm(both_contact).is_valid())
- def test_floors_validation(self):
- invalid_floors = self.valid_data.copy()
- invalid_floors['floor'] = 2
- invalid_floors['floor_total'] = 1
- self.assertFalse(PublicContribForm(invalid_floors).is_valid())
- self.assertTrue(PublicContribForm(self.valid_data).is_valid())
- invalid_floors['floor'] = None
- invalid_floors['floor_total'] = None
- self.assertTrue(PublicContribForm(invalid_floors).is_valid())
- def test_share_fields_validation(self):
- data = self.valid_data.copy()
- data['contrib_type'] = 'share'
- self.assertFalse(PublicContribForm(data).is_valid())
- data['access_type'] = 'cable'
- self.assertTrue(PublicContribForm(data).is_valid())
- @override_settings(NOTIFICATION_EMAILS=['foo@example.com'])
- def test_add_contrib_like_a_robot(self):
- response = self.client.post('/map/contribute', {
- 'roof': True,
- 'human_field': 'should not have no value',
- 'privacy_place_details': True,
- 'privacy_coordinates': True,
- 'phone': '0202020202',
- 'orientations': 'N',
- 'orientations': 'NO',
- 'orientations': 'O',
- 'orientations': 'SO',
- 'orientations': 'S',
- 'orientations': 'SE',
- 'orientations': 'E',
- 'orientations': 'NE',
- 'orientation': 'all',
- 'name': 'JohnCleese',
- 'longitude': -1.553621,
- 'latitude': 47.218371,
- 'floor_total': '2',
- 'floor': 1,
- 'email': 'coucou@example.com',
- 'contrib_type': 'connect',
- 'connect_local': 'on',
- })
- self.assertEqual(response.status_code, 403)
- self.assertEqual(len(mail.outbox), 0)
- class TestDataImport(TestCase):
- fixtures = ['bottle_data.yaml']
- def test_re_save(self):
- for contrib in Contrib.objects.all():
- contrib.full_clean()
- contrib.save()
|