tests.py 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. from django.test import TestCase
  4. from coin.offers.models import Offer, OfferSubscription
  5. from coin.resources.models import IPPool, IPSubnet
  6. from coin.members.models import Member
  7. from coin.members.tests import MemberTestsUtils
  8. from .models import VPNConfiguration
  9. class VPNTestCase(TestCase):
  10. fixtures = ['example_pools.json', 'offers.json']
  11. def setUp(self):
  12. self.v6_pool = IPPool.objects.get(default_subnetsize=56)
  13. self.v4_pool = IPPool.objects.get(default_subnetsize=32)
  14. self.offer = Offer.objects.filter(configuration_type="VPNConfiguration")[0]
  15. # Create a member.
  16. cn = MemberTestsUtils.get_random_username()
  17. self.member = Member.objects.create(first_name=u"Toto",
  18. last_name=u"L'artichaut",
  19. username=cn)
  20. # Create a new VPN with subnets.
  21. # We need Django to call clean() so that magic happens.
  22. abo = OfferSubscription(offer=self.offer, member=self.member)
  23. abo.full_clean()
  24. abo.save()
  25. vpn = VPNConfiguration(offersubscription=abo)
  26. vpn.full_clean()
  27. vpn.save()
  28. v6 = IPSubnet(ip_pool=self.v6_pool, configuration=vpn)
  29. v6.full_clean()
  30. v6.save()
  31. v4 = IPSubnet(ip_pool=self.v4_pool, configuration=vpn)
  32. v4.full_clean()
  33. v4.save()
  34. # Create additional VPN, they should automatically be attributed a
  35. # new login.
  36. for i in range(5):
  37. abo = OfferSubscription(offer=self.offer, member=self.member)
  38. abo.full_clean()
  39. abo.save()
  40. vpn = VPNConfiguration(offersubscription=abo)
  41. vpn.full_clean()
  42. vpn.save()
  43. def tearDown(self):
  44. """Properly clean up objects, so that they don't stay in LDAP"""
  45. for vpn in VPNConfiguration.objects.all():
  46. vpn.delete()
  47. Member.objects.get().delete()
  48. def test_has_ipv4_endpoint(self):
  49. vpn = VPNConfiguration.objects.all()[0]
  50. self.assertIsNotNone(vpn.ipv4_endpoint)
  51. def test_has_correct_ipv4_endpoint(self):
  52. """If there is not endpoint, we consider it to be correct."""
  53. vpn = VPNConfiguration.objects.all()[0]
  54. if vpn.ipv4_endpoint is not None:
  55. subnet = vpn.ip_subnet.get(ip_pool=self.v4_pool)
  56. self.assertIn(vpn.ipv4_endpoint, subnet.inet)
  57. def test_has_ipv6_endpoint(self):
  58. vpn = VPNConfiguration.objects.all()[0]
  59. self.assertIsNotNone(vpn.ipv6_endpoint)
  60. def test_has_correct_ipv6_endpoint(self):
  61. """If there is not endpoint, we consider it to be correct."""
  62. vpn = VPNConfiguration.objects.all()[0]
  63. if vpn.ipv6_endpoint is not None:
  64. subnet = vpn.ip_subnet.get(ip_pool=self.v6_pool)
  65. self.assertIn(vpn.ipv6_endpoint, subnet.inet)
  66. def test_change_v4subnet_is_vpn_endpoint_correct(self):
  67. vpn = VPNConfiguration.objects.all()[0]
  68. subnet = vpn.ip_subnet.get(ip_pool=self.v4_pool)
  69. subnet.inet = "192.168.42.42/31"
  70. subnet.full_clean()
  71. subnet.save()
  72. self.test_has_correct_ipv4_endpoint()
  73. def test_change_v6subnet_is_vpn_endpoint_correct(self):
  74. vpn = VPNConfiguration.objects.all()[0]
  75. subnet = vpn.ip_subnet.get(ip_pool=self.v6_pool)
  76. subnet.inet = "2001:db8:4242:4200::/56"
  77. subnet.full_clean()
  78. subnet.save()
  79. self.test_has_correct_ipv6_endpoint()
  80. def test_automatic_login(self):
  81. vpn = VPNConfiguration.objects.all()[0]
  82. expected_login = vpn.offersubscription.member.username + "-vpn1"
  83. self.assertEqual(vpn.login, expected_login)
  84. def test_has_multiple_vpn(self):
  85. vpns = VPNConfiguration.objects.all()
  86. self.assertEqual(len(vpns), 6)