-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtest_integration.py
81 lines (52 loc) · 2.2 KB
/
test_integration.py
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
import pytest
import serpapi
def test_basic_import():
"""Test that basic import works as intended."""
import serpapi
def test_entrypoints(client):
"""Test that pure references to the publicly accessible API surface introduces no errors."""
for api in [client, serpapi]:
assert api.account
assert api.search
assert api.search_archive
assert api.locations
def test_account_without_credentials():
"""Ensure that an HTTPError is raised when account is accessed without API Credentials."""
with pytest.raises(serpapi.HTTPError):
serpapi.account()
def test_account_with_bad_credentials(invalid_key_client):
"""Ensure that an HTTPError is raised when account is accessed with invalid API Credentials."""
with pytest.raises(serpapi.HTTPError):
invalid_key_client.account()
def test_account_with_credentials(client):
"""Ensure that account appears to be returning valid data if the API Key is correct."""
account = client.account()
assert account
assert account.keys()
assert isinstance(account, dict)
def test_coffee_search(coffee_search):
assert isinstance(coffee_search, serpapi.SerpResults)
assert hasattr(coffee_search, "__getitem__")
def test_coffee_search_as_dict(coffee_search):
d = coffee_search.as_dict()
assert isinstance(d, dict)
def test_coffee_search_html(coffee_search_html):
assert isinstance(coffee_search_html, str)
assert not hasattr(coffee_search_html, "next_page_url")
def test_coffee_search_n_pages(coffee_search):
page_count = 0
max_pages = 3
for page in coffee_search.yield_pages(max_pages=max_pages):
page_count += 1
assert page_count == max_pages
def test_coffee_search_next_page(coffee_search):
next_page = coffee_search.next_page()
assert isinstance(next_page, serpapi.SerpResults)
assert coffee_search["search_metadata"]["id"] != next_page["search_metadata"]["id"]
def test_search_function_signature(coffee_params, client):
s = client.search(coffee_params)
assert s["search_metadata"]["id"]
s = client.search(**coffee_params)
assert s["search_metadata"]["id"]
s = client.search(q='coffee')
assert s["search_metadata"]["id"]