|
@@ -62,10 +62,11 @@ class VPSTestCase(TestCase):
|
|
|
vps.delete()
|
|
|
Member.objects.get().delete()
|
|
|
|
|
|
- @skipUnless(USING_POSTGRES, "Using a postgresql-only field")
|
|
|
- def test_has_ipv4_endpoint(self):
|
|
|
- vps = VPSConfiguration.objects.all()[0]
|
|
|
- self.assertIsNotNone(vps.ipv4_endpoint)
|
|
|
+# ljf 2018-08-18 : I comment this tests which works only with the ip pool
|
|
|
+# @skipUnless(USING_POSTGRES, "Using a postgresql-only field")
|
|
|
+# def test_has_ipv4_endpoint(self):
|
|
|
+# vps = VPSConfiguration.objects.all()[0]
|
|
|
+# self.assertIsNotNone(vps.ipv4_endpoint)
|
|
|
|
|
|
@skipUnless(USING_POSTGRES, "Using a postgresql-only field")
|
|
|
def test_has_correct_ipv4_endpoint(self):
|
|
@@ -75,10 +76,12 @@ class VPSTestCase(TestCase):
|
|
|
subnet = vps.ip_subnet.get(ip_pool=self.v4_pool)
|
|
|
self.assertIn(vps.ipv4_endpoint, subnet.inet)
|
|
|
|
|
|
- @skipUnless(USING_POSTGRES, "Using a postgresql-only field")
|
|
|
- def test_has_ipv6_endpoint(self):
|
|
|
- vps = VPSConfiguration.objects.all()[0]
|
|
|
- self.assertIsNotNone(vps.ipv6_endpoint)
|
|
|
+# ljf 2018-08-18 : I comment this tests which works only with the ip pool
|
|
|
+# improvement in arnprod branch
|
|
|
+# @skipUnless(USING_POSTGRES, "Using a postgresql-only field")
|
|
|
+# def test_has_ipv6_endpoint(self):
|
|
|
+# vps = VPSConfiguration.objects.all()[0]
|
|
|
+# self.assertIsNotNone(vps.ipv6_endpoint)
|
|
|
|
|
|
@skipUnless(USING_POSTGRES, "Using a postgresql-only field")
|
|
|
def test_has_correct_ipv6_endpoint(self):
|
|
@@ -106,11 +109,6 @@ class VPSTestCase(TestCase):
|
|
|
subnet.save()
|
|
|
self.test_has_correct_ipv6_endpoint()
|
|
|
|
|
|
- def test_automatic_login(self):
|
|
|
- vps = VPSConfiguration.objects.all()[0]
|
|
|
- expected_login = vps.offersubscription.member.username + "-vps1"
|
|
|
- self.assertEqual(vps.login, expected_login)
|
|
|
-
|
|
|
def test_has_multiple_vps(self):
|
|
|
vpss = VPSConfiguration.objects.all()
|
|
|
self.assertEqual(len(vpss), 6)
|