-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathtest_request.py
More file actions
93 lines (82 loc) · 3.75 KB
/
Copy pathtest_request.py
File metadata and controls
93 lines (82 loc) · 3.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
from django.http import QueryDict
from ..base import BaseTestCase
class RequestPanelTestCase(BaseTestCase):
panel_id = "RequestPanel"
def test_non_ascii_session(self):
self.request.session = {"où": "où"}
response = self.panel.process_request(self.request)
self.panel.generate_stats(self.request, response)
self.assertIn("où", self.panel.content)
def test_object_with_non_ascii_repr_in_request_params(self):
self.request.path = "/non_ascii_request/"
response = self.panel.process_request(self.request)
self.panel.generate_stats(self.request, response)
self.assertIn("nôt åscíì", self.panel.content)
def test_insert_content(self):
"""
Test that the panel only inserts content after generate_stats and
not the process_request.
"""
self.request.path = "/non_ascii_request/"
response = self.panel.process_request(self.request)
# ensure the panel does not have content yet.
self.assertNotIn("nôt åscíì", self.panel.content)
self.panel.generate_stats(self.request, response)
# ensure the panel renders correctly.
content = self.panel.content
self.assertIn("nôt åscíì", content)
self.assertValidHTML(content)
def test_query_dict_for_request_in_method_get(self):
"""
Test verifies the correctness of the statistics generation method
in the case when the GET request is class QueryDict
"""
self.request.GET = QueryDict("foo=bar")
response = self.panel.process_request(self.request)
self.panel.generate_stats(self.request, response)
# ensure the panel GET request data is processed correctly.
content = self.panel.content
self.assertIn("foo", content)
self.assertIn("bar", content)
def test_dict_for_request_in_method_get(self):
"""
Test verifies the correctness of the statistics generation method
in the case when the GET request is class Dict
"""
self.request.GET = {"foo": "bar"}
response = self.panel.process_request(self.request)
self.panel.generate_stats(self.request, response)
# ensure the panel GET request data is processed correctly.
content = self.panel.content
self.assertIn("foo", content)
self.assertIn("bar", content)
def test_query_dict_for_request_in_method_post(self):
"""
Test verifies the correctness of the statistics generation method
in the case when the POST request is class QueryDict
"""
self.request.POST = QueryDict("foo=bar")
response = self.panel.process_request(self.request)
self.panel.generate_stats(self.request, response)
# ensure the panel POST request data is processed correctly.
content = self.panel.content
self.assertIn("foo", content)
self.assertIn("bar", content)
def test_dict_for_request_in_method_post(self):
"""
Test verifies the correctness of the statistics generation method
in the case when the POST request is class Dict
"""
self.request.POST = {"foo": "bar"}
response = self.panel.process_request(self.request)
self.panel.generate_stats(self.request, response)
# ensure the panel POST request data is processed correctly.
content = self.panel.content
self.assertIn("foo", content)
self.assertIn("bar", content)
def test_namespaced_url(self):
self.request.path = "/admin/login/"
response = self.panel.process_request(self.request)
self.panel.generate_stats(self.request, response)
panel_stats = self.panel.get_stats()
self.assertEqual(panel_stats["view_urlname"], "admin:login")