1
- from urllib . parse import parse_qs
1
+ from unittest . mock import patch
2
2
3
3
from django .conf import settings
4
4
from django .db .utils import IntegrityError
5
- from django .template import Context
6
- from django .test import TestCase , RequestFactory
5
+ from django .test import TestCase
7
6
from django .urls import reverse
7
+ from iogt_users .factories import GroupFactory , UserFactory
8
8
from rest_framework import status
9
9
from wagtail .models import PageViewRestriction , Site
10
- from unittest . mock import patch
10
+ from wagtail_factories import SiteFactory
11
11
12
- from home .models import SVGToPNGMap
13
- from home .templatetags .generic_components import google_analytics
14
- from iogt_users .factories import UserFactory , GroupFactory
15
12
from home .factories import ArticleFactory , HomePageFactory
16
- from wagtail_factories import SiteFactory
13
+ from home . models import SVGToPNGMap
17
14
18
15
19
16
class PageViewGroupPermissionTests (TestCase ):
20
17
def setUp (self ):
21
18
self .user = UserFactory ()
22
19
23
20
Site .objects .all ().delete ()
24
- self .site = SiteFactory (site_name = ' IoGT' , port = 8000 , is_default_site = True )
21
+ self .site = SiteFactory (site_name = " IoGT" , port = 8000 , is_default_site = True )
25
22
self .home_page = HomePageFactory (parent = self .site .root_page )
26
23
27
24
self .group_restricted_article = ArticleFactory (parent = self .home_page )
28
25
view_restriction = PageViewRestriction .objects .create (
29
- page = self .group_restricted_article , restriction_type = PageViewRestriction .GROUPS )
26
+ page = self .group_restricted_article ,
27
+ restriction_type = PageViewRestriction .GROUPS ,
28
+ )
30
29
31
- self .allowed_group = GroupFactory (name = ' Allowed group' )
30
+ self .allowed_group = GroupFactory (name = " Allowed group" )
32
31
view_restriction .groups .add (self .allowed_group )
33
32
34
33
def test_group_limited_article_without_login_redirects_to_login_page (self ):
35
34
response = self .client .get (self .group_restricted_article .url )
36
35
self .assertEqual (response .status_code , status .HTTP_302_FOUND )
37
36
self .assertEqual (
38
- f'{ reverse ("account_login" )} ?next={ self .group_restricted_article .url } ' , response .url )
37
+ f'{ reverse ("account_login" )} ?next={ self .group_restricted_article .url } ' ,
38
+ response .url ,
39
+ )
39
40
40
41
def test_group_limited_article_without_group_returns_403 (self ):
41
- self .client .login (username = self .user .username , password = ' test@123' )
42
+ self .client .login (username = self .user .username , password = " test@123" )
42
43
response = self .client .get (self .group_restricted_article .url )
43
44
self .assertEqual (response .status_code , status .HTTP_403_FORBIDDEN )
44
45
45
46
def test_group_limited_article_with_group_user_returns_200 (self ):
46
47
self .user .groups .add (self .allowed_group )
47
- self .client .login (username = self .user .username , password = ' test@123' )
48
+ self .client .login (username = self .user .username , password = " test@123" )
48
49
response = self .client .get (self .group_restricted_article .url )
49
50
self .assertEqual (response .status_code , status .HTTP_200_OK )
50
51
51
52
52
53
class SVGToPNGMapTests (TestCase ):
53
54
54
55
def setUp (self ) -> None :
55
- self .svg_path = ' static/icons/search.svg'
56
+ self .svg_path = " static/icons/search.svg"
56
57
57
58
def test_create_png_if_not_found (self ):
58
59
png = SVGToPNGMap .get_png_image (self .svg_path )
59
- expected_path_regex = '' .join ([
60
- settings .MEDIA_ROOT ,
61
- r"/svg-to-png-maps/svg-to-png.*\.png"
62
- ])
60
+ expected_path_regex = "" .join (
61
+ [settings .MEDIA_ROOT , r"/svg-to-png-maps/svg-to-png.*\.png" ]
62
+ )
63
63
self .assertRegex (png .path , expected_path_regex )
64
64
self .assertGreater (png .size , 0 )
65
65
@@ -69,27 +69,25 @@ def test_create_png_if_not_found(self):
69
69
def test_ignore_duplicates (self ):
70
70
png = SVGToPNGMap .get_png_image (self .svg_path )
71
71
duplicate = {
72
- ' svg_path' : self .svg_path ,
73
- ' fill_color' : None ,
74
- ' stroke_color' : None ,
75
- ' png_image_file' : png
72
+ " svg_path" : self .svg_path ,
73
+ " fill_color" : None ,
74
+ " stroke_color" : None ,
75
+ " png_image_file" : png ,
76
76
}
77
77
SVGToPNGMap .objects .create (** duplicate )
78
78
SVGToPNGMap .objects .create (** duplicate )
79
79
count = SVGToPNGMap .objects .filter (
80
- svg_path = self .svg_path ,
81
- fill_color = None ,
82
- stroke_color = None
80
+ svg_path = self .svg_path , fill_color = None , stroke_color = None
83
81
).count ()
84
82
self .assertEquals (count , 2 )
85
83
png_2 = SVGToPNGMap .get_png_image (self .svg_path , None , None )
86
84
self .assertEquals (png , png_2 )
87
85
88
- @patch .object (SVGToPNGMap , ' create' )
86
+ @patch .object (SVGToPNGMap , " create" )
89
87
def test_get_png_must_not_fail (self , create ):
90
- create .side_effect = Exception (' boom' )
91
- png = SVGToPNGMap .get_png_image (self .svg_path )
92
- self .assertIsNone (png )
88
+ create .side_effect = Exception (" boom" )
89
+ png = SVGToPNGMap .get_png_image (self .svg_path )
90
+ self .assertIsNone (png )
93
91
94
92
def test_uniqueness_unspecified_stroke_and_fill (self ):
95
93
SVGToPNGMap .create (self .svg_path )
@@ -102,87 +100,16 @@ def test_uniqueness_no_stroke_and_fill(self):
102
100
SVGToPNGMap .create (self .svg_path , None , None )
103
101
104
102
def test_uniqueness_fill_no_stroke (self ):
105
- SVGToPNGMap .create (
106
- self .svg_path ,
107
- fill_color = '#a1b2c3' ,
108
- stroke_color = None
109
- )
103
+ SVGToPNGMap .create (self .svg_path , fill_color = "#a1b2c3" , stroke_color = None )
110
104
with self .assertRaises (IntegrityError ):
111
- SVGToPNGMap .create (
112
- self .svg_path ,
113
- fill_color = '#a1b2c3' ,
114
- stroke_color = None
115
- )
105
+ SVGToPNGMap .create (self .svg_path , fill_color = "#a1b2c3" , stroke_color = None )
116
106
117
107
def test_uniqueness_stroke_no_fill (self ):
118
- SVGToPNGMap .create (self .svg_path , fill_color = None , stroke_color = ' #fff' )
108
+ SVGToPNGMap .create (self .svg_path , fill_color = None , stroke_color = " #fff" )
119
109
with self .assertRaises (IntegrityError ):
120
- SVGToPNGMap .create (
121
- self .svg_path ,
122
- fill_color = None ,
123
- stroke_color = '#fff'
124
- )
110
+ SVGToPNGMap .create (self .svg_path , fill_color = None , stroke_color = "#fff" )
125
111
126
112
def test_uniqueness_stroke_and_fill (self ):
127
- SVGToPNGMap .create (
128
- self .svg_path ,
129
- fill_color = '#555' ,
130
- stroke_color = '#666'
131
- )
113
+ SVGToPNGMap .create (self .svg_path , fill_color = "#555" , stroke_color = "#666" )
132
114
with self .assertRaises (IntegrityError ):
133
- SVGToPNGMap .create (
134
- self .svg_path ,
135
- fill_color = '#555' ,
136
- stroke_color = '#666'
137
- )
138
-
139
-
140
- class GoogleAnalyticsTagsTestCase (TestCase ):
141
- def setUp (self ):
142
- self .request_factory = RequestFactory ()
143
-
144
- def test_query_param_without_value (self ):
145
- request = self .request_factory .get ('/en/?test' )
146
- context = Context ({'request' : request })
147
-
148
- rendered_template = google_analytics (context , tracking_code = 'my-code' )
149
-
150
- parsed_qs = parse_qs (rendered_template )
151
- self .assertEqual (parsed_qs ['tracking_code' ][0 ], "my-code" )
152
- self .assertEqual (parsed_qs ['p' ][0 ], "/en/?test=" )
153
-
154
- def test_query_param_with_value (self ):
155
- request = self .request_factory .get ('/en/?test=abc' )
156
- context = Context ({'request' : request })
157
-
158
- rendered_template = google_analytics (context , tracking_code = 'my-code' )
159
-
160
- parsed_qs = parse_qs (rendered_template )
161
- self .assertEqual (parsed_qs ['tracking_code' ][0 ], "my-code" )
162
- self .assertEqual (parsed_qs ['p' ][0 ], "/en/?test=abc" )
163
-
164
- def test_query_param_with_multiple_values_with_same_key (self ):
165
- request = self .request_factory .get ('/en/?test=abc&test=xyz' )
166
- context = Context ({'request' : request })
167
-
168
- rendered_template = google_analytics (context , tracking_code = 'my-code' )
169
-
170
- parsed_qs = parse_qs (rendered_template )
171
- self .assertEqual (parsed_qs ['tracking_code' ][0 ], "my-code" )
172
- self .assertEqual (parsed_qs ['p' ][0 ], "/en/?test=abc&test=xyz" )
173
-
174
- def test_query_param_with_utm (self ):
175
- request = self .request_factory .get (
176
- '/en/?utm_content=content&utm_term=term&utm_source=source&utm_medium=medium&utm_campaign=campaign' )
177
- context = Context ({'request' : request })
178
-
179
- rendered_template = google_analytics (context , tracking_code = 'my-code' )
180
-
181
- parsed_qs = parse_qs (rendered_template )
182
- self .assertEqual (parsed_qs ['tracking_code' ][0 ], "my-code" )
183
- self .assertEqual (parsed_qs ['p' ][0 ], "/en/" )
184
- self .assertEqual (parsed_qs ['utm_content' ][0 ], "content" )
185
- self .assertEqual (parsed_qs ['utm_term' ][0 ], "term" )
186
- self .assertEqual (parsed_qs ['utm_source' ][0 ], "source" )
187
- self .assertEqual (parsed_qs ['utm_medium' ][0 ], "medium" )
188
- self .assertEqual (parsed_qs ['utm_campaign' ][0 ], "campaign" )
115
+ SVGToPNGMap .create (self .svg_path , fill_color = "#555" , stroke_color = "#666" )
0 commit comments