mirror of
https://github.com/neondatabase/neon.git
synced 2025-12-27 16:12:56 +00:00
72 lines
3.1 KiB
Python
72 lines
3.1 KiB
Python
from contextlib import closing
|
|
from uuid import uuid4
|
|
from fixtures.neon_fixtures import NeonEnvBuilder, NeonPageserverApiException
|
|
import pytest
|
|
|
|
|
|
def test_pageserver_auth(neon_env_builder: NeonEnvBuilder):
|
|
neon_env_builder.auth_enabled = True
|
|
env = neon_env_builder.init_start()
|
|
|
|
ps = env.pageserver
|
|
|
|
tenant_token = env.auth_keys.generate_tenant_token(env.initial_tenant.hex)
|
|
tenant_http_client = env.pageserver.http_client(tenant_token)
|
|
invalid_tenant_token = env.auth_keys.generate_tenant_token(uuid4().hex)
|
|
invalid_tenant_http_client = env.pageserver.http_client(invalid_tenant_token)
|
|
|
|
management_token = env.auth_keys.generate_management_token()
|
|
management_http_client = env.pageserver.http_client(management_token)
|
|
|
|
# this does not invoke auth check and only decodes jwt and checks it for validity
|
|
# check both tokens
|
|
ps.safe_psql("set FOO", password=tenant_token)
|
|
ps.safe_psql("set FOO", password=management_token)
|
|
|
|
new_timeline_id = env.neon_cli.create_branch('test_pageserver_auth',
|
|
tenant_id=env.initial_tenant)
|
|
|
|
# tenant can create branches
|
|
tenant_http_client.timeline_create(tenant_id=env.initial_tenant,
|
|
ancestor_timeline_id=new_timeline_id)
|
|
# console can create branches for tenant
|
|
management_http_client.timeline_create(tenant_id=env.initial_tenant,
|
|
ancestor_timeline_id=new_timeline_id)
|
|
|
|
# fail to create branch using token with different tenant_id
|
|
with pytest.raises(NeonPageserverApiException,
|
|
match='Forbidden: Tenant id mismatch. Permission denied'):
|
|
invalid_tenant_http_client.timeline_create(tenant_id=env.initial_tenant,
|
|
ancestor_timeline_id=new_timeline_id)
|
|
|
|
# create tenant using management token
|
|
management_http_client.tenant_create()
|
|
|
|
# fail to create tenant using tenant token
|
|
with pytest.raises(
|
|
NeonPageserverApiException,
|
|
match='Forbidden: Attempt to access management api with tenant scope. Permission denied'
|
|
):
|
|
tenant_http_client.tenant_create()
|
|
|
|
|
|
@pytest.mark.parametrize('with_safekeepers', [False, True])
|
|
def test_compute_auth_to_pageserver(neon_env_builder: NeonEnvBuilder, with_safekeepers: bool):
|
|
neon_env_builder.auth_enabled = True
|
|
if with_safekeepers:
|
|
neon_env_builder.num_safekeepers = 3
|
|
env = neon_env_builder.init_start()
|
|
|
|
branch = f'test_compute_auth_to_pageserver{with_safekeepers}'
|
|
env.neon_cli.create_branch(branch)
|
|
pg = env.postgres.create_start(branch)
|
|
|
|
with closing(pg.connect()) as conn:
|
|
with conn.cursor() as cur:
|
|
# we rely upon autocommit after each statement
|
|
# as waiting for acceptors happens there
|
|
cur.execute('CREATE TABLE t(key int primary key, value text)')
|
|
cur.execute("INSERT INTO t SELECT generate_series(1,100000), 'payload'")
|
|
cur.execute('SELECT sum(key) FROM t')
|
|
assert cur.fetchone() == (5000050000, )
|