-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtest_auth.py
143 lines (109 loc) · 5.1 KB
/
test_auth.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
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
'''Tests regarding Geo Engine authentication'''
from datetime import datetime
import unittest
import os
import geoengine_openapi_client
import geoengine as ge
from geoengine.error import GeoEngineException
from geoengine.types import QueryRectangle
from tests.ge_test import GeoEngineTestInstance
from . import UrllibMocker
class AuthTests(unittest.TestCase):
'''Tests runner regarding Geo Engine authentication'''
def setUp(self) -> None:
assert "GEOENGINE_EMAIL" not in os.environ and "GEOENGINE_PASSWORD" not in os.environ \
and "GEOENGINE_TOKEN" not in os.environ, \
"Please unset GEOENGINE_EMAIL, GEOENGINE_PASSWORD and GEOENGINE_TOKEN"
ge.reset(False)
def test_uninitialized(self):
with self.assertRaises(ge.UninitializedException) as exception:
ge.workflow_by_id("foobar").get_dataframe(
QueryRectangle(
ge.BoundingBox2D(- 180, -90, 180, 90),
ge.TimeInterval(datetime.now()),
ge.SpatialResolution(0.1, 0.1)
)
)
self.assertEqual(str(exception.exception),
'You have to call `initialize` before using other functionality')
def test_initialize(self):
def get_session_id(session: ge.Session) -> str:
return session.auth_header['Authorization'].split(' ')[1]
# TODO: use `enterContext(cm)` instead of `with cm:` in Python 3.11
with GeoEngineTestInstance() as ge_instance:
ge_instance.wait_for_ready()
# anonymous
ge.initialize(ge_instance.address())
self.assertEqual(type(ge.get_session()), ge.Session)
session_id = get_session_id(ge.get_session())
ge.reset(False)
# token as parameter
ge.initialize(ge_instance.address(), token=session_id)
self.assertEqual(get_session_id(ge.get_session()), session_id)
ge.reset(False)
# token as environment variable
os.environ["GEOENGINE_TOKEN"] = session_id
try:
ge.initialize(ge_instance.address())
finally:
del os.environ["GEOENGINE_TOKEN"]
self.assertEqual(get_session_id(ge.get_session()), session_id)
def test_initialize_tuple(self):
with UrllibMocker() as m:
m.post('http://mock-instance/login',
expected_request_body={"email": "[email protected]", "password": "secret123"},
json={
"id": "e327d9c3-a4f3-4bd7-a5e1-30b26cae8064",
"user": {
"id": "328ca8d1-15d7-4f59-a989-5d5d72c98744",
},
"created": "2021-06-08T15:22:22.605891994Z",
"validUntil": "2021-06-08T16:22:22.605892183Z",
"project": None,
"view": None
})
ge.initialize("http://mock-instance", ("[email protected]", "secret123"))
self.assertEqual(type(ge.get_session()),
ge.Session)
def test_initialize_env(self):
with UrllibMocker() as m:
m.post('http://mock-instance/login',
expected_request_body={"email": "[email protected]", "password": "secret123"},
json={
"id": "e327d9c3-a4f3-4bd7-a5e1-30b26cae8064",
"user": {
"id": "328ca8d1-15d7-4f59-a989-5d5d72c98744",
},
"created": "2021-06-08T15:22:22.605891994Z",
"validUntil": "2021-06-08T16:22:22.605892183Z",
"project": None,
"view": None
})
os.environ["GEOENGINE_EMAIL"] = "[email protected]"
os.environ["GEOENGINE_PASSWORD"] = "secret123"
try:
ge.initialize("http://mock-instance")
finally:
del os.environ["GEOENGINE_EMAIL"]
del os.environ["GEOENGINE_PASSWORD"]
self.assertEqual(type(ge.get_session()),
ge.Session)
def test_user_agent(self):
with UrllibMocker() as m:
m.post('http://mock-instance/anonymous',
request_headers={'User-Agent': f'geoengine-python/{geoengine_openapi_client.__version__}'},
json={
"id": "e327d9c3-a4f3-4bd7-a5e1-30b26cae8064",
"user": None,
"created": "2021-06-08T15:22:22.605891994Z",
"validUntil": "2021-06-08T16:22:22.605892183Z",
"project": None,
"view": None
})
ge.initialize("http://mock-instance")
self.assertEqual(type(ge.get_session()),
ge.Session)
def test_initialize_credentials_and_token(self):
self.assertRaises(GeoEngineException, ge.initialize, "http://mock-instance", ("user", "pass"), "token")
if __name__ == '__main__':
unittest.main()