FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
AsyncOpenStackClient/tests/test_auth.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_auth.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
154 lines (127 loc) · 6.37 KB
Breadcrumbs
AsyncOpenStackClient
/
tests
/
test_auth.py
Copy path
File metadata and controls
154 lines (127 loc) · 6.37 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
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
import
os
from
aioresponses
import
aioresponses
from
aiounittest
import
AsyncTestCase
,
futurized
from
asyncopenstackclient
import
AuthPassword
from
unittest
.
mock
import
MagicMock
,
patch
class
TestAuth
(
AsyncTestCase
):
def
setUp
(
self
):
self
.
auth_args
=
(
'http://url'
,
'm_user'
,
'm_pass'
,
'm_project'
,
'm_user_domain'
,
'm_project_domain'
)
self
.
auth
=
AuthPassword
(
*
self
.
auth_args
)
def
tearDown
(
self
):
patch
.
stopall
()
for
name
in
list
(
os
.
environ
.
keys
()):
if
name
.
startswith
(
'OS_'
):
del
os
.
environ
[
name
]
async
def
test_create_object
(
self
):
expected_payload_password
=
{
'auth'
: {
'identity'
: {
'methods'
: [
'password'
],
'password'
: {
'user'
: {
'domain'
: {
'name'
:
'm_user_domain'
},
'name'
:
'm_user'
,
'password'
:
'm_pass'
}}},
'scope'
: {
'project'
: {
'domain'
: {
'name'
:
'm_project_domain'
},
'name'
:
'm_project'
}}
}}
expected_payload_application_credential
=
{
'auth'
: {
'identity'
: {
'methods'
: [
'application_credential'
],
'application_credential'
: {
'id'
:
'm_app_id'
,
'secret'
:
'm_app_secret'
}}
}}
auth_args_application_credentials
=
(
'http://url'
,
None
,
None
,
None
,
None
,
None
,
'm_app_id'
,
'm_app_secret'
)
auth_application_credentials
=
AuthPassword
(
*
auth_args_application_credentials
)
for
auth
,
expected_payload
in
((
self
.
auth
,
expected_payload_password
),
(
auth_application_credentials
,
expected_payload_application_credential
)):
self
.
assertEqual
(
auth
.
_auth_payload
,
expected_payload
)
self
.
assertEqual
(
auth
.
_auth_endpoint
,
'http://url/auth/tokens'
)
self
.
assertTrue
(
'Content-Type'
in
auth
.
headers
)
async
def
test_create_object_use_environ
(
self
):
expected_payload_password
=
{
'auth'
: {
'identity'
: {
'methods'
: [
'password'
],
'password'
: {
'user'
: {
'domain'
: {
'name'
:
'udm'
},
'name'
:
'uuu'
,
'password'
:
'ppp'
}}},
'scope'
: {
'project'
: {
'domain'
: {
'name'
:
'udm'
},
'name'
:
'prj'
}}
}}
env_password
=
{
'OS_AUTH_URL'
:
'https://keystone/v3'
,
'OS_PASSWORD'
:
'ppp'
,
'OS_USERNAME'
:
'uuu'
,
'OS_USER_DOMAIN_NAME'
:
'udm'
,
'OS_PROJECT_NAME'
:
'prj'
}
expected_payload_application_credentials
=
{
'auth'
: {
'identity'
: {
'methods'
: [
'application_credential'
],
'application_credential'
: {
'id'
:
'iid'
,
'secret'
:
'ssecret'
}
}
}}
env_application_credentials
=
{
'OS_AUTH_URL'
:
'https://keystone/v3'
,
'OS_APPLICATION_CREDENTIAL_ID'
:
'iid'
,
'OS_APPLICATION_CREDENTIAL_SECRET'
:
'ssecret'
,
'OS_USER_DOMAIN_NAME'
:
'udm'
,
'OS_PROJECT_NAME'
:
'prj'
}
for
env
,
expected_payload
in
((
env_password
,
expected_payload_password
),
(
env_application_credentials
,
expected_payload_application_credentials
)):
with
patch
.
dict
(
'os.environ'
,
env
,
clear
=
True
):
auth
=
AuthPassword
()
self
.
assertEqual
(
auth
.
_auth_payload
,
expected_payload
)
self
.
assertEqual
(
auth
.
_auth_endpoint
,
'https://keystone/v3/auth/tokens'
)
self
.
assertTrue
(
'Content-Type'
in
auth
.
headers
)
async
def
test_get_token
(
self
):
body
=
{
"token"
: {
"catalog"
: {
"endpoints"
: [
{
"name"
:
"mock_endpoint"
,
"endpoints"
: [{
"url"
:
"mock_url"
,
"interface"
:
"public"
}]}
]
},
"expires_at"
:
"1970-01-01T01:00:00.000000Z"
}
}
headers
=
{
"Vary"
:
"X-Auth-Token"
,
"x-openstack-request-id"
:
"1234"
,
"Content-Type"
:
"application/json"
,
"X-Subject-Token"
:
"gAAAAABao"
}
with
aioresponses
()
as
req
:
req
.
post
(
'http://url/auth/tokens'
,
payload
=
body
,
headers
=
headers
)
res
=
await
self
.
auth
.
get_token
()
self
.
assertEqual
(
res
, (
headers
[
"X-Subject-Token"
],
3600
,
body
[
"token"
][
"catalog"
]))
def
test_get_endpoint_url_existing_endpoint
(
self
):
self
.
auth
.
endpoints
=
[
{
"name"
:
"mock_endpoint"
,
"endpoints"
: [{
"url"
:
"mock_url"
,
"interface"
:
"public"
}]}
]
endpoint_url
=
self
.
auth
.
get_endpoint_url
(
"mock_endpoint"
)
self
.
assertEqual
(
endpoint_url
,
"mock_url"
)
def
test_get_endpoint_url_bad_endpoint_name
(
self
):
self
.
auth
.
endpoints
=
[
{
"name"
:
"mock_endpoint"
,
"endpoints"
: [{
"url"
:
"mock_url"
,
"interface"
:
"public"
}]}
]
with
self
.
assertRaises
(
ValueError
):
self
.
auth
.
get_endpoint_url
(
"none_existing_endpoint"
)
def
test_get_endpoint_url_bad_interface
(
self
):
self
.
auth
.
endpoints
=
[
{
"name"
:
"mock_endpoint"
,
"endpoints"
: [{
"url"
:
"mock_url"
,
"interface"
:
"public"
}]}
]
with
self
.
assertRaises
(
ValueError
):
self
.
auth
.
get_endpoint_url
(
"mock_endpoint"
,
prefered_interface
=
"not_existing_interface"
)
async
def
test_authenticate_first_time
(
self
):
mock_get_token_results
=
[
futurized
((
'mock-token1'
,
1000
,
'whatever'
)),
futurized
((
'mock-token2'
,
1000
,
'whatever'
)),
]
# time is gonna be called 2 times becouse of Pythons lazy evaluation
mock_time_results
=
[
900
,
1100
]
get_token_mock
=
patch
(
'asyncopenstackclient.auth.AuthPassword.get_token'
,
new
=
MagicMock
()).
start
()
get_token_mock
.
side_effect
=
mock_get_token_results
patch
(
'asyncopenstackclient.auth.time'
,
side_effect
=
mock_time_results
).
start
()
# first time token should be None and get_token shall be called
await
self
.
auth
.
authenticate
()
self
.
assertEqual
(
self
.
auth
.
token
,
'mock-token1'
)
# second time, token is not None and current time is before token expiration, no change
await
self
.
auth
.
authenticate
()
self
.
assertEqual
(
self
.
auth
.
token
,
'mock-token1'
)
# third time, token expires and should be renewed
await
self
.
auth
.
authenticate
()
self
.
assertEqual
(
self
.
auth
.
token
,
'mock-token2'
)
Back
|
FazBrowse Home
|
New Git URL