9
9
10
10
from cloudflare import Cloudflare , AsyncCloudflare
11
11
from tests .utils import assert_matches_type
12
+ from cloudflare .pagination import SyncSinglePage , AsyncSinglePage
12
13
from cloudflare .types .shared import Role
13
- from cloudflare .types .accounts import RoleListResponse
14
14
15
15
base_url = os .environ .get ("TEST_API_BASE_URL" , "http://127.0.0.1:4010" )
16
16
@@ -23,7 +23,7 @@ def test_method_list(self, client: Cloudflare) -> None:
23
23
role = client .accounts .roles .list (
24
24
account_id = "eb78d65290b24279ba6f44721b3ea3c4" ,
25
25
)
26
- assert_matches_type (Optional [ RoleListResponse ], role , path = ["response" ])
26
+ assert_matches_type (SyncSinglePage [ Role ], role , path = ["response" ])
27
27
28
28
@parametrize
29
29
def test_raw_response_list (self , client : Cloudflare ) -> None :
@@ -34,7 +34,7 @@ def test_raw_response_list(self, client: Cloudflare) -> None:
34
34
assert response .is_closed is True
35
35
assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
36
36
role = response .parse ()
37
- assert_matches_type (Optional [ RoleListResponse ], role , path = ["response" ])
37
+ assert_matches_type (SyncSinglePage [ Role ], role , path = ["response" ])
38
38
39
39
@parametrize
40
40
def test_streaming_response_list (self , client : Cloudflare ) -> None :
@@ -45,7 +45,7 @@ def test_streaming_response_list(self, client: Cloudflare) -> None:
45
45
assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
46
46
47
47
role = response .parse ()
48
- assert_matches_type (Optional [ RoleListResponse ], role , path = ["response" ])
48
+ assert_matches_type (SyncSinglePage [ Role ], role , path = ["response" ])
49
49
50
50
assert cast (Any , response .is_closed ) is True
51
51
@@ -113,7 +113,7 @@ async def test_method_list(self, async_client: AsyncCloudflare) -> None:
113
113
role = await async_client .accounts .roles .list (
114
114
account_id = "eb78d65290b24279ba6f44721b3ea3c4" ,
115
115
)
116
- assert_matches_type (Optional [ RoleListResponse ], role , path = ["response" ])
116
+ assert_matches_type (AsyncSinglePage [ Role ], role , path = ["response" ])
117
117
118
118
@parametrize
119
119
async def test_raw_response_list (self , async_client : AsyncCloudflare ) -> None :
@@ -124,7 +124,7 @@ async def test_raw_response_list(self, async_client: AsyncCloudflare) -> None:
124
124
assert response .is_closed is True
125
125
assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
126
126
role = await response .parse ()
127
- assert_matches_type (Optional [ RoleListResponse ], role , path = ["response" ])
127
+ assert_matches_type (AsyncSinglePage [ Role ], role , path = ["response" ])
128
128
129
129
@parametrize
130
130
async def test_streaming_response_list (self , async_client : AsyncCloudflare ) -> None :
@@ -135,7 +135,7 @@ async def test_streaming_response_list(self, async_client: AsyncCloudflare) -> N
135
135
assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
136
136
137
137
role = await response .parse ()
138
- assert_matches_type (Optional [ RoleListResponse ], role , path = ["response" ])
138
+ assert_matches_type (AsyncSinglePage [ Role ], role , path = ["response" ])
139
139
140
140
assert cast (Any , response .is_closed ) is True
141
141
0 commit comments