コード例 #1
0
    def test_bad_json(self):
        with patch("openlibrary.core.fulltext.requests.get") as mock_get:
            config.plugin_inside = {"search_endpoint": "mock"}
            mock_response = Mock(json=Mock(side_effect=JSONDecodeError('Not JSON', 'Not JSON', 0)))
            mock_get.return_value = mock_response

            response = fulltext.fulltext_search_api({"q": "hello"})
            assert response == {"error": "Error converting search engine data to JSON"}
コード例 #2
0
 def test_query_exception(self):
     with patch("openlibrary.core.fulltext.requests.get") as mock_get:
         config.plugin_inside = {"search_endpoint": "mock"}
         raiser = Mock(
             side_effect=requests.exceptions.HTTPError("Unable to Connect"))
         mock_response = Mock()
         mock_response.raise_for_status = raiser
         mock_get.return_value = mock_response
         response = fulltext.fulltext_search_api({"q": "hello"})
         assert response == {"error": "Unable to query search engine"}
コード例 #3
0
 def test_no_config(self):
     response = fulltext.fulltext_search_api({})
     assert response == {"error": "Unable to prepare search engine"}
コード例 #4
0
 def test_config(self):
     assert not hasattr(config, "plugin_inside")
     response = fulltext.fulltext_search_api({})
     assert response == {"error": "Unable to prepare search engine"}