2010-10-12 08:55:31 +08:00
|
|
|
from django.test import TestCase
|
2011-10-14 02:04:12 +08:00
|
|
|
|
|
|
|
from .models import Person
|
|
|
|
|
2010-10-12 08:55:31 +08:00
|
|
|
|
|
|
|
class PropertyTests(TestCase):
|
2018-11-24 09:59:38 +08:00
|
|
|
@classmethod
|
|
|
|
def setUpTestData(cls):
|
2018-11-24 19:28:28 +08:00
|
|
|
cls.a = Person.objects.create(first_name="John", last_name="Lennon")
|
2010-10-12 08:55:31 +08:00
|
|
|
|
|
|
|
def test_getter(self):
|
|
|
|
self.assertEqual(self.a.full_name, "John Lennon")
|
|
|
|
|
|
|
|
def test_setter(self):
|
|
|
|
# The "full_name" property hasn't provided a "set" method.
|
2016-01-17 19:26:39 +08:00
|
|
|
with self.assertRaises(AttributeError):
|
|
|
|
setattr(self.a, "full_name", "Paul McCartney")
|
2010-10-12 08:55:31 +08:00
|
|
|
|
2016-01-22 00:49:40 +08:00
|
|
|
# And cannot be used to initialize the class.
|
2021-12-13 23:44:07 +08:00
|
|
|
with self.assertRaises(AttributeError):
|
2016-01-22 00:49:40 +08:00
|
|
|
Person(full_name="Paul McCartney")
|
|
|
|
|
2013-11-15 21:23:10 +08:00
|
|
|
# But "full_name_2" has, and it can be used to initialize the class.
|
2013-11-04 02:17:58 +08:00
|
|
|
a2 = Person(full_name_2="Paul McCartney")
|
2010-10-12 08:55:31 +08:00
|
|
|
a2.save()
|
|
|
|
self.assertEqual(a2.first_name, "Paul")
|