aboutsummaryrefslogtreecommitdiffstats
path: root/src/dashboard/tests/test_views.py
diff options
context:
space:
mode:
authorParker Berberian <pberberian@iol.unh.edu>2020-03-16 17:54:09 +0000
committerGerrit Code Review <gerrit@opnfv.org>2020-03-16 17:54:09 +0000
commit0db3a84d9d9ed213983a517efd35c339537ef472 (patch)
treea6d7ac7ba2f2d70e18cb984bda4020c736082c62 /src/dashboard/tests/test_views.py
parent176ec9aacbc87e6077e8807c60f95a1ccbbc26e3 (diff)
parent064f145f218385a6401fa6be2ccbbc462e915c26 (diff)
Merge "Test resource templates now use the same lab as the image generated alongside it."
Diffstat (limited to 'src/dashboard/tests/test_views.py')
-rw-r--r--src/dashboard/tests/test_views.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/dashboard/tests/test_views.py b/src/dashboard/tests/test_views.py
new file mode 100644
index 0000000..f2d5490
--- /dev/null
+++ b/src/dashboard/tests/test_views.py
@@ -0,0 +1,30 @@
+##############################################################################
+# Copyright (c) 2020 Parker Berberian, Sawyer Bergeron, and others.
+#
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Apache License, Version 2.0
+# which accompanies this distribution, and is available at
+# http://www.apache.org/licenses/LICENSE-2.0
+##############################################################################
+
+from django.test import TestCase, Client
+from dashboard.testing_utils import make_lab
+
+
+class DashboardViewTestCase(TestCase):
+ @classmethod
+ def setUpTestData(cls):
+ make_lab(name="TestLab")
+ cls.client = Client()
+
+ def test_landing_view_anon(self):
+ response = self.client.get('/')
+ self.assertEqual(response.status_code, 200)
+
+ def test_lab_list_view(self):
+ response = self.client.get('/lab/')
+ self.assertEqual(response.status_code, 200)
+
+ def test_lab_detail_view(self):
+ response = self.client.get('/lab/TestLab/')
+ self.assertEqual(response.status_code, 200)