forked from MagicStack/asyncpg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_connect.py
371 lines (303 loc) · 11.5 KB
/
test_connect.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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
# Copyright (C) 2016-present the ayncpg authors and contributors
# <see AUTHORS file>
#
# This module is part of asyncpg and is released under
# the Apache 2.0 License: http://www.apache.org/licenses/LICENSE-2.0
import contextlib
import ipaddress
import os
import platform
import unittest
import asyncpg
from asyncpg import _testbase as tb
from asyncpg.connection import _parse_connect_params
_system = platform.uname().system
class TestSettings(tb.ConnectedTestCase):
async def test_get_settings_01(self):
self.assertEqual(
self.con.get_settings().client_encoding,
'UTF8')
class TestAuthentication(tb.ConnectedTestCase):
def setUp(self):
super().setUp()
if not self.cluster.is_managed():
self.skipTest('unmanaged cluster')
methods = [
('trust', None),
('reject', None),
('md5', 'correctpassword'),
('password', 'correctpassword'),
]
self.cluster.reset_hba()
create_script = []
for method, password in methods:
create_script.append(
'CREATE ROLE {}_user WITH LOGIN{};'.format(
method,
' PASSWORD {!r}'.format(password) if password else ''
)
)
if _system != 'Windows':
self.cluster.add_hba_entry(
type='local',
database='postgres', user='{}_user'.format(method),
auth_method=method)
self.cluster.add_hba_entry(
type='host', address=ipaddress.ip_network('127.0.0.0/24'),
database='postgres', user='{}_user'.format(method),
auth_method=method)
self.cluster.add_hba_entry(
type='host', address=ipaddress.ip_network('::1/128'),
database='postgres', user='{}_user'.format(method),
auth_method=method)
# Put hba changes into effect
self.cluster.reload()
create_script = '\n'.join(create_script)
self.loop.run_until_complete(self.con.execute(create_script))
def tearDown(self):
# Reset cluster's pg_hba.conf since we've meddled with it
self.cluster.trust_local_connections()
methods = [
'trust',
'reject',
'md5',
'password',
]
drop_script = []
for method in methods:
drop_script.append('DROP ROLE {}_user;'.format(method))
drop_script = '\n'.join(drop_script)
self.loop.run_until_complete(self.con.execute(drop_script))
super().tearDown()
async def test_auth_bad_user(self):
with self.assertRaises(
asyncpg.InvalidAuthorizationSpecificationError):
await self.cluster.connect(user='__nonexistent__',
database='postgres',
loop=self.loop)
async def test_auth_trust(self):
conn = await self.cluster.connect(
user='trust_user', database='postgres', loop=self.loop)
await conn.close()
async def test_auth_reject(self):
with self.assertRaisesRegex(
asyncpg.InvalidAuthorizationSpecificationError,
'pg_hba.conf rejects connection'):
await self.cluster.connect(
user='reject_user', database='postgres', loop=self.loop)
async def test_auth_password_cleartext(self):
conn = await self.cluster.connect(
user='password_user', database='postgres',
password='correctpassword', loop=self.loop)
await conn.close()
with self.assertRaisesRegex(
asyncpg.InvalidPasswordError,
'password authentication failed for user "password_user"'):
await self.cluster.connect(
user='password_user', database='postgres',
password='wrongpassword', loop=self.loop)
async def test_auth_password_md5(self):
conn = await self.cluster.connect(
user='md5_user', database='postgres', password='correctpassword',
loop=self.loop)
await conn.close()
with self.assertRaisesRegex(
asyncpg.InvalidPasswordError,
'password authentication failed for user "md5_user"'):
await self.cluster.connect(
user='md5_user', database='postgres', password='wrongpassword',
loop=self.loop)
async def test_auth_unsupported(self):
pass
class TestConnectParams(unittest.TestCase):
TESTS = [
{
'env': {
'PGUSER': 'user',
'PGDATABASE': 'testdb',
'PGPASSWORD': 'passw',
'PGHOST': 'host',
'PGPORT': '123'
},
'result': (['host'], 123, {
'user': 'user',
'password': 'passw',
'database': 'testdb'})
},
{
'env': {
'PGUSER': 'user',
'PGDATABASE': 'testdb',
'PGPASSWORD': 'passw',
'PGHOST': 'host',
'PGPORT': '123'
},
'host': 'host2',
'port': '456',
'user': 'user2',
'password': 'passw2',
'database': 'db2',
'result': (['host2'], 456, {
'user': 'user2',
'password': 'passw2',
'database': 'db2'})
},
{
'env': {
'PGUSER': 'user',
'PGDATABASE': 'testdb',
'PGPASSWORD': 'passw',
'PGHOST': 'host',
'PGPORT': '123'
},
'dsn': 'postgres://user3:123123@localhost/abcdef',
'host': 'host2',
'port': '456',
'user': 'user2',
'password': 'passw2',
'database': 'db2',
'result': (['host2'], 456, {
'user': 'user2',
'password': 'passw2',
'database': 'db2'})
},
{
'env': {
'PGUSER': 'user',
'PGDATABASE': 'testdb',
'PGPASSWORD': 'passw',
'PGHOST': 'host',
'PGPORT': '123'
},
'dsn': 'postgres://user3:123123@localhost:5555/abcdef',
'result': (['localhost'], 5555, {
'user': 'user3',
'password': '123123',
'database': 'abcdef'})
},
{
'dsn': 'postgres://user3:123123@localhost:5555/abcdef',
'result': (['localhost'], 5555, {
'user': 'user3',
'password': '123123',
'database': 'abcdef'})
},
{
'dsn': 'postgresql://user3:123123@localhost:5555/'
'abcdef?param=sss¶m=123&host=testhost&user=testuser'
'&port=2222&database=testdb',
'host': '127.0.0.1',
'port': '888',
'user': 'me',
'password': 'ask',
'database': 'db',
'result': (['127.0.0.1'], 888, {
'param': '123',
'user': 'me',
'password': 'ask',
'database': 'db'})
},
{
'dsn': 'postgresql:///dbname?host=/unix_sock/test&user=spam',
'result': (['/unix_sock/test'], 5432, {
'user': 'spam',
'database': 'dbname'})
},
{
'dsn': 'pq:///dbname?host=/unix_sock/test&user=spam',
'error': (ValueError, 'invalid DSN')
},
]
@contextlib.contextmanager
def environ(self, **kwargs):
old_vals = {}
for key in kwargs:
if key in os.environ:
old_vals[key] = os.environ[key]
for key, val in kwargs.items():
if val is None:
if key in os.environ:
del os.environ[key]
else:
os.environ[key] = val
try:
yield
finally:
for key in kwargs:
if key in os.environ:
del os.environ[key]
for key, val in old_vals.items():
os.environ[key] = val
def run_testcase(self, testcase):
env = testcase.get('env', {})
test_env = {'PGHOST': None, 'PGPORT': None,
'PGUSER': None, 'PGPASSWORD': None,
'PGDATABASE': None}
test_env.update(env)
dsn = testcase.get('dsn')
opts = testcase.get('opts', {})
user = testcase.get('user')
port = testcase.get('port')
host = testcase.get('host')
password = testcase.get('password')
database = testcase.get('database')
expected = testcase.get('result')
expected_error = testcase.get('error')
if expected is None and expected_error is None:
raise RuntimeError(
'invalid test case: either "result" or "error" key '
'has to be specified')
if expected is not None and expected_error is not None:
raise RuntimeError(
'invalid test case: either "result" or "error" key '
'has to be specified, got both')
with contextlib.ExitStack() as es:
es.enter_context(self.subTest(dsn=dsn, opts=opts, env=env))
es.enter_context(self.environ(**test_env))
if expected_error:
es.enter_context(self.assertRaisesRegex(*expected_error))
result = _parse_connect_params(
dsn=dsn, host=host, port=port, user=user, password=password,
database=database, opts=opts)
if expected is not None:
self.assertEqual(expected, result)
def test_test_connect_params_environ(self):
self.assertNotIn('AAAAAAAAAA123', os.environ)
self.assertNotIn('AAAAAAAAAA456', os.environ)
self.assertNotIn('AAAAAAAAAA789', os.environ)
try:
os.environ['AAAAAAAAAA456'] = '123'
os.environ['AAAAAAAAAA789'] = '123'
with self.environ(AAAAAAAAAA123='1',
AAAAAAAAAA456='2',
AAAAAAAAAA789=None):
self.assertEqual(os.environ['AAAAAAAAAA123'], '1')
self.assertEqual(os.environ['AAAAAAAAAA456'], '2')
self.assertNotIn('AAAAAAAAAA789', os.environ)
self.assertNotIn('AAAAAAAAAA123', os.environ)
self.assertEqual(os.environ['AAAAAAAAAA456'], '123')
self.assertEqual(os.environ['AAAAAAAAAA789'], '123')
finally:
for key in {'AAAAAAAAAA123', 'AAAAAAAAAA456', 'AAAAAAAAAA789'}:
if key in os.environ:
del os.environ[key]
def test_test_connect_params_run_testcase(self):
with self.environ(PGPORT='777'):
self.run_testcase({
'env': {
'PGUSER': '__test__'
},
'host': 'abc',
'result': (['abc'], 5432, {'user': '__test__'})
})
with self.assertRaises(AssertionError):
self.run_testcase({
'env': {
'PGUSER': '__test__'
},
'host': 'abc',
'result': (['abc'], 5432, {'user': 'wrong_user'})
})
def test_connect_params(self):
for testcase in self.TESTS:
self.run_testcase(testcase)