Esempio n. 1
0
 def test_model(self):
     model = TestModel.objects.first()
     ref = ('model', model, 'Model: %s' % TestModel.__name__, Ext.DJANGO, 1)
     self.assertEqual(wrap_context({'model': model}), [ref])
Esempio n. 2
0
 def test_frozenset(self):
     ref = ('frozenset', frozenset([0, 1]), 'frozenset', Ext.ITERABLE, 2)
     self.assertEqual(wrap_context({'frozenset': frozenset([0, 1])}), [ref])
Esempio n. 3
0
 def test_form(self):
     form = TestForm()
     ref = ('form', form, 'Form: %s' % TestForm.__name__, Ext.DJANGO, 1)
     self.assertEqual(wrap_context({'form': form}), [ref])
Esempio n. 4
0
 def test_dict(self):
     ref = ('dict', {'var': None}, 'dict', Ext.ITERABLE, 1)
     self.assertEqual(wrap_context({'dict': {'var': None}}), [ref])
Esempio n. 5
0
 def test_set(self):
     ref = ('set', {0, 1}, 'set', Ext.ITERABLE, 2)
     self.assertEqual(wrap_context({'set': {0, 1}}), [ref])
Esempio n. 6
0
 def test_class(self):
     ref = ('cls', Mock, 'Class: %s' % Mock.__name__, Ext.CLASS, 0)
     self.assertEqual(wrap_context({'cls': Mock}), [ref])
Esempio n. 7
0
 def test_list(self):
     ref = ('list', [0, 1], 'list', Ext.ITERABLE, 2)
     self.assertEqual(wrap_context({'list': [0, 1]}), [ref])
Esempio n. 8
0
 def test_bytearray(self):
     ref = ('bytearray', b'\x00\x01', 'bytearray', Ext.ITERABLE, 2)
     self.assertEqual(wrap_context({'bytearray': bytearray([0, 1])}), [ref])
Esempio n. 9
0
 def test_str(self):
     ref = ('str', 'foo', 'str', Ext.ITERABLE, 3)
     self.assertEqual(wrap_context({'str': 'foo'}), [ref])
Esempio n. 10
0
 def test_bool(self):
     ref = ('bool', True, 'bool', Ext.SIMPLE, 0)
     self.assertEqual(wrap_context({'bool': True}), [ref])
Esempio n. 11
0
 def test_bytes(self):
     ref = ('bytes', b'\x00', 'bytes', Ext.ITERABLE, 1)
     self.assertEqual(wrap_context({'bytes': bytes([0])}), [ref])
Esempio n. 12
0
 def test_complex(self):
     ref = ('complex', 1 + 1j, 'complex', Ext.SIMPLE, 0)
     self.assertEqual(wrap_context({'complex': 1 + 1j}), [ref])
Esempio n. 13
0
 def test_float(self):
     ref = ('float', 0.1, 'float', Ext.SIMPLE, 0)
     self.assertEqual(wrap_context({'float': 0.1}), [ref])
Esempio n. 14
0
 def test_int(self):
     ref = ('int', 1, 'int', Ext.SIMPLE, 0)
     self.assertEqual(wrap_context({'int': 1}), [ref])
Esempio n. 15
0
 def test_queryset(self):
     qs = TestModel.objects.all()[:2]
     ref = ('qs', qs, 'QuerySet: %s' % TestModel.__name__, Ext.DJANGO, 2)
     self.assertEqual(wrap_context({'qs': qs}), [ref])
Esempio n. 16
0
 def test_tuple(self):
     ref = ('tuple', (0, 1), 'tuple', Ext.ITERABLE, 2)
     self.assertEqual(wrap_context({'tuple': (0, 1)}), [ref])
Esempio n. 17
0
 def process_template_response(self, request, response):
     if self.request_id and not request.path.startswith('/admin/'):
         if getattr(response, 'context_data', None):
             self.data[Field.CONTEXT] = wrap_context(response.context_data)
     return response
Esempio n. 18
0
 def test_instance(self):
     i = Mock()
     ref = ('i', i, 'Instance: %s' % i.__class__.__name__, Ext.CLASS, 0)
     self.assertEqual(wrap_context({'i': i}), [ref])