Skip to content

Commit

Permalink
Fix OPA tests
Browse files Browse the repository at this point in the history
Signed-off-by: Jakub Smolar <[email protected]>
  • Loading branch information
jsmolar committed Nov 13, 2024
1 parent c719a9a commit f955995
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 43 deletions.
2 changes: 1 addition & 1 deletion testsuite/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def cfssl(testconfig, skip_or_fail):
return client


@pytest.fixture(scope="module")
@pytest.fixture(scope="session")
def mockserver(testconfig, skip_or_fail):
"""Returns mockserver"""
try:
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
"""
Tests for Open Policy Agent (OPA) policy pulled from external registry.
Registry is represented by Mockserver Expectation that returns Rego query.
"""

from time import sleep

import pytest

from testsuite.utils import rego_allow_header


pytestmark = [pytest.mark.authorino]


KEY = "test-key"
VALUE = "test-value"


@pytest.fixture(scope="function", autouse=True)
def reset_expectation(mockserver, module_label):
"""Updates Expectation with updated header"""
mockserver.create_response_expectation(module_label, rego_allow_header(KEY, VALUE))
sleep(2) # waits for cache to reset because of ttl=1


def test_caching(client, auth, mockserver, blame, module_label):
"""Tests that external policy is cached"""
response = client.get("/get", auth=auth, headers={KEY: VALUE})
assert response.status_code == 200

mockserver.create_response_expectation(module_label, rego_allow_header(blame(KEY), blame(VALUE)))

response = client.get("/get", auth=auth, headers={KEY: VALUE})
assert response.status_code == 200


def test_cache_refresh(client, auth, mockserver, blame, module_label):
"""Tests that policy is pull again from external registry after ttl expiration"""
response = client.get("/get", auth=auth, headers={KEY: VALUE})
assert response.status_code == 200

mockserver.create_response_expectation(module_label, rego_allow_header(blame(KEY), blame(VALUE)))
sleep(2)

response = client.get("/get", auth=auth, headers={KEY: VALUE})
assert response.status_code == 403
2 changes: 1 addition & 1 deletion testsuite/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def cert_builder(

def rego_allow_header(key, value):
"""Rego query that allows all requests that contain specific header with`key` and `value`"""
return f'allow {{ input.context.request.http.headers.{key} == "{value}" }}'
return f'allow {{ input.context.request.http.headers["{key}"] == "{value}" }}'


def add_port(url_str: str, return_netloc=True) -> Union[ParseResult, str]:
Expand Down

0 comments on commit f955995

Please sign in to comment.