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 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614
|
import asyncio
import os
import re
import psycopg
import pytest
from psycopg.rows import dict_row
async def test_max_client_conn(bouncer):
bouncer.default_db = "p1"
bouncer.admin(f"set max_client_conn=5")
result = bouncer.asleep(3, times=4)
await asyncio.sleep(1)
# should still be allowed, since it's the last allowed connection
await bouncer.atest()
result_last = bouncer.asleep(3)
await asyncio.sleep(1)
with pytest.raises(psycopg.OperationalError, match=r"max_client_conn"):
await bouncer.atest()
await result
await result_last
def test_max_db_client_connections_local_override_global(bouncer):
"""Test that database level max_db_client_connections overrides server level max_db_client_connections."""
test_db = "conn_limit_db"
connect_args = {"dbname": test_db, "user": "muser1"}
conns = [bouncer.conn(**connect_args) for _ in range(2)]
dbs = bouncer.admin("SHOW DATABASES", row_factory=dict_row)
db = [db for db in dbs if db["name"] == test_db][0]
assert db["current_client_connections"] == 2
assert db["max_client_connections"] == 2
with pytest.raises(psycopg.OperationalError, match=r"max_db_client_connections"):
_ = bouncer.conn(**connect_args)
with pytest.raises(psycopg.OperationalError, match=r"max_db_client_connections"):
_ = bouncer.conn(**connect_args)
for conn in conns:
conn.close()
@pytest.mark.parametrize(
("test_db", "test_user"),
[
("p0", "muser1"),
("pgbouncer", "pgbouncer"),
("pgbouncer", "muser1"),
("authdb", "pswcheck_not_in_auth_file"),
],
)
def test_max_db_client_connections_global_negative(
bouncer, test_db: str, test_user: str
) -> None:
"""Negative test of server wide max_db_client_connections setting."""
bouncer.admin("SET max_db_client_connections = 2")
bouncer.admin("SET stats_users = 'muser1'")
bouncer.admin("SET admin_users = 'pgbouncer'")
connect_args = {"dbname": test_db, "user": test_user}
conns = [bouncer.conn(**connect_args) for _ in range(2)]
dbs = bouncer.admin("SHOW DATABASES", row_factory=dict_row)
db = [db for db in dbs if db["name"] == test_db][0]
assert db["current_client_connections"] == 2 if test_db == "p0" else 3
assert db["max_client_connections"] == 2
if test_db == "pgbouncer" and test_user == "pgbouncer":
_ = bouncer.conn(**connect_args)
else:
with pytest.raises(
psycopg.OperationalError, match=r"max_db_client_connections"
):
_ = bouncer.conn(**connect_args)
for conn in conns:
conn.close()
@pytest.mark.parametrize(
("test_db", "test_user"),
[
("p0", "muser1"),
("pgbouncer", "pgbouncer"),
("pgbouncer", "muser1"),
("authdb", "pswcheck_not_in_auth_file"),
],
)
def test_max_db_client_connections_global_positive(
bouncer, test_db: str, test_user: str
) -> None:
"""Positive test of server wide max_db_client_connections setting."""
# with bouncer.run_with_config(config):
bouncer.admin("SET max_db_client_connections = 2")
bouncer.admin("SET stats_users = 'muser1'")
bouncer.admin("SET admin_users = 'pgbouncer'")
connect_args = {"dbname": test_db, "user": test_user}
conn = bouncer.conn(**connect_args)
# should still be allowed, since it's the last allowed connection
dbs = bouncer.admin("SHOW DATABASES", row_factory=dict_row)
db = [db for db in dbs if db["name"] == test_db][0]
assert db["current_client_connections"] == 1 if test_db == "p0" else 2
assert db["max_client_connections"] == 2
_ = bouncer.conn(**connect_args)
conn.close()
@pytest.mark.parametrize(
("test_db", "test_user"),
[
("p0", "muser1"),
("pgbouncer", "pgbouncer"),
("pgbouncer", "muser1"),
("authdb", "pswcheck_not_in_auth_file"),
],
)
def test_max_db_client_connections_decrement(
bouncer, test_db: str, test_user: str
) -> None:
"""Test that max_db_connections is correctly decremented when user closes connection."""
bouncer.admin("SET stats_users = 'muser1'")
bouncer.admin("SET admin_users = 'pgbouncer'")
connect_args = {"dbname": test_db, "user": test_user}
[conn_1, conn_2] = [bouncer.conn(**connect_args) for _ in range(2)]
dbs = bouncer.admin("SHOW DATABASES", row_factory=dict_row)
db = [db for db in dbs if db["name"] == test_db][0]
assert db["current_client_connections"] == 2 if test_db == "p0" else 3
conn_2.close()
dbs = bouncer.admin("SHOW DATABASES", row_factory=dict_row)
db = [db for db in dbs if db["name"] == test_db][0]
assert db["current_client_connections"] == 1 if test_db == "p0" else 2
@pytest.mark.parametrize(
("test_db", "test_user"),
[
("client_limit_db", "muser1"),
("client_limit_db_auth_passthrough", "pswcheck_not_in_auth_file"),
],
)
def test_max_db_client_connections_negative(
bouncer, test_db: str, test_user: str
) -> None:
"""Negative test of database specific max_db_client_connections setting."""
connect_args = {"dbname": test_db, "user": test_user}
# with bouncer.run_with_config(config):
conns = [bouncer.conn(**connect_args) for _ in range(2)]
dbs = bouncer.admin("SHOW DATABASES", row_factory=dict_row)
db = [db for db in dbs if db["name"] == test_db][0]
assert db["current_client_connections"] == 2 if test_db == "p0" else 3
assert db["max_client_connections"] == 2
with pytest.raises(psycopg.OperationalError, match=r"max_db_client_connections"):
bouncer.conn(**connect_args)
for conn in conns:
conn.close()
@pytest.mark.parametrize(
("test_db", "test_user"),
[
("client_limit_db", "muser1"),
("client_limit_db_auth_passthrough", "pswcheck_not_in_auth_file"),
],
)
def test_max_db_client_connections_positive(bouncer, test_db: str, test_user) -> None:
"""Positive test of database specific max_db_client_connections setting."""
connect_args = {"dbname": test_db, "user": test_user}
# with bouncer.run_with_config(config):
conn = bouncer.conn(**connect_args)
# should still be allowed, since it's the last allowed connection
dbs = bouncer.admin("SHOW DATABASES", row_factory=dict_row)
db = [db for db in dbs if db["name"] == test_db][0]
assert db["current_client_connections"] == 1 if test_db == "p0" else 2
assert db["max_client_connections"] == 2
_ = bouncer.conn(**connect_args)
conn.close()
async def test_pool_size(pg, bouncer):
# per user pool_size
await bouncer.asleep(0.5, dbname="p0a", user="poolsize1", times=3)
assert pg.connection_count(dbname="p0", users=("poolsize1",)) == 1
# even though we connect using user poolsize1 its setting do not apply is forced user is configured for db
await bouncer.asleep(0.5, dbname="p0", user="poolsize1", times=5)
assert pg.connection_count(dbname="p0", users=("bouncer",)) == 2
# per db pool_size
await bouncer.asleep(0.5, times=5)
assert pg.connection_count("p0") == 2
# global pool_size
bouncer.default_db = "p1"
await bouncer.asleep(0.5, times=10)
assert pg.connection_count("p1") == 5
# test reload (GH issue #248)
bouncer.admin("set default_pool_size = 7")
await bouncer.asleep(0.5, times=10)
assert pg.connection_count("p1") == 7
async def test_min_pool_size(pg, bouncer):
# uncommenting the db that has "forced" maintenance enabled
# by not having this db enabled we avoid polluting other tests
# with connections getting autocreated
with bouncer.ini_path.open() as f:
original = f.read()
with bouncer.ini_path.open("w") as f:
# uncomment the relevant db
new = re.sub(r"^;p0z= (.+)", r"p0z= \g<1>", original, flags=re.MULTILINE)
print(new)
f.write(new)
bouncer.admin("reload")
# having to wait a little to give janitor time to create connection to satisfy min_pool_size
await asyncio.sleep(2)
# ensure db without min_pool_size has no connections
# p0
assert pg.connection_count(dbname="p0", users=("bouncer",)) == 0
# ensure db with min_pool_size and forced user (p0z) has the required
# backend connections
assert pg.connection_count(dbname="p0", users=("pswcheck",)) == 3
# ensure db with min_pool_size and no forced user (p0x) has no backend
# connections
assert pg.connection_count(dbname="p0", users=("postgres",)) == 0
# client connecting to p0x should trigger backend connection creation up to
# min_pool_size.
#
# NOTE: It's a bit tricky to get the timing of this test to work
# robustly: Full maintenance runs three times a second, so we
# need to wait at least 1/3 seconds for it to notice for sure
# that the pool is in use. When it does, it will launch one
# connection per round, so we need to wait at least 3 * 1/3
# second before all the min pool connections are launched.
# Also, we need to keep the query running while this is
# happening so that the pool doesn't become momentarily
# unused.
result = bouncer.asleep(2, dbname="p0x")
await asyncio.sleep(2)
await result
assert pg.connection_count(dbname="p0", users=("postgres",)) == 5
@pytest.mark.parametrize(
("test_db", "test_user"),
[
("p0", "maxedout3"),
("pgbouncer", "maxedout3"),
("pgbouncer", "maxedout2"),
("pauthz", "pswcheck_not_in_auth_file"),
],
)
def test_max_user_client_connections_local_override_global(
bouncer, test_db: str, test_user: str
) -> None:
"""Test that user level overrides global connection limit.
1. Set global client connection limit
2. Grab user data from `SHOW USERS` for user with max_user_client_connections set
3. Validate that the user level max_user_client_connections is returned
Tests 4 users: normal, admin, stats, and auth pass through
"""
bouncer.admin("set max_user_client_connections=1")
bouncer.admin("set admin_users='maxedout3,pgbouncer'")
bouncer.admin("set stats_users=maxedout2")
connect_args = {"dbname": test_db, "user": test_user}
conn_1 = bouncer.conn(**connect_args)
users = bouncer.admin("SHOW USERS", row_factory=dict_row)
user = next(user for user in users if user["name"] == test_user)
assert user["max_user_client_connections"] == 2
assert user["current_client_connections"] == 1
bouncer.conn(**connect_args)
conn_1.close()
@pytest.mark.parametrize(
("test_db", "test_user"),
[
("p0", "maxedout4"),
("pgbouncer", "maxedout4"),
("pgbouncer", "maxedout5"),
("authdb", "pswcheck_not_in_auth_file"),
],
)
def test_max_user_client_connections_global_positive(
bouncer, test_db: str, test_user: str
) -> None:
"""Positive test for global max_user_client_connections setting."""
bouncer.admin("SET max_user_client_connections=2")
bouncer.admin("SET admin_users='maxedout4,pgbouncer'")
bouncer.admin("SET stats_users='maxedout5'")
connect_args = {"dbname": test_db, "user": test_user}
conn_1 = bouncer.conn(**connect_args)
users = bouncer.admin("SHOW USERS", row_factory=dict_row)
user = next(user for user in users if user["name"] == test_user)
assert user["max_user_client_connections"] == 2
assert user["current_client_connections"] == 1
# should still be allowed, since it's the last allowed connection
bouncer.conn(**connect_args)
conn_1.close()
@pytest.mark.parametrize(
("test_db", "test_user"),
[
("p0", "maxedout4"),
("pgbouncer", "maxedout4"),
("pgbouncer", "maxedout5"),
("authdb", "pswcheck_not_in_auth_file"),
],
)
def test_max_user_client_connections_global_negative(
bouncer, test_db: str, test_user: str
) -> None:
"""Negative test for max_user_client_connections setting.
Test that default user level connection limit correctly rejects connection after
2 users are connected. Also checks that user counts are correctly reflected in
SHOW USERS stats command.
Test covers admin db and real db
"""
bouncer.admin("SET max_user_client_connections=2")
bouncer.admin("SET admin_users='maxedout4,pgbouncer'")
bouncer.admin("SET stats_users='maxedout5'")
connect_args = {"dbname": test_db, "user": test_user}
conns = [bouncer.conn(**connect_args) for _ in range(2)]
users = bouncer.admin("SHOW USERS", row_factory=dict_row)
user = next(user for user in users if user["name"] == test_user)
assert user["max_user_client_connections"] == 2
assert user["current_client_connections"] == 2
# Make sure error is correctly 2 times sequentially
for _ in range(2):
if test_db == "pgbouncer" and test_user == "maxedout4":
bouncer.conn(**connect_args)
else:
with pytest.raises(
psycopg.OperationalError, match=r"max_user_client_connections"
):
bouncer.conn(**connect_args)
for conn in conns:
conn.close()
@pytest.mark.parametrize(
("test_db", "test_user"),
[
("p0", "maxedout3"),
("pgbouncer", "maxedout3"),
("pgbouncer", "maxedout2"),
("authdb", "pswcheck_not_in_auth_file"),
],
)
def test_max_user_client_connections_positive(
bouncer, test_db: str, test_user: str
) -> None:
"""Positive test of user level max_user_client_connections setting.
Test that user level connection limits allow users to connect up to the limit level.
Also test that SHOW USERS stats correctly reflect this number.
"""
bouncer.admin("SET max_user_client_connections=2")
bouncer.admin("SET admin_users='maxedout2,pgbouncer'")
bouncer.admin("SET stats_users='maxedout3'")
connect_args = {"dbname": test_db, "user": test_user}
conn_1 = bouncer.conn(**connect_args)
users = bouncer.admin("SHOW USERS", row_factory=dict_row)
user = next(user for user in users if user["name"] == test_user)
assert user["max_user_client_connections"] == 2
assert user["current_client_connections"] == 1
# should still be allowed, since it's the last allowed connection
conn_2 = bouncer.conn(**connect_args)
for conn in [conn_1, conn_2]:
conn.close()
@pytest.mark.parametrize(
("test_db", "test_user"),
[
("p0", "maxedout3"),
("pgbouncer", "maxedout3"),
("pgbouncer", "maxedout2"),
("authdb", "pswcheck_not_in_auth_file"),
],
)
def test_max_user_client_connections_negative(
bouncer, test_db: str, test_user: str
) -> None:
"""Negative test of user level max_user_client_connections setting.
Test that user level connection limit correctly rejects connection after
2 users are connected. Also checks that user counts are correctly reflected in
SHOW USERS stats command.
Test covers admin db and real db
"""
bouncer.admin("SET max_user_client_connections=2")
bouncer.admin("SET admin_users='maxedout2,pgbouncer'")
bouncer.admin("SET stats_users='maxedout3'")
connect_args = {"dbname": test_db, "user": test_user}
conns = [bouncer.conn(**connect_args) for _ in range(2)]
users = bouncer.admin("SHOW USERS", row_factory=dict_row)
user = next(user for user in users if user["name"] == test_user)
assert user["max_user_client_connections"] == 2
assert user["current_client_connections"] == 2
if test_db == "pgbouncer" and test_user == "maxedout2":
bouncer.conn(**connect_args)
else:
with pytest.raises(
psycopg.OperationalError, match=r"max_user_client_connections"
):
bouncer.conn(**connect_args)
for conn in conns:
conn.close()
def test_user_client_count_db_connect_fail(pg, bouncer) -> None:
test_user = "maxedout3"
test_dbname = "user_passthrough"
pg.nossl_access(dbname="p0", auth_type="reject", user=test_user)
pg.ssl_access(dbname="p0", auth_type="reject", user=test_user)
pg.reload()
users = bouncer.admin("SHOW USERS", row_factory=dict_row)
user = next(user for user in users if user["name"] == test_user)
assert user["current_client_connections"] == 0
connect_args = {"dbname": test_dbname, "user": test_user}
with pytest.raises(
psycopg.OperationalError, match="pg_hba.conf rejects connection"
):
_ = bouncer.conn(**connect_args)
users = bouncer.admin("SHOW USERS", row_factory=dict_row)
user = next(user for user in users if user["name"] == test_user)
assert user["current_client_connections"] == 0
def test_user_client_count_db_connect_fail_2(bouncer) -> None:
test_user = "pswcheck_not_in_auth_file"
test_dbname = "user_passthrough"
users = bouncer.admin("SHOW USERS", row_factory=dict_row)
user = next(user for user in users if user["name"] == test_user)
assert user["current_client_connections"] == 0
connect_args = {"dbname": test_dbname, "user": test_user}
with pytest.raises(psycopg.OperationalError, match="authentication failed"):
_ = bouncer.conn(**connect_args)
users = bouncer.admin("SHOW USERS", row_factory=dict_row)
user = next(user for user in users if user["name"] == test_user)
assert user["current_client_connections"] == 0
def test_user_client_count_db_connect_fail_3(bouncer) -> None:
test_user = "non_existent_user"
test_dbname = "user_passthrough"
users = bouncer.admin("SHOW USERS", row_factory=dict_row)
assert len([user for user in users if user["name"] == test_user]) == 0
connect_args = {"dbname": test_dbname, "user": test_user}
with pytest.raises(psycopg.OperationalError, match="authentication failed"):
_ = bouncer.conn(**connect_args)
users = bouncer.admin("SHOW USERS", row_factory=dict_row)
# We don't expect non-existent users which cannot authentiticate to show up
# in the stats at all. This would just pollute the stats output with people
# making typos or attackers trying random user accounts.
assert len([user for user in users if user["name"] == test_user]) == 0
def test_min_pool_size_with_lower_max_user_connections(bouncer):
# The p0x in test.init has min_pool_size set to 5. This should make
# the PgBouncer try to create a pool for maxedout2 user of size 5 after a
# client connects to the PgBouncer. However maxedout2 user has
# max_user_connections set to 2, so the final pool size should be only 2.
# Running a query for sufficient time for us to reach the final
# connection count in the pool and detect any evictions.
with bouncer.log_contains(r"new connection to server \(from", times=2):
with bouncer.log_contains("closing because: evicted", times=0):
bouncer.sleep(2, dbname="p0x", user="maxedout2")
def test_min_pool_size_with_lower_max_db_connections(bouncer):
# The p0x in test.init has min_pool_size set to 5. This should make
# the PgBouncer try to create a pool for puser1 user of size 5 after a client
# connects to the PgBouncer. However the db also has max_db_connections set
# to 2, so the final pool size should be only 2.
# Running a query for sufficient time for us to reach the final
# connection count in the pool and detect any evictions.
with bouncer.log_contains(r"new connection to server \(from", times=2):
with bouncer.log_contains("closing because: evicted", times=0):
bouncer.sleep(2, dbname="p0y", user="puser1")
async def test_reserve_pool_size(pg, bouncer):
bouncer.admin("set reserve_pool_size = 3")
bouncer.admin("set reserve_pool_timeout = 2")
# Disable tls to get more consistent timings
bouncer.admin("set server_tls_sslmode = disable")
with bouncer.log_contains("taking connection from reserve_pool", times=3):
# default_pool_size is 5, so half of the connections will need to wait
# until the reserve_pool_timeout (2 seconds) is reached. At that point
# 3 more connections should be allowed to continue.
result = bouncer.asleep(10, dbname="p1", times=10)
await asyncio.sleep(1)
assert pg.connection_count("p1") == 5
await asyncio.sleep(8)
assert pg.connection_count("p1") == 8
await result
async def test_user_reserve_pool_size(pg, bouncer):
bouncer.admin("set reserve_pool_timeout = 2")
# Disable tls to get more consistent timings
bouncer.admin("set server_tls_sslmode = disable")
with bouncer.log_contains("taking connection from reserve_pool", times=2):
# respoolsize1 user has a pool_size of 1 and reserve_pool_size of 2
# this means 1 connection should happen immediately while 2 out of
# the 3 remaining connections happen after reserve_pool_timeout
result = bouncer.asleep(10, dbname="p0a", user="respoolsize1", times=4)
await asyncio.sleep(1)
assert pg.connection_count(dbname="p0", users=("respoolsize1",)) == 1
await asyncio.sleep(8)
assert pg.connection_count(dbname="p0", users=("respoolsize1",)) == 3
await result
async def test_database_reserve_pool_size(pg, bouncer):
bouncer.admin("set reserve_pool_timeout = 2")
# Disable tls to get more consistent timings
bouncer.admin("set server_tls_sslmode = disable")
with bouncer.log_contains("taking connection from reserve_pool", times=2):
# p0 db has a pool_size of 2 and reserve_pool_size of 2
# this means 2 connections should happen immediately while 2 out of
# the 3 remaining connections happen after reserve_pool_timeout
result = bouncer.asleep(10, dbname="p0", user="bouncer", times=5)
await asyncio.sleep(1)
assert pg.connection_count(dbname="p0", users=("bouncer",)) == 2
await asyncio.sleep(8)
assert pg.connection_count(dbname="p0", users=("bouncer",)) == 4
await result
async def test_database_reserve_pool_size_old_param(pg, bouncer):
bouncer.admin("set reserve_pool_timeout = 2")
# Disable tls to get more consistent timings
bouncer.admin("set server_tls_sslmode = disable")
with bouncer.log_contains("taking connection from reserve_pool", times=2):
# p0a db has a pool_size of 2 and reserve_pool of 2
# this means 2 connections should happen immediately while 2 out of
# the 3 remaining connections happen after reserve_pool_timeout
result = bouncer.asleep(10, dbname="p0a", user="bouncer", times=5)
await asyncio.sleep(1)
assert pg.connection_count(dbname="p0", users=("bouncer",)) == 2
await asyncio.sleep(8)
assert pg.connection_count(dbname="p0", users=("bouncer",)) == 4
await result
async def test_max_db_connections(pg, bouncer):
# some users, doesn't matter which ones
users = ["muser1", "muser2", "puser1", "puser2", "postgres"]
# p2 has max_db_connections=4
await asyncio.gather(
*[bouncer.asleep(0.5, dbname="p2", user=u, times=2) for u in users]
)
# p2 in PgBouncer maps to p0 in Postgres
assert pg.connection_count("p0", users=users) == 4
async def test_max_user_connections(pg, bouncer):
# some users, doesn't matter which ones
dbnames = ["p7a", "p7b", "p7c"]
await asyncio.gather(
*[
bouncer.asleep(0.5, dbname=db, user="maxedout", times=3, connect_timeout=10)
for db in dbnames
]
)
assert pg.connection_count("p7", users=["maxedout"]) == 3
|