tests.py 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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 VPSConfiguration
  11. """ BIG FAT WARNING
  12. Ce code requiert une sévère factorisation avec vpn/tests.py et housing/tests.py
  13. """
  14. USING_POSTGRES = (settings.DATABASES['default']['ENGINE']
  15. ==
  16. 'django.db.backends.postgresql_psycopg2')
  17. class VPSTestCase(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="VPSConfiguration")[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 VPS 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. vps = VPSConfiguration(offersubscription=abo)
  34. vps.full_clean()
  35. vps.save()
  36. v6 = IPSubnet(ip_pool=self.v6_pool, configuration=vps)
  37. v6.full_clean()
  38. v6.save()
  39. v4 = IPSubnet(ip_pool=self.v4_pool, configuration=vps)
  40. v4.full_clean()
  41. v4.save()
  42. # Create additional VPS, 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. vps = VPSConfiguration(offersubscription=abo)
  49. vps.full_clean()
  50. vps.save()
  51. def tearDown(self):
  52. """Properly clean up objects, so that they don't stay in LDAP"""
  53. for vps in VPSConfiguration.objects.all():
  54. vps.delete()
  55. Member.objects.get().delete()
  56. # ljf 2018-08-18 : I comment this tests which works only with the ip pool
  57. # @skipUnless(USING_POSTGRES, "Using a postgresql-only field")
  58. # def test_has_ipv4_endpoint(self):
  59. # vps = VPSConfiguration.objects.all()[0]
  60. # self.assertIsNotNone(vps.ipv4_endpoint)
  61. @skipUnless(USING_POSTGRES, "Using a postgresql-only field")
  62. def test_has_correct_ipv4_endpoint(self):
  63. """If there is not endpoint, we consider it to be correct."""
  64. vps = VPSConfiguration.objects.all()[0]
  65. if vps.ipv4_endpoint is not None:
  66. subnet = vps.ip_subnet.get(ip_pool=self.v4_pool)
  67. self.assertIn(vps.ipv4_endpoint, subnet.inet)
  68. # ljf 2018-08-18 : I comment this tests which works only with the ip pool
  69. # improvement in arnprod branch
  70. # @skipUnless(USING_POSTGRES, "Using a postgresql-only field")
  71. # def test_has_ipv6_endpoint(self):
  72. # vps = VPSConfiguration.objects.all()[0]
  73. # self.assertIsNotNone(vps.ipv6_endpoint)
  74. @skipUnless(USING_POSTGRES, "Using a postgresql-only field")
  75. def test_has_correct_ipv6_endpoint(self):
  76. """If there is not endpoint, we consider it to be correct."""
  77. vps = VPSConfiguration.objects.all()[0]
  78. if vps.ipv6_endpoint is not None:
  79. subnet = vps.ip_subnet.get(ip_pool=self.v6_pool)
  80. self.assertIn(vps.ipv6_endpoint, subnet.inet)
  81. @skipUnless(USING_POSTGRES, "Using a postgresql-only field")
  82. def test_change_v4subnet_is_vps_endpoint_correct(self):
  83. vps = VPSConfiguration.objects.all()[0]
  84. subnet = vps.ip_subnet.get(ip_pool=self.v4_pool)
  85. subnet.inet = "192.168.42.42/31"
  86. subnet.full_clean()
  87. subnet.save()
  88. self.test_has_correct_ipv4_endpoint()
  89. @skipUnless(USING_POSTGRES, "Using a postgresql-only field")
  90. def test_change_v6subnet_is_vps_endpoint_correct(self):
  91. vps = VPSConfiguration.objects.all()[0]
  92. subnet = vps.ip_subnet.get(ip_pool=self.v6_pool)
  93. subnet.inet = "2001:db8:4242:4200::/56"
  94. subnet.full_clean()
  95. subnet.save()
  96. self.test_has_correct_ipv6_endpoint()
  97. def test_has_multiple_vps(self):
  98. vpss = VPSConfiguration.objects.all()
  99. self.assertEqual(len(vpss), 6)