FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
AsyncOpenStackClient/tests/test_client.py at master · DreamLab/AsyncOpenStackClient · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
DreamLab
/
AsyncOpenStackClient
Public
Notifications
You must be signed in to change notification settings
Fork
7
Star
18
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
AsyncOpenStackClient
/
tests
/
test_client.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
90 lines (66 loc) · 3.41 KB
Breadcrumbs
AsyncOpenStackClient
/
tests
/
test_client.py
Copy path
File metadata and controls
90 lines (66 loc) · 3.41 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
from
aiounittest
import
AsyncTestCase
,
futurized
from
asyncopenstackclient
import
Client
from
unittest
import
mock
class
TestClient
(
AsyncTestCase
):
def
setUp
(
self
):
super
().
setUp
()
self
.
mock_sess
=
mock
.
Mock
()
self
.
mock_sess
.
authenticate
.
return_value
=
futurized
(
None
)
self
.
mock_sess
.
token
=
'mock_token'
self
.
mock_sess
.
get_endpoint_url
.
return_value
=
'mock_url'
def
tearDown
(
self
):
mock
.
patch
.
stopall
()
def
test_create_object
(
self
):
api_name
=
'mock_api'
resources
=
'mock_resource'
session
=
'mock_session'
client
=
Client
(
api_name
,
resources
,
session
=
session
)
self
.
assertEqual
(
client
.
api_name
,
api_name
)
self
.
assertEqual
(
client
.
resources
,
resources
)
self
.
assertEqual
(
client
.
session
,
session
)
def
test_create_object_bad_session
(
self
):
with
self
.
assertRaises
(
AttributeError
):
Client
(
'mock_name'
,
'resource'
,
session
=
None
)
async
def
test_get_credentials
(
self
):
self
.
mock_sess
.
get_endpoint_url
.
return_value
=
'http://glance.a2.iaas:9292/v2'
client
=
Client
(
'glance'
, [
'some_res'
],
session
=
self
.
mock_sess
)
# this is not a good practice but the simplest one
client
.
get_current_version_api_url
=
mock
.
Mock
(
return_value
=
futurized
(
'http://blah'
))
await
client
.
get_credentials
()
client
.
get_current_version_api_url
.
assert_not_called
()
self
.
mock_sess
.
get_endpoint_url
.
assert_called_once_with
(
'glance'
)
self
.
assertEqual
(
client
.
api_url
,
'http://glance.a2.iaas:9292/v2/'
)
async
def
test_get_credentials_base_api_url_only_from_catalog
(
self
):
self
.
mock_sess
.
get_endpoint_url
.
return_value
=
'http://glance.a2.iaas:9292'
client
=
Client
(
'glance'
, [
'some_res'
],
session
=
self
.
mock_sess
)
# this is not a good practice but the simplest one
client
.
get_current_version_api_url
=
mock
.
Mock
(
return_value
=
futurized
(
'http://blah'
))
await
client
.
get_credentials
()
self
.
mock_sess
.
get_endpoint_url
.
assert_called_once_with
(
'glance'
)
client
.
get_current_version_api_url
.
assert_called_once_with
(
'http://glance.a2.iaas:9292'
)
self
.
assertEqual
(
client
.
api_url
,
'http://blah/'
)
async
def
test_custom_api_url
(
self
):
client
=
Client
(
'mock_name'
,
'some_res'
,
session
=
self
.
mock_sess
,
api_url
=
"http://my-api-url/"
)
await
client
.
get_credentials
()
self
.
mock_sess
.
get_endpoint_url
.
assert_not_called
()
self
.
assertEqual
(
client
.
api_url
,
'http://my-api-url/'
)
async
def
test_init_api
(
self
):
mock_api
=
mock
.
Mock
()
mock
.
patch
(
'asyncopenstackclient.client.API'
,
new_callable
=
mock_api
).
start
()
client_timeout
=
30
client
=
Client
(
'mock_name'
, [
'mock'
,
'resource'
,
'list'
],
session
=
self
.
mock_sess
)
await
client
.
init_api
(
timeout
=
client_timeout
)
mock_api
().
assert_called_once_with
(
api_root_url
=
'mock_url/'
,
headers
=
{
'X-Auth-Token'
:
'mock_token'
,
'Accept'
:
'application/json'
,
'Content-Type'
:
'application/json'
},
json_encode_body
=
True
,
timeout
=
client_timeout
)
mock_api
()().
add_resource
.
assert_has_calls
([
mock
.
call
(
resource_name
=
'mock'
,
resource_class
=
mock
.
ANY
),
mock
.
call
(
resource_name
=
'resource'
,
resource_class
=
mock
.
ANY
),
mock
.
call
(
resource_name
=
'list'
,
resource_class
=
mock
.
ANY
),
])
Back
|
FazBrowse Home
|
New Git URL