From c87d86d6e32d58070756883e4e0381d66b9fa1ab Mon Sep 17 00:00:00 2001 From: mo khan Date: Fri, 27 Jun 2025 13:06:08 -0600 Subject: test: replace hardcoded path with relative path --- tests/common/factory_bot.rs | 6 +++--- tests/integration_tests.rs | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'tests') diff --git a/tests/common/factory_bot.rs b/tests/common/factory_bot.rs index 3c3810a7..6e45a01a 100644 --- a/tests/common/factory_bot.rs +++ b/tests/common/factory_bot.rs @@ -39,7 +39,7 @@ pub fn create_token() -> String { } pub fn build_cedar_authorizer() -> authzd::CedarAuthorizer { - authzd::CedarAuthorizer::new_from( - "/home/mokhax/src/gitlab.com/gitlab-org/software-supply-chain-security/authorization/authzd/etc/authzd", - ) + let realpath = std::fs::canonicalize("./etc/authzd").unwrap(); + let path = realpath.as_path(); + authzd::CedarAuthorizer::new_from(path) } diff --git a/tests/integration_tests.rs b/tests/integration_tests.rs index 63aaaadc..6e181f26 100644 --- a/tests/integration_tests.rs +++ b/tests/integration_tests.rs @@ -1,4 +1,4 @@ -use authzd::{CedarAuthorizer, CheckService}; +use authzd::CheckService; use common::*; use envoy_types::ext_authz::v3::pb::Authorization; use envoy_types::pb::envoy::service::auth::v3::attribute_context::HttpRequest; -- cgit v1.2.3