2023-05-10 02:08:09 +00:00
|
|
|
mod parse;
|
2023-08-30 18:01:30 +00:00
|
|
|
use parse::Parse;
|
2023-05-10 02:08:09 +00:00
|
|
|
|
2023-07-29 18:47:25 +00:00
|
|
|
mod helpers;
|
|
|
|
use helpers::*;
|
|
|
|
|
2023-07-18 18:32:38 +00:00
|
|
|
#[macro_use]
|
|
|
|
mod util;
|
|
|
|
|
2023-07-29 18:47:25 +00:00
|
|
|
use std::collections::HashMap;
|
|
|
|
|
2023-05-10 02:08:09 +00:00
|
|
|
use surrealdb::dbs::Session;
|
|
|
|
use surrealdb::err::Error;
|
2023-07-29 18:47:25 +00:00
|
|
|
use surrealdb::iam::Role;
|
2023-05-10 02:08:09 +00:00
|
|
|
use surrealdb::sql::Value;
|
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
async fn remove_statement_table() -> Result<(), Error> {
|
|
|
|
let sql = "
|
|
|
|
DEFINE TABLE test SCHEMALESS;
|
|
|
|
REMOVE TABLE test;
|
|
|
|
INFO FOR DB;
|
|
|
|
";
|
2023-08-30 18:01:30 +00:00
|
|
|
let dbs = new_ds().await?;
|
2023-07-29 18:47:25 +00:00
|
|
|
let ses = Session::owner().with_ns("test").with_db("test");
|
2023-07-05 21:26:13 +00:00
|
|
|
let res = &mut dbs.execute(sql, &ses, None).await?;
|
2023-05-10 02:08:09 +00:00
|
|
|
assert_eq!(res.len(), 3);
|
|
|
|
//
|
|
|
|
let tmp = res.remove(0).result;
|
|
|
|
assert!(tmp.is_ok());
|
|
|
|
//
|
|
|
|
let tmp = res.remove(0).result;
|
|
|
|
assert!(tmp.is_ok());
|
|
|
|
//
|
|
|
|
let tmp = res.remove(0).result?;
|
|
|
|
let val = Value::parse(
|
|
|
|
"{
|
2023-05-31 12:35:29 +00:00
|
|
|
analyzers: {},
|
|
|
|
tokens: {},
|
|
|
|
functions: {},
|
|
|
|
params: {},
|
|
|
|
scopes: {},
|
2023-07-29 18:47:25 +00:00
|
|
|
tables: {},
|
|
|
|
users: {}
|
2023-05-10 02:08:09 +00:00
|
|
|
}",
|
|
|
|
);
|
|
|
|
assert_eq!(tmp, val);
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
async fn remove_statement_analyzer() -> Result<(), Error> {
|
|
|
|
let sql = "
|
2023-06-19 18:41:13 +00:00
|
|
|
DEFINE ANALYZER english TOKENIZERS blank,class FILTERS lowercase,snowball(english);
|
2023-05-10 02:08:09 +00:00
|
|
|
REMOVE ANALYZER english;
|
|
|
|
INFO FOR DB;
|
|
|
|
";
|
2023-08-30 18:01:30 +00:00
|
|
|
let dbs = new_ds().await?;
|
2023-07-29 18:47:25 +00:00
|
|
|
let ses = Session::owner().with_ns("test").with_db("test");
|
2023-07-05 21:26:13 +00:00
|
|
|
let res = &mut dbs.execute(sql, &ses, None).await?;
|
2023-05-10 02:08:09 +00:00
|
|
|
assert_eq!(res.len(), 3);
|
|
|
|
// Analyzer is defined
|
|
|
|
let tmp = res.remove(0).result;
|
|
|
|
assert!(tmp.is_ok());
|
|
|
|
// Analyzer is removed
|
|
|
|
let tmp = res.remove(0).result;
|
|
|
|
assert!(tmp.is_ok());
|
|
|
|
// Check infos output
|
|
|
|
let tmp = res.remove(0).result?;
|
|
|
|
let val = Value::parse(
|
|
|
|
"{
|
2023-05-31 12:35:29 +00:00
|
|
|
analyzers: {},
|
|
|
|
tokens: {},
|
|
|
|
functions: {},
|
|
|
|
params: {},
|
|
|
|
scopes: {},
|
2023-07-29 18:47:25 +00:00
|
|
|
tables: {},
|
|
|
|
users: {}
|
2023-05-10 02:08:09 +00:00
|
|
|
}",
|
|
|
|
);
|
|
|
|
assert_eq!(tmp, val);
|
|
|
|
Ok(())
|
|
|
|
}
|
2023-07-10 08:24:47 +00:00
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
async fn remove_statement_index() -> Result<(), Error> {
|
|
|
|
let sql = "
|
|
|
|
DEFINE INDEX uniq_isbn ON book FIELDS isbn UNIQUE;
|
|
|
|
DEFINE INDEX idx_author ON book FIELDS author;
|
|
|
|
DEFINE ANALYZER simple TOKENIZERS blank,class FILTERS lowercase;
|
|
|
|
DEFINE INDEX ft_title ON book FIELDS title SEARCH ANALYZER simple BM25 HIGHLIGHTS;
|
|
|
|
CREATE book:1 SET title = 'Rust Web Programming', isbn = '978-1803234694', author = 'Maxwell Flitton';
|
|
|
|
REMOVE INDEX uniq_isbn ON book;
|
|
|
|
REMOVE INDEX idx_author ON book;
|
|
|
|
REMOVE INDEX ft_title ON book;
|
|
|
|
INFO FOR TABLE book;
|
|
|
|
";
|
2023-08-30 18:01:30 +00:00
|
|
|
let dbs = new_ds().await?;
|
2023-07-29 18:47:25 +00:00
|
|
|
let ses = Session::owner().with_ns("test").with_db("test");
|
2023-07-10 08:24:47 +00:00
|
|
|
let res = &mut dbs.execute(sql, &ses, None).await?;
|
|
|
|
assert_eq!(res.len(), 9);
|
|
|
|
for _ in 0..8 {
|
|
|
|
let tmp = res.remove(0).result;
|
|
|
|
assert!(tmp.is_ok());
|
|
|
|
}
|
|
|
|
// Check infos output
|
|
|
|
let tmp = res.remove(0).result?;
|
|
|
|
let val = Value::parse(
|
|
|
|
"{
|
|
|
|
events: {},
|
|
|
|
fields: {},
|
|
|
|
indexes: {},
|
|
|
|
tables: {},
|
|
|
|
}",
|
|
|
|
);
|
|
|
|
assert_eq!(tmp, val);
|
|
|
|
|
|
|
|
let mut tx = dbs.transaction(false, false).await?;
|
|
|
|
for ix in ["uniq_isbn", "idx_author", "ft_title"] {
|
2023-07-18 18:32:38 +00:00
|
|
|
assert_empty_prefix!(&mut tx, surrealdb::key::index::all::new("test", "test", "book", ix));
|
2023-07-10 08:24:47 +00:00
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
2023-07-29 18:47:25 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// Permissions
|
|
|
|
//
|
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
async fn permissions_checks_remove_ns() {
|
|
|
|
let scenario = HashMap::from([
|
|
|
|
("prepare", "DEFINE NAMESPACE NS"),
|
|
|
|
("test", "REMOVE NAMESPACE NS"),
|
|
|
|
("check", "INFO FOR ROOT"),
|
|
|
|
]);
|
|
|
|
|
|
|
|
// Define the expected results for the check statement when the test statement succeeded and when it failed
|
|
|
|
let check_results = [
|
|
|
|
vec!["{ namespaces: { }, users: { } }"],
|
|
|
|
vec!["{ namespaces: { NS: 'DEFINE NAMESPACE NS' }, users: { } }"],
|
|
|
|
];
|
|
|
|
|
|
|
|
let test_cases = [
|
|
|
|
// Root level
|
|
|
|
((().into(), Role::Owner), ("NS", "DB"), true),
|
|
|
|
((().into(), Role::Editor), ("NS", "DB"), true),
|
|
|
|
((().into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
// Namespace level
|
|
|
|
((("NS",).into(), Role::Owner), ("NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Owner), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Editor), ("NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Editor), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Viewer), ("OTHER_NS", "DB"), false),
|
|
|
|
// Database level
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("OTHER_NS", "DB"), false),
|
|
|
|
];
|
|
|
|
|
|
|
|
let res = iam_check_cases(test_cases.iter(), &scenario, check_results).await;
|
|
|
|
assert!(res.is_ok(), "{}", res.unwrap_err());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
async fn permissions_checks_remove_db() {
|
|
|
|
let scenario = HashMap::from([
|
|
|
|
("prepare", "DEFINE DATABASE DB"),
|
|
|
|
("test", "REMOVE DATABASE DB"),
|
|
|
|
("check", "INFO FOR NS"),
|
|
|
|
]);
|
|
|
|
|
|
|
|
// Define the expected results for the check statement when the test statement succeeded and when it failed
|
|
|
|
let check_results = [
|
2023-08-18 13:21:02 +00:00
|
|
|
vec!["{ databases: { }, tokens: { }, users: { } }"],
|
|
|
|
vec!["{ databases: { DB: 'DEFINE DATABASE DB' }, tokens: { }, users: { } }"],
|
2023-07-29 18:47:25 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
let test_cases = [
|
|
|
|
// Root level
|
|
|
|
((().into(), Role::Owner), ("NS", "DB"), true),
|
|
|
|
((().into(), Role::Editor), ("NS", "DB"), true),
|
|
|
|
((().into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
// Namespace level
|
|
|
|
((("NS",).into(), Role::Owner), ("NS", "DB"), true),
|
|
|
|
((("NS",).into(), Role::Owner), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Editor), ("NS", "DB"), true),
|
|
|
|
((("NS",).into(), Role::Editor), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Viewer), ("OTHER_NS", "DB"), false),
|
|
|
|
// Database level
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("OTHER_NS", "DB"), false),
|
|
|
|
];
|
|
|
|
|
|
|
|
let res = iam_check_cases(test_cases.iter(), &scenario, check_results).await;
|
|
|
|
assert!(res.is_ok(), "{}", res.unwrap_err());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
async fn permissions_checks_remove_function() {
|
|
|
|
let scenario = HashMap::from([
|
|
|
|
("prepare", "DEFINE FUNCTION fn::greet() {RETURN \"Hello\";}"),
|
|
|
|
("test", "REMOVE FUNCTION fn::greet()"),
|
|
|
|
("check", "INFO FOR DB"),
|
|
|
|
]);
|
|
|
|
|
|
|
|
// Define the expected results for the check statement when the test statement succeeded and when it failed
|
|
|
|
let check_results = [
|
2023-08-18 13:21:02 +00:00
|
|
|
vec!["{ analyzers: { }, functions: { }, params: { }, scopes: { }, tables: { }, tokens: { }, users: { } }"],
|
|
|
|
vec!["{ analyzers: { }, functions: { greet: \"DEFINE FUNCTION fn::greet() { RETURN 'Hello'; }\" }, params: { }, scopes: { }, tables: { }, tokens: { }, users: { } }"],
|
2023-07-29 18:47:25 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
let test_cases = [
|
|
|
|
// Root level
|
|
|
|
((().into(), Role::Owner), ("NS", "DB"), true),
|
|
|
|
((().into(), Role::Editor), ("NS", "DB"), true),
|
|
|
|
((().into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
// Namespace level
|
|
|
|
((("NS",).into(), Role::Owner), ("NS", "DB"), true),
|
|
|
|
((("NS",).into(), Role::Owner), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Editor), ("NS", "DB"), true),
|
|
|
|
((("NS",).into(), Role::Editor), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Viewer), ("OTHER_NS", "DB"), false),
|
|
|
|
// Database level
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("NS", "DB"), true),
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("NS", "DB"), true),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("OTHER_NS", "DB"), false),
|
|
|
|
];
|
|
|
|
|
|
|
|
let res = iam_check_cases(test_cases.iter(), &scenario, check_results).await;
|
|
|
|
assert!(res.is_ok(), "{}", res.unwrap_err());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
async fn permissions_checks_remove_analyzer() {
|
|
|
|
let scenario = HashMap::from([
|
|
|
|
("prepare", "DEFINE ANALYZER analyzer TOKENIZERS BLANK"),
|
|
|
|
("test", "REMOVE ANALYZER analyzer"),
|
|
|
|
("check", "INFO FOR DB"),
|
|
|
|
]);
|
|
|
|
|
|
|
|
// Define the expected results for the check statement when the test statement succeeded and when it failed
|
|
|
|
let check_results = [
|
2023-08-18 13:21:02 +00:00
|
|
|
vec!["{ analyzers: { }, functions: { }, params: { }, scopes: { }, tables: { }, tokens: { }, users: { } }"],
|
|
|
|
vec!["{ analyzers: { analyzer: 'DEFINE ANALYZER analyzer TOKENIZERS BLANK' }, functions: { }, params: { }, scopes: { }, tables: { }, tokens: { }, users: { } }"],
|
2023-07-29 18:47:25 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
let test_cases = [
|
|
|
|
// Root level
|
|
|
|
((().into(), Role::Owner), ("NS", "DB"), true),
|
|
|
|
((().into(), Role::Editor), ("NS", "DB"), true),
|
|
|
|
((().into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
// Namespace level
|
|
|
|
((("NS",).into(), Role::Owner), ("NS", "DB"), true),
|
|
|
|
((("NS",).into(), Role::Owner), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Editor), ("NS", "DB"), true),
|
|
|
|
((("NS",).into(), Role::Editor), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Viewer), ("OTHER_NS", "DB"), false),
|
|
|
|
// Database level
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("NS", "DB"), true),
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("NS", "DB"), true),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("OTHER_NS", "DB"), false),
|
|
|
|
];
|
|
|
|
|
|
|
|
let res = iam_check_cases(test_cases.iter(), &scenario, check_results).await;
|
|
|
|
assert!(res.is_ok(), "{}", res.unwrap_err());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
async fn permissions_checks_remove_ns_token() {
|
|
|
|
let scenario = HashMap::from([
|
|
|
|
("prepare", "DEFINE TOKEN token ON NS TYPE HS512 VALUE 'secret'"),
|
|
|
|
("test", "REMOVE TOKEN token ON NS"),
|
|
|
|
("check", "INFO FOR NS"),
|
|
|
|
]);
|
|
|
|
|
|
|
|
// Define the expected results for the check statement when the test statement succeeded and when it failed
|
|
|
|
let check_results = [
|
2023-08-18 13:21:02 +00:00
|
|
|
vec!["{ databases: { }, tokens: { }, users: { } }"],
|
|
|
|
vec!["{ databases: { }, tokens: { token: \"DEFINE TOKEN token ON NAMESPACE TYPE HS512 VALUE 'secret'\" }, users: { } }"],
|
2023-07-29 18:47:25 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
let test_cases = [
|
|
|
|
// Root level
|
|
|
|
((().into(), Role::Owner), ("NS", "DB"), true),
|
|
|
|
((().into(), Role::Editor), ("NS", "DB"), false),
|
|
|
|
((().into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
// Namespace level
|
|
|
|
((("NS",).into(), Role::Owner), ("NS", "DB"), true),
|
|
|
|
((("NS",).into(), Role::Owner), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Editor), ("NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Editor), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Viewer), ("OTHER_NS", "DB"), false),
|
|
|
|
// Database level
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("OTHER_NS", "DB"), false),
|
|
|
|
];
|
|
|
|
|
|
|
|
let res = iam_check_cases(test_cases.iter(), &scenario, check_results).await;
|
|
|
|
assert!(res.is_ok(), "{}", res.unwrap_err());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
async fn permissions_checks_remove_db_token() {
|
|
|
|
let scenario = HashMap::from([
|
|
|
|
("prepare", "DEFINE TOKEN token ON DB TYPE HS512 VALUE 'secret'"),
|
|
|
|
("test", "REMOVE TOKEN token ON DB"),
|
|
|
|
("check", "INFO FOR DB"),
|
|
|
|
]);
|
|
|
|
|
|
|
|
// Define the expected results for the check statement when the test statement succeeded and when it failed
|
|
|
|
let check_results = [
|
2023-08-18 13:21:02 +00:00
|
|
|
vec!["{ analyzers: { }, functions: { }, params: { }, scopes: { }, tables: { }, tokens: { }, users: { } }"],
|
|
|
|
vec!["{ analyzers: { }, functions: { }, params: { }, scopes: { }, tables: { }, tokens: { token: \"DEFINE TOKEN token ON DATABASE TYPE HS512 VALUE 'secret'\" }, users: { } }"],
|
2023-07-29 18:47:25 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
let test_cases = [
|
|
|
|
// Root level
|
|
|
|
((().into(), Role::Owner), ("NS", "DB"), true),
|
|
|
|
((().into(), Role::Editor), ("NS", "DB"), false),
|
|
|
|
((().into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
// Namespace level
|
|
|
|
((("NS",).into(), Role::Owner), ("NS", "DB"), true),
|
|
|
|
((("NS",).into(), Role::Owner), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Editor), ("NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Editor), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Viewer), ("OTHER_NS", "DB"), false),
|
|
|
|
// Database level
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("NS", "DB"), true),
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("OTHER_NS", "DB"), false),
|
|
|
|
];
|
|
|
|
|
|
|
|
let res = iam_check_cases(test_cases.iter(), &scenario, check_results).await;
|
|
|
|
assert!(res.is_ok(), "{}", res.unwrap_err());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
async fn permissions_checks_remove_root_user() {
|
|
|
|
let scenario = HashMap::from([
|
|
|
|
("prepare", "DEFINE USER user ON ROOT PASSHASH 'secret' ROLES VIEWER"),
|
|
|
|
("test", "REMOVE USER user ON ROOT"),
|
|
|
|
("check", "INFO FOR ROOT"),
|
|
|
|
]);
|
|
|
|
|
|
|
|
// Define the expected results for the check statement when the test statement succeeded and when it failed
|
|
|
|
let check_results = [
|
|
|
|
vec!["{ namespaces: { }, users: { } }"],
|
|
|
|
vec!["{ namespaces: { }, users: { user: \"DEFINE USER user ON ROOT PASSHASH 'secret' ROLES VIEWER\" } }"],
|
|
|
|
];
|
|
|
|
|
|
|
|
let test_cases = [
|
|
|
|
// Root level
|
|
|
|
((().into(), Role::Owner), ("NS", "DB"), true),
|
|
|
|
((().into(), Role::Editor), ("NS", "DB"), false),
|
|
|
|
((().into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
// Namespace level
|
|
|
|
((("NS",).into(), Role::Owner), ("NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Owner), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Editor), ("NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Editor), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Viewer), ("OTHER_NS", "DB"), false),
|
|
|
|
// Database level
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("OTHER_NS", "DB"), false),
|
|
|
|
];
|
|
|
|
|
|
|
|
let res = iam_check_cases(test_cases.iter(), &scenario, check_results).await;
|
|
|
|
assert!(res.is_ok(), "{}", res.unwrap_err());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
async fn permissions_checks_remove_ns_user() {
|
|
|
|
let scenario = HashMap::from([
|
|
|
|
("prepare", "DEFINE USER user ON NS PASSHASH 'secret' ROLES VIEWER"),
|
|
|
|
("test", "REMOVE USER user ON NS"),
|
|
|
|
("check", "INFO FOR NS"),
|
|
|
|
]);
|
|
|
|
|
|
|
|
// Define the expected results for the check statement when the test statement succeeded and when it failed
|
|
|
|
let check_results = [
|
2023-08-18 13:21:02 +00:00
|
|
|
vec!["{ databases: { }, tokens: { }, users: { } }"],
|
|
|
|
vec!["{ databases: { }, tokens: { }, users: { user: \"DEFINE USER user ON NAMESPACE PASSHASH 'secret' ROLES VIEWER\" } }"],
|
2023-07-29 18:47:25 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
let test_cases = [
|
|
|
|
// Root level
|
|
|
|
((().into(), Role::Owner), ("NS", "DB"), true),
|
|
|
|
((().into(), Role::Editor), ("NS", "DB"), false),
|
|
|
|
((().into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
// Namespace level
|
|
|
|
((("NS",).into(), Role::Owner), ("NS", "DB"), true),
|
|
|
|
((("NS",).into(), Role::Owner), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Editor), ("NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Editor), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Viewer), ("OTHER_NS", "DB"), false),
|
|
|
|
// Database level
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("OTHER_NS", "DB"), false),
|
|
|
|
];
|
|
|
|
|
|
|
|
let res = iam_check_cases(test_cases.iter(), &scenario, check_results).await;
|
|
|
|
assert!(res.is_ok(), "{}", res.unwrap_err());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
async fn permissions_checks_remove_db_user() {
|
|
|
|
let scenario = HashMap::from([
|
|
|
|
("prepare", "DEFINE USER user ON DB PASSHASH 'secret' ROLES VIEWER"),
|
|
|
|
("test", "REMOVE USER user ON DB"),
|
|
|
|
("check", "INFO FOR DB"),
|
|
|
|
]);
|
|
|
|
|
|
|
|
// Define the expected results for the check statement when the test statement succeeded and when it failed
|
|
|
|
let check_results = [
|
2023-08-18 13:21:02 +00:00
|
|
|
vec!["{ analyzers: { }, functions: { }, params: { }, scopes: { }, tables: { }, tokens: { }, users: { } }"],
|
|
|
|
vec!["{ analyzers: { }, functions: { }, params: { }, scopes: { }, tables: { }, tokens: { }, users: { user: \"DEFINE USER user ON DATABASE PASSHASH 'secret' ROLES VIEWER\" } }"],
|
2023-07-29 18:47:25 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
let test_cases = [
|
|
|
|
// Root level
|
|
|
|
((().into(), Role::Owner), ("NS", "DB"), true),
|
|
|
|
((().into(), Role::Editor), ("NS", "DB"), false),
|
|
|
|
((().into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
// Namespace level
|
|
|
|
((("NS",).into(), Role::Owner), ("NS", "DB"), true),
|
|
|
|
((("NS",).into(), Role::Owner), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Editor), ("NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Editor), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Viewer), ("OTHER_NS", "DB"), false),
|
|
|
|
// Database level
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("NS", "DB"), true),
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("OTHER_NS", "DB"), false),
|
|
|
|
];
|
|
|
|
|
|
|
|
let res = iam_check_cases(test_cases.iter(), &scenario, check_results).await;
|
|
|
|
assert!(res.is_ok(), "{}", res.unwrap_err());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
async fn permissions_checks_remove_scope() {
|
|
|
|
let scenario = HashMap::from([
|
|
|
|
("prepare", "DEFINE SCOPE account SESSION 1h;"),
|
|
|
|
("test", "REMOVE SCOPE account"),
|
|
|
|
("check", "INFO FOR DB"),
|
|
|
|
]);
|
|
|
|
|
|
|
|
// Define the expected results for the check statement when the test statement succeeded and when it failed
|
|
|
|
let check_results = [
|
2023-08-18 13:21:02 +00:00
|
|
|
vec!["{ analyzers: { }, functions: { }, params: { }, scopes: { }, tables: { }, tokens: { }, users: { } }"],
|
|
|
|
vec!["{ analyzers: { }, functions: { }, params: { }, scopes: { account: 'DEFINE SCOPE account SESSION 1h' }, tables: { }, tokens: { }, users: { } }"],
|
2023-07-29 18:47:25 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
let test_cases = [
|
|
|
|
// Root level
|
|
|
|
((().into(), Role::Owner), ("NS", "DB"), true),
|
|
|
|
((().into(), Role::Editor), ("NS", "DB"), true),
|
|
|
|
((().into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
// Namespace level
|
|
|
|
((("NS",).into(), Role::Owner), ("NS", "DB"), true),
|
|
|
|
((("NS",).into(), Role::Owner), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Editor), ("NS", "DB"), true),
|
|
|
|
((("NS",).into(), Role::Editor), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Viewer), ("OTHER_NS", "DB"), false),
|
|
|
|
// Database level
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("NS", "DB"), true),
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("NS", "DB"), true),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("OTHER_NS", "DB"), false),
|
|
|
|
];
|
|
|
|
|
|
|
|
let res = iam_check_cases(test_cases.iter(), &scenario, check_results).await;
|
|
|
|
assert!(res.is_ok(), "{}", res.unwrap_err());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
async fn permissions_checks_remove_param() {
|
|
|
|
let scenario = HashMap::from([
|
|
|
|
("prepare", "DEFINE PARAM $param VALUE 'foo'"),
|
|
|
|
("test", "REMOVE PARAM $param"),
|
|
|
|
("check", "INFO FOR DB"),
|
|
|
|
]);
|
|
|
|
|
|
|
|
// Define the expected results for the check statement when the test statement succeeded and when it failed
|
|
|
|
let check_results = [
|
2023-08-18 13:21:02 +00:00
|
|
|
vec!["{ analyzers: { }, functions: { }, params: { }, scopes: { }, tables: { }, tokens: { }, users: { } }"],
|
|
|
|
vec!["{ analyzers: { }, functions: { }, params: { param: \"DEFINE PARAM $param VALUE 'foo'\" }, scopes: { }, tables: { }, tokens: { }, users: { } }"],
|
2023-07-29 18:47:25 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
let test_cases = [
|
|
|
|
// Root level
|
|
|
|
((().into(), Role::Owner), ("NS", "DB"), true),
|
|
|
|
((().into(), Role::Editor), ("NS", "DB"), true),
|
|
|
|
((().into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
// Namespace level
|
|
|
|
((("NS",).into(), Role::Owner), ("NS", "DB"), true),
|
|
|
|
((("NS",).into(), Role::Owner), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Editor), ("NS", "DB"), true),
|
|
|
|
((("NS",).into(), Role::Editor), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Viewer), ("OTHER_NS", "DB"), false),
|
|
|
|
// Database level
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("NS", "DB"), true),
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("NS", "DB"), true),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("OTHER_NS", "DB"), false),
|
|
|
|
];
|
|
|
|
|
|
|
|
let res = iam_check_cases(test_cases.iter(), &scenario, check_results).await;
|
|
|
|
assert!(res.is_ok(), "{}", res.unwrap_err());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
async fn permissions_checks_remove_table() {
|
|
|
|
let scenario = HashMap::from([
|
|
|
|
("prepare", "DEFINE TABLE TB"),
|
|
|
|
("test", "REMOVE TABLE TB"),
|
|
|
|
("check", "INFO FOR DB"),
|
|
|
|
]);
|
|
|
|
|
|
|
|
// Define the expected results for the check statement when the test statement succeeded and when it failed
|
|
|
|
let check_results = [
|
2023-08-18 13:21:02 +00:00
|
|
|
vec!["{ analyzers: { }, functions: { }, params: { }, scopes: { }, tables: { }, tokens: { }, users: { } }"],
|
|
|
|
vec!["{ analyzers: { }, functions: { }, params: { }, scopes: { }, tables: { TB: 'DEFINE TABLE TB SCHEMALESS' }, tokens: { }, users: { } }"],
|
2023-07-29 18:47:25 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
let test_cases = [
|
|
|
|
// Root level
|
|
|
|
((().into(), Role::Owner), ("NS", "DB"), true),
|
|
|
|
((().into(), Role::Editor), ("NS", "DB"), true),
|
|
|
|
((().into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
// Namespace level
|
|
|
|
((("NS",).into(), Role::Owner), ("NS", "DB"), true),
|
|
|
|
((("NS",).into(), Role::Owner), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Editor), ("NS", "DB"), true),
|
|
|
|
((("NS",).into(), Role::Editor), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Viewer), ("OTHER_NS", "DB"), false),
|
|
|
|
// Database level
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("NS", "DB"), true),
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("NS", "DB"), true),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("OTHER_NS", "DB"), false),
|
|
|
|
];
|
|
|
|
|
|
|
|
let res = iam_check_cases(test_cases.iter(), &scenario, check_results).await;
|
|
|
|
assert!(res.is_ok(), "{}", res.unwrap_err());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
async fn permissions_checks_remove_event() {
|
|
|
|
let scenario = HashMap::from([
|
|
|
|
("prepare", "DEFINE EVENT event ON TABLE TB WHEN true THEN RETURN 'foo'"),
|
|
|
|
("test", "REMOVE EVENT event ON TABLE TB"),
|
|
|
|
("check", "INFO FOR TABLE TB"),
|
|
|
|
]);
|
|
|
|
|
|
|
|
// Define the expected results for the check statement when the test statement succeeded and when it failed
|
|
|
|
let check_results = [
|
|
|
|
vec!["{ events: { }, fields: { }, indexes: { }, tables: { } }"],
|
|
|
|
vec!["{ events: { event: \"DEFINE EVENT event ON TB WHEN true THEN (RETURN 'foo')\" }, fields: { }, indexes: { }, tables: { } }"],
|
|
|
|
];
|
|
|
|
|
|
|
|
let test_cases = [
|
|
|
|
// Root level
|
|
|
|
((().into(), Role::Owner), ("NS", "DB"), true),
|
|
|
|
((().into(), Role::Editor), ("NS", "DB"), true),
|
|
|
|
((().into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
// Namespace level
|
|
|
|
((("NS",).into(), Role::Owner), ("NS", "DB"), true),
|
|
|
|
((("NS",).into(), Role::Owner), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Editor), ("NS", "DB"), true),
|
|
|
|
((("NS",).into(), Role::Editor), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Viewer), ("OTHER_NS", "DB"), false),
|
|
|
|
// Database level
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("NS", "DB"), true),
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("NS", "DB"), true),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("OTHER_NS", "DB"), false),
|
|
|
|
];
|
|
|
|
|
|
|
|
let res = iam_check_cases(test_cases.iter(), &scenario, check_results).await;
|
|
|
|
assert!(res.is_ok(), "{}", res.unwrap_err());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
async fn permissions_checks_remove_field() {
|
|
|
|
let scenario = HashMap::from([
|
|
|
|
("prepare", "DEFINE FIELD field ON TABLE TB"),
|
|
|
|
("test", "REMOVE FIELD field ON TABLE TB"),
|
|
|
|
("check", "INFO FOR TABLE TB"),
|
|
|
|
]);
|
|
|
|
|
|
|
|
// Define the expected results for the check statement when the test statement succeeded and when it failed
|
|
|
|
let check_results = [
|
|
|
|
vec!["{ events: { }, fields: { }, indexes: { }, tables: { } }"],
|
|
|
|
vec!["{ events: { }, fields: { field: 'DEFINE FIELD field ON TB' }, indexes: { }, tables: { } }"],
|
|
|
|
];
|
|
|
|
|
|
|
|
let test_cases = [
|
|
|
|
// Root level
|
|
|
|
((().into(), Role::Owner), ("NS", "DB"), true),
|
|
|
|
((().into(), Role::Editor), ("NS", "DB"), true),
|
|
|
|
((().into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
// Namespace level
|
|
|
|
((("NS",).into(), Role::Owner), ("NS", "DB"), true),
|
|
|
|
((("NS",).into(), Role::Owner), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Editor), ("NS", "DB"), true),
|
|
|
|
((("NS",).into(), Role::Editor), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Viewer), ("OTHER_NS", "DB"), false),
|
|
|
|
// Database level
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("NS", "DB"), true),
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("NS", "DB"), true),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("OTHER_NS", "DB"), false),
|
|
|
|
];
|
|
|
|
|
|
|
|
let res = iam_check_cases(test_cases.iter(), &scenario, check_results).await;
|
|
|
|
assert!(res.is_ok(), "{}", res.unwrap_err());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
async fn permissions_checks_remove_index() {
|
|
|
|
let scenario = HashMap::from([
|
|
|
|
("prepare", "DEFINE INDEX index ON TABLE TB FIELDS field"),
|
|
|
|
("test", "REMOVE INDEX index ON TABLE TB"),
|
|
|
|
("check", "INFO FOR TABLE TB"),
|
|
|
|
]);
|
|
|
|
|
|
|
|
// Define the expected results for the check statement when the test statement succeeded and when it failed
|
|
|
|
let check_results = [
|
|
|
|
vec!["{ events: { }, fields: { }, indexes: { }, tables: { } }"],
|
|
|
|
vec!["{ events: { }, fields: { }, indexes: { index: 'DEFINE INDEX index ON TB FIELDS field' }, tables: { } }"],
|
|
|
|
];
|
|
|
|
|
|
|
|
let test_cases = [
|
|
|
|
// Root level
|
|
|
|
((().into(), Role::Owner), ("NS", "DB"), true),
|
|
|
|
((().into(), Role::Editor), ("NS", "DB"), true),
|
|
|
|
((().into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
// Namespace level
|
|
|
|
((("NS",).into(), Role::Owner), ("NS", "DB"), true),
|
|
|
|
((("NS",).into(), Role::Owner), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Editor), ("NS", "DB"), true),
|
|
|
|
((("NS",).into(), Role::Editor), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
((("NS",).into(), Role::Viewer), ("OTHER_NS", "DB"), false),
|
|
|
|
// Database level
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("NS", "DB"), true),
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Owner), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("NS", "DB"), true),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Editor), ("OTHER_NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("NS", "DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("NS", "OTHER_DB"), false),
|
|
|
|
((("NS", "DB").into(), Role::Viewer), ("OTHER_NS", "DB"), false),
|
|
|
|
];
|
|
|
|
|
|
|
|
let res = iam_check_cases(test_cases.iter(), &scenario, check_results).await;
|
|
|
|
assert!(res.is_ok(), "{}", res.unwrap_err());
|
|
|
|
}
|