summaryrefslogtreecommitdiff
path: root/tests/unit/engines/test_bing_videos.py
blob: 118754b253892589a6dc268918883a1e3aae0692 (plain)
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
# -*- coding: utf-8 -*-
from collections import defaultdict
import mock
from searx.engines import bing_videos
from searx.testing import SearxTestCase


class TestBingVideosEngine(SearxTestCase):

    def test_request(self):
        bing_videos.supported_languages = ['fr-FR', 'en-US']

        query = 'test_query'
        dicto = defaultdict(dict)
        dicto['pageno'] = 1
        dicto['language'] = 'fr-FR'
        dicto['safesearch'] = 0
        dicto['time_range'] = ''
        params = bing_videos.request(query, dicto)
        self.assertTrue('url' in params)
        self.assertTrue(query in params['url'])
        self.assertTrue('bing.com' in params['url'])
        self.assertTrue('SRCHHPGUSR' in params['cookies'])
        self.assertTrue('OFF' in params['cookies']['SRCHHPGUSR'])
        self.assertTrue('_EDGE_S' in params['cookies'])
        self.assertTrue('fr-fr' in params['cookies']['_EDGE_S'])

        dicto['pageno'] = 2
        dicto['time_range'] = 'day'
        dicto['safesearch'] = 2
        params = bing_videos.request(query, dicto)
        self.assertTrue('first=11' in params['url'])
        self.assertTrue('1440' in params['url'])
        self.assertIn('SRCHHPGUSR', params['cookies'])
        self.assertTrue('STRICT' in params['cookies']['SRCHHPGUSR'])

    def test_response(self):
        self.assertRaises(AttributeError, bing_videos.response, None)
        self.assertRaises(AttributeError, bing_videos.response, [])
        self.assertRaises(AttributeError, bing_videos.response, '')
        self.assertRaises(AttributeError, bing_videos.response, '[]')

        response = mock.Mock(text='<html></html>')
        self.assertEqual(bing_videos.response(response), [])

        response = mock.Mock(text='<html></html>')
        self.assertEqual(bing_videos.response(response), [])

        html = """
        <div>
            <div class="dg_u">
                <a class="dv_i" href="/videos/search?abcde">
                    <div class="vthblock">
                        <div class="vthumb">
                            <img src="thumb_1.jpg" />
                        </div>
                        <div>
                            <div class="tl">
                                Title 1
                            </div>
                        </div>
                    </div>
                    <div class="videoInfoPanel">
                        <div class="pubInfo">
                            <div>Content 1</div>
                        </div>
                    </div>
                </a>
                <div class="sa_wrapper"
                    data-eventpayload="{&quot;purl&quot;: &quot;https://url.com/1&quot;}">
                </div>
            </div>
        </div>
        """
        response = mock.Mock(text=html)
        results = bing_videos.response(response)
        self.assertEqual(type(results), list)
        self.assertEqual(len(results), 1)
        self.assertEqual(results[0]['title'], 'Title 1')
        self.assertEqual(results[0]['url'], 'https://url.com/1')
        self.assertEqual(results[0]['content'], 'Content 1')
        self.assertEqual(results[0]['thumbnail'], 'thumb_1.jpg')

        html = """
        <div>
            <div class="dg_u">
                <a class="dv_i" href="https://url.com/1">
                    <div class="vthblock">
                        <div class="vthumb">
                            <img src="thumb_1.jpg" />
                        </div>
                        <div>
                            <div class="tl">
                                Title 1
                            </div>
                        </div>
                    </div>
                    <div class="videoInfoPanel">
                        <div class="pubInfo">
                            <div>Content 1</div>
                        </div>
                    </div>
                </a>
            </div>
            <div class="dg_u">
                <a class="dv_i" href="/videos/search?abcde">
                    <div class="vthblock">
                        <div class="vthumb">
                            <img src="thumb_2.jpg" />
                        </div>
                        <div>
                            <div class="tl">
                                Title 2
                            </div>
                        </div>
                    </div>
                    <div class="videoInfoPanel">
                        <div class="pubInfo">
                            <div>Content 2</div>
                        </div>
                    </div>
                </a>
            </div>
        </div>
        """
        response = mock.Mock(text=html)
        results = bing_videos.response(response)
        self.assertEqual(type(results), list)
        self.assertEqual(len(results), 1)
        self.assertEqual(results[0]['title'], 'Title 1')
        self.assertEqual(results[0]['url'], 'https://url.com/1')
        self.assertEqual(results[0]['content'], 'Content 1')
        self.assertEqual(results[0]['thumbnail'], 'thumb_1.jpg')