Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Auth and multi-extension integration tests #99

Merged
merged 7 commits into from
Oct 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 46 additions & 7 deletions src/configuration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,7 @@ pub struct Extension {
pub struct Action {
pub extension: String,
pub scope: String,
#[allow(dead_code)]
#[serde(default)]
pub data: Vec<DataItem>,
}

Expand Down Expand Up @@ -624,10 +624,15 @@ mod test {

const CONFIG: &str = r#"{
"extensions": {
"authorino": {
"type": "auth",
"endpoint": "authorino-cluster",
"failureMode": "deny"
},
"limitador": {
"type": "ratelimit",
"endpoint": "limitador-cluster",
"failureMode": "deny"
"failureMode": "allow"
}
},
"policies": [
Expand Down Expand Up @@ -656,6 +661,10 @@ mod test {
}]
}],
"actions": [
{
"extension": "authorino",
"scope": "authconfig-A"
},
{
"extension": "limitador",
"scope": "rlp-ns-A/rlp-name-A",
Expand Down Expand Up @@ -687,6 +696,25 @@ mod test {
let filter_config = res.unwrap();
assert_eq!(filter_config.policies.len(), 1);

let extensions = &filter_config.extensions;
assert_eq!(extensions.len(), 2);

if let Some(auth_extension) = extensions.get("authorino") {
assert_eq!(auth_extension.extension_type, ExtensionType::Auth);
assert_eq!(auth_extension.endpoint, "authorino-cluster");
assert_eq!(auth_extension.failure_mode, FailureMode::Deny);
} else {
panic!()
}

if let Some(rl_extension) = extensions.get("limitador") {
assert_eq!(rl_extension.extension_type, ExtensionType::RateLimit);
assert_eq!(rl_extension.endpoint, "limitador-cluster");
assert_eq!(rl_extension.failure_mode, FailureMode::Allow);
} else {
panic!()
}

let rules = &filter_config.policies[0].rules;
assert_eq!(rules.len(), 1);

Expand All @@ -697,10 +725,21 @@ mod test {
assert_eq!(all_of_conditions.len(), 3);

let actions = &rules[0].actions;
assert_eq!(actions.len(), 1);
assert_eq!(actions.len(), 2);

let data_items = &actions[0].data;
assert_eq!(data_items.len(), 2);
let auth_action = &actions[0];
assert_eq!(auth_action.extension, "authorino");
assert_eq!(auth_action.scope, "authconfig-A");

let rl_action = &actions[1];
assert_eq!(rl_action.extension, "limitador");
assert_eq!(rl_action.scope, "rlp-ns-A/rlp-name-A");

let auth_data_items = &auth_action.data;
assert_eq!(auth_data_items.len(), 0);

let rl_data_items = &rl_action.data;
assert_eq!(rl_data_items.len(), 2);

// TODO(eastizle): DataItem does not implement PartialEq, add it only for testing?
//assert_eq!(
Expand All @@ -713,14 +752,14 @@ mod test {
// }
//);

if let DataType::Static(static_item) = &data_items[0].item {
if let DataType::Static(static_item) = &rl_data_items[0].item {
assert_eq!(static_item.key, "rlp-ns-A/rlp-name-A");
assert_eq!(static_item.value, "1");
} else {
panic!();
}

if let DataType::Selector(selector_item) = &data_items[1].item {
if let DataType::Selector(selector_item) = &rl_data_items[1].item {
assert_eq!(selector_item.selector, "auth.metadata.username");
assert!(selector_item.key.is_none());
assert!(selector_item.default.is_none());
Expand Down
34 changes: 15 additions & 19 deletions src/operation_dispatcher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,13 @@ use std::collections::HashMap;
use std::rc::Rc;
use std::time::Duration;

#[allow(dead_code)]
#[derive(PartialEq, Debug, Clone, Copy)]
pub(crate) enum State {
Pending,
Waiting,
Done,
}

#[allow(dead_code)]
impl State {
fn next(&mut self) {
match self {
Expand All @@ -33,7 +31,6 @@ impl State {
}
}

#[allow(dead_code)]
#[derive(Clone)]
pub(crate) struct Operation {
state: RefCell<State>,
Expand All @@ -46,7 +43,6 @@ pub(crate) struct Operation {
grpc_message_build_fn: GrpcMessageBuildFn,
}

#[allow(dead_code)]
impl Operation {
pub fn new(extension: Rc<Extension>, action: Action, service: Rc<GrpcServiceHandler>) -> Self {
Self {
Expand Down Expand Up @@ -105,22 +101,13 @@ impl Operation {
}
}

#[allow(dead_code)]
pub struct OperationDispatcher {
operations: Vec<Rc<Operation>>,
waiting_operations: HashMap<u32, Rc<Operation>>,
service_handlers: HashMap<String, Rc<GrpcServiceHandler>>,
}

#[allow(dead_code)]
impl OperationDispatcher {
pub fn default() -> Self {
OperationDispatcher {
operations: vec![],
waiting_operations: HashMap::default(),
service_handlers: HashMap::default(),
}
}
pub fn new(service_handlers: HashMap<String, Rc<GrpcServiceHandler>>) -> Self {
Self {
service_handlers,
Expand Down Expand Up @@ -152,12 +139,6 @@ impl OperationDispatcher {
self.operations.extend(operations);
}

pub fn get_current_operation_state(&self) -> Option<State> {
self.operations
.first()
.map(|operation| operation.get_state())
}

pub fn next(&mut self) -> Option<Rc<Operation>> {
if let Some((i, operation)) = self.operations.iter_mut().enumerate().next() {
match operation.get_state() {
Expand Down Expand Up @@ -199,6 +180,21 @@ impl OperationDispatcher {
None
}
}

#[cfg(test)]
pub fn default() -> Self {
OperationDispatcher {
operations: vec![],
waiting_operations: HashMap::default(),
service_handlers: HashMap::default(),
}
}
#[cfg(test)]
pub fn get_current_operation_state(&self) -> Option<State> {
self.operations
.first()
.map(|operation| operation.get_state())
}
}

fn grpc_call_fn(
Expand Down
5 changes: 0 additions & 5 deletions src/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ use std::time::Duration;

#[derive(Default)]
pub struct GrpcService {
#[allow(dead_code)]
extension: Rc<Extension>,
name: &'static str,
method: &'static str,
Expand Down Expand Up @@ -50,10 +49,6 @@ impl GrpcService {
fn method(&self) -> &str {
self.method
}
#[allow(dead_code)]
pub fn failure_mode(&self) -> &FailureMode {
&self.extension.failure_mode
}

pub fn process_grpc_response(
operation: Rc<Operation>,
Expand Down
1 change: 0 additions & 1 deletion src/service/auth.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ pub const AUTH_METHOD_NAME: &str = "Check";

pub struct AuthService;

#[allow(dead_code)]
impl AuthService {
pub fn request_message(ce_host: String) -> CheckRequest {
AuthService::build_check_req(ce_host)
Expand Down
Loading
Loading