tests.py 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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 VPNConfiguration
  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 housing/tests.py et vps/tests.py
  16. """
  17. class VPNTestCase(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="VPNConfiguration")[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 VPN 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. vpn = VPNConfiguration(offersubscription=abo)
  34. vpn.full_clean()
  35. vpn.save()
  36. v6 = IPSubnet(ip_pool=self.v6_pool, configuration=vpn)
  37. v6.full_clean()
  38. v6.save()
  39. v4 = IPSubnet(ip_pool=self.v4_pool, configuration=vpn)
  40. v4.full_clean()
  41. v4.save()
  42. # Create additional VPN, 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. vpn = VPNConfiguration(offersubscription=abo)
  49. vpn.full_clean()
  50. vpn.save()
  51. def tearDown(self):
  52. """Properly clean up objects, so that they don't stay in LDAP"""
  53. for vpn in VPNConfiguration.objects.all():
  54. vpn.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. # vpn = VPNConfiguration.objects.all()[0]
  60. # self.assertIsNotNone(vpn.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. vpn = VPNConfiguration.objects.all()[0]
  65. if vpn.ipv4_endpoint is not None:
  66. subnet = vpn.ip_subnet.get(ip_pool=self.v4_pool)
  67. self.assertIn(vpn.ipv4_endpoint, subnet.inet)
  68. # ljf 2018-08-18 : I comment this tests which works only with the ip pool
  69. # @skipUnless(USING_POSTGRES, "Using a postgresql-only field")
  70. # def test_has_ipv6_endpoint(self):
  71. # vpn = VPNConfiguration.objects.all()[0]
  72. # self.assertIsNotNone(vpn.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. vpn = VPNConfiguration.objects.all()[0]
  77. if vpn.ipv6_endpoint is not None:
  78. subnet = vpn.ip_subnet.get(ip_pool=self.v6_pool)
  79. self.assertIn(vpn.ipv6_endpoint, subnet.inet)
  80. @skipUnless(USING_POSTGRES, "Using a postgresql-only field")
  81. def test_change_v4subnet_is_vpn_endpoint_correct(self):
  82. vpn = VPNConfiguration.objects.all()[0]
  83. subnet = vpn.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_vpn_endpoint_correct(self):
  90. vpn = VPNConfiguration.objects.all()[0]
  91. subnet = vpn.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. vpn = VPNConfiguration.objects.all()[0]
  98. expected_login = vpn.offersubscription.member.username + "-vpn1"
  99. self.assertEqual(vpn.login, expected_login)
  100. def test_has_multiple_vpn(self):
  101. vpns = VPNConfiguration.objects.all()
  102. self.assertEqual(len(vpns), 6)