4
4
from django .urls import reverse
5
5
from rest_framework import status
6
6
from wagtail .core .models import Site
7
+ from wagtail .core .rich_text import RichText
7
8
from wagtail_factories import ImageFactory , SiteFactory
8
- from wagtail .images .models import Image
9
9
10
10
from home .factories import (
11
- SectionFactory ,
12
11
ArticleFactory ,
13
12
HomePageFactory ,
14
- SVGToPNGMapFactory ,
15
13
LocaleFactory ,
14
+ MediaFactory ,
15
+ MiscellaneousIndexPageFactory ,
16
16
OfflineContentIndexPageFactory ,
17
- MiscellaneousIndexPageFactory
17
+ SectionFactory ,
18
+ SVGToPNGMapFactory ,
18
19
)
19
20
from iogt .utils import has_md5_hash
20
21
@@ -33,12 +34,11 @@ def setUp(self):
33
34
self .en_offline_content_index_page = OfflineContentIndexPageFactory (parent = self .en_miscellaneous_index_page )
34
35
self .ar_offline_content_index_page = OfflineContentIndexPageFactory (parent = self .ar_miscellaneous_index_page )
35
36
self .section = SectionFactory (parent = self .en_home_page )
36
- self .article = ArticleFactory (parent = self .en_home_page , body = [("image" , ImageFactory ())])
37
- self .section_lead_image_rendition = self .section .lead_image .get_rendition ('fill-360x360' )
38
- self .article_lead_image_rendition = self .article .lead_image .get_rendition ('fill-360x360' )
39
- self .article_body_image_rendition = Image .objects .get (
40
- id = self .article .body .raw_data [0 ]['value' ]).get_rendition ('fill-360x360' )
41
- self .svg_to_png_map = SVGToPNGMapFactory ()
37
+ self .article = ArticleFactory (
38
+ parent = self .en_home_page ,
39
+ body = [("image" , ImageFactory ()),
40
+ ("media" , MediaFactory (type = 'video' )),
41
+ ("media" , MediaFactory (type = 'audio' ))])
42
42
43
43
def test_root_page_is_returned (self ):
44
44
response = self .client .get (reverse (self .url_name , kwargs = {'page_id' : self .en_home_page .id }))
@@ -54,13 +54,45 @@ def test_descendants_are_returned(self):
54
54
self .assertIn (self .article .url , response .data )
55
55
56
56
def test_images_are_returned (self ):
57
- response = self .client .get (reverse (self .url_name , kwargs = {'page_id' : self .en_home_page .id }))
57
+ svg_to_png_map = SVGToPNGMapFactory ()
58
+ section_lead_image = get_rendition (self .section .lead_image )
59
+ article_lead_image = get_rendition (self .article .lead_image )
60
+ body_image = get_rendition (self .article .body [0 ].value )
61
+
62
+ response = self .client .get (
63
+ reverse (self .url_name , kwargs = {'page_id' : self .en_home_page .id })
64
+ )
58
65
59
66
self .assertEqual (response .status_code , status .HTTP_200_OK )
60
- self .assertIn (self .section_lead_image_rendition .url , response .data )
61
- self .assertIn (self .article_lead_image_rendition .url , response .data )
62
- self .assertIn (self .article_body_image_rendition .url , response .data )
63
- self .assertIn (self .svg_to_png_map .url , response .data )
67
+ self .assertIn (section_lead_image .url , response .data )
68
+ self .assertIn (article_lead_image .url , response .data )
69
+ self .assertIn (body_image .url , response .data )
70
+ self .assertIn (svg_to_png_map .url , response .data )
71
+
72
+ def test_media_are_returned (self ):
73
+ response = self .client .get (
74
+ reverse (self .url_name , kwargs = {'page_id' : self .en_home_page .id })
75
+ )
76
+
77
+ self .assertEqual (response .status_code , status .HTTP_200_OK )
78
+ self .assertIn (self .article .body [1 ].value .url , response .data )
79
+ self .assertIn (self .article .body [2 ].value .url , response .data )
80
+
81
+ def test_image_urls_extracted_from_rich_text (self ):
82
+ image = ImageFactory ()
83
+ source = f'<embed embedtype="image" format="left" id="{ image .id } "/>'
84
+ ArticleFactory (
85
+ parent = self .en_home_page ,
86
+ body = [('paragraph' , RichText (source ))]
87
+ )
88
+ response = self .client .get (
89
+ reverse (self .url_name , kwargs = {'page_id' : self .en_home_page .id })
90
+ )
91
+ self .assertEqual (response .status_code , status .HTTP_200_OK )
92
+
93
+ renditions = image .get_rendition_model ().objects .filter (image_id = image .id )
94
+ self .assertEquals (len (renditions ), 1 )
95
+ self .assertIn (renditions [0 ].url , response .data )
64
96
65
97
def test_static_assets_are_returned (self ):
66
98
response = self .client .get (reverse (self .url_name , kwargs = {'page_id' : self .en_home_page .id }))
@@ -110,3 +142,7 @@ def test_has_md5_hash_without_has_values(self):
110
142
111
143
for value in without_md5_hash :
112
144
self .assertFalse (has_md5_hash (value ))
145
+
146
+
147
+ def get_rendition (image ):
148
+ return image .get_rendition ('fill-360x360' )
0 commit comments