tests.py 4.6 KB

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