tests.py 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. from unittest import skipUnless
  4. from django.test import TestCase
  5. from django.conf import settings
  6. from coin.offers.models import Offer, OfferSubscription
  7. from coin.resources.models import IPPool, IPSubnet
  8. from coin.members.models import Member
  9. from coin.members.tests import MemberTestsUtils
  10. from .models import HousingConfiguration
  11. USING_POSTGRES = (settings.DATABASES['default']['ENGINE']
  12. ==
  13. 'django.db.backends.postgresql_psycopg2')
  14. """ BIG FAT WARNING
  15. Ce code requiert une sévère factorisation avec vpn/tests.py et vps/tests.py
  16. """
  17. class HousingTestCase(TestCase):
  18. fixtures = ['example_pools.json', 'offers.json']
  19. def setUp(self):
  20. self.v6_pool = IPPool.objects.get(default_subnetsize=56)
  21. self.v4_pool = IPPool.objects.get(default_subnetsize=32)
  22. self.offer = Offer.objects.filter(configuration_type="HousingConfiguration")[0]
  23. # Create a member.
  24. cn = MemberTestsUtils.get_random_username()
  25. self.member = Member.objects.create(first_name=u"Toto",
  26. last_name=u"L'artichaut",
  27. username=cn)
  28. # Create a new Housing with subnets.
  29. # We need Django to call clean() so that magic happens.
  30. abo = OfferSubscription(offer=self.offer, member=self.member)
  31. abo.full_clean()
  32. abo.save()
  33. housing = HousingConfiguration(offersubscription=abo)
  34. housing.full_clean()
  35. housing.save()
  36. v6 = IPSubnet(ip_pool=self.v6_pool, configuration=housing)
  37. v6.full_clean()
  38. v6.save()
  39. v4 = IPSubnet(ip_pool=self.v4_pool, configuration=housing)
  40. v4.full_clean()
  41. v4.save()
  42. # Create additional Housing, they should automatically be attributed a
  43. # new login.
  44. for i in range(5):
  45. abo = OfferSubscription(offer=self.offer, member=self.member)
  46. abo.full_clean()
  47. abo.save()
  48. housing = HousingConfiguration(offersubscription=abo)
  49. housing.full_clean()
  50. housing.save()
  51. def tearDown(self):
  52. """Properly clean up objects, so that they don't stay in LDAP"""
  53. for housing in HousingConfiguration.objects.all():
  54. housing.delete()
  55. Member.objects.get().delete()
  56. @skipUnless(USING_POSTGRES, "Using a postgresql-only field")
  57. def test_has_ipv4_endpoint(self):
  58. housing = HousingConfiguration.objects.all()[0]
  59. self.assertIsNotNone(housing.ipv4_endpoint)
  60. @skipUnless(USING_POSTGRES, "Using a postgresql-only field")
  61. def test_has_correct_ipv4_endpoint(self):
  62. """If there is not endpoint, we consider it to be correct."""
  63. housing = HousingConfiguration.objects.all()[0]
  64. if housing.ipv4_endpoint is not None:
  65. subnet = housing.ip_subnet.get(ip_pool=self.v4_pool)
  66. self.assertIn(housing.ipv4_endpoint, subnet.inet)
  67. @skipUnless(USING_POSTGRES, "Using a postgresql-only field")
  68. def test_has_ipv6_endpoint(self):
  69. housing = HousingConfiguration.objects.all()[0]
  70. self.assertIsNotNone(housing.ipv6_endpoint)
  71. @skipUnless(USING_POSTGRES, "Using a postgresql-only field")
  72. def test_has_correct_ipv6_endpoint(self):
  73. """If there is not endpoint, we consider it to be correct."""
  74. housing = HousingConfiguration.objects.all()[0]
  75. if housing.ipv6_endpoint is not None:
  76. subnet = housing.ip_subnet.get(ip_pool=self.v6_pool)
  77. self.assertIn(housing.ipv6_endpoint, subnet.inet)
  78. @skipUnless(USING_POSTGRES, "Using a postgresql-only field")
  79. def test_change_v4subnet_is_housing_endpoint_correct(self):
  80. housing = HousingConfiguration.objects.all()[0]
  81. subnet = housing.ip_subnet.get(ip_pool=self.v4_pool)
  82. subnet.inet = "192.168.42.42/31"
  83. subnet.full_clean()
  84. subnet.save()
  85. self.test_has_correct_ipv4_endpoint()
  86. @skipUnless(USING_POSTGRES, "Using a postgresql-only field")
  87. def test_change_v6subnet_is_housing_endpoint_correct(self):
  88. housing = HousingConfiguration.objects.all()[0]
  89. subnet = housing.ip_subnet.get(ip_pool=self.v6_pool)
  90. subnet.inet = "2001:db8:4242:4200::/56"
  91. subnet.full_clean()
  92. subnet.save()
  93. self.test_has_correct_ipv6_endpoint()
  94. def test_automatic_login(self):
  95. housing = HousingConfiguration.objects.all()[0]
  96. expected_login = housing.offersubscription.member.username + "-housing1"
  97. self.assertEqual(housing.login, expected_login)
  98. def test_has_multiple_housing(self):
  99. housings = HousingConfiguration.objects.all()
  100. self.assertEqual(len(housings), 6)