Browse Source

Add dashboard views tests

Denis K 8 years ago
parent
commit
aa03a1e8f0
3 changed files with 53 additions and 3 deletions
  1. 31 0
      jet/tests/dashboard.py
  2. 2 3
      jet/tests/settings.py
  3. 20 0
      jet/tests/test_dashboard.py

+ 31 - 0
jet/tests/dashboard.py

@@ -31,3 +31,34 @@ class TestIndexDashboard(Dashboard):
             column=1,
             order=1
         ))
+
+
+class TestAppIndexDashboard(Dashboard):
+    columns = 3
+    init_with_context_called = False
+
+    class Media:
+        js = ('file.js', 'file2.js')
+        css = ('file.css', 'file2.css')
+
+    def init_with_context(self, context):
+        self.init_with_context_called = True
+        self.available_children.append(modules.LinkList)
+        self.available_children.append(modules.Feed)
+
+        # append a recent actions module
+        self.children.append(modules.RecentActions(
+            'Recent Actions',
+            10,
+            column=0,
+            order=1
+        ))
+
+        # append a feed module
+        self.children.append(modules.Feed(
+            'Latest Django News',
+            feed_url='http://www.djangoproject.com/rss/weblog/',
+            limit=5,
+            column=1,
+            order=1
+        ))

+ 2 - 3
jet/tests/settings.py

@@ -69,6 +69,5 @@ MEDIA_URL = ''
 
 STATIC_URL = '/static/'
 
-
-
-
+JET_INDEX_DASHBOARD = 'jet.tests.dashboard.TestIndexDashboard'
+JET_APP_INDEX_DASHBOARD = 'jet.tests.dashboard.TestAppIndexDashboard'

+ 20 - 0
jet/tests/test_dashboard.py

@@ -1,5 +1,7 @@
 from django.contrib.auth.models import User
+from django.core.urlresolvers import reverse
 from django.test import TestCase, Client
+from jet.dashboard.dashboard import Dashboard
 from jet.dashboard.modules import LinkList, RecentActions
 from jet.dashboard.models import UserDashboardModule
 from jet.tests.dashboard import TestIndexDashboard
@@ -61,5 +63,23 @@ class DashboardTestCase(TestCase):
         self.assertEqual(media.css[0], 'file.css')
         self.assertEqual(media.css[1], 'file2.css')
 
+    def test_index_dashboard_view(self):
+        response = self.admin.get(reverse('admin:index'))
+        self.assertEqual(response.status_code, 200)
+        self.assertTrue('dashboard' in response.context)
 
+        dashboard = response.context['dashboard']
 
+        self.assertIsInstance(dashboard, Dashboard)
+        self.assertIsNone(dashboard.app_label)
+
+    def test_app_index_dashboard_view(self):
+        app_label = 'tests'
+        response = self.admin.get(reverse('admin:app_list', args=(app_label,)))
+        self.assertEqual(response.status_code, 200)
+        self.assertTrue('dashboard' in response.context)
+
+        dashboard = response.context['dashboard']
+
+        self.assertIsInstance(dashboard, Dashboard)
+        self.assertEqual(dashboard.app_label, app_label)