tests.py 4.8 KB

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