-
-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add guards for create/update mutation (#156)
* Add field/entity guards for create/update mutations * Add corrensponding tests for guards
- Loading branch information
Showing
4 changed files
with
292 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,152 @@ | ||
use std::collections::BTreeMap; | ||
|
||
use async_graphql::{dynamic::*, Response}; | ||
use sea_orm::{Database, DatabaseConnection}; | ||
use seaography::{Builder, BuilderContext, FnGuard, GuardsConfig}; | ||
use seaography_sqlite_example::entities::*; | ||
|
||
lazy_static::lazy_static! { | ||
static ref CONTEXT : BuilderContext = { | ||
let context = BuilderContext::default(); | ||
let mut entity_guards: BTreeMap<String, FnGuard> = BTreeMap::new(); | ||
entity_guards.insert("FilmCategory".into(), Box::new(|_ctx| { | ||
seaography::GuardAction::Block(None) | ||
})); | ||
let mut field_guards: BTreeMap<String, FnGuard> = BTreeMap::new(); | ||
field_guards.insert("Language.name".into(), Box::new(|_ctx| { | ||
seaography::GuardAction::Block(None) | ||
})); | ||
BuilderContext { | ||
guards: GuardsConfig { | ||
entity_guards, | ||
field_guards, | ||
}, | ||
..context | ||
} | ||
}; | ||
} | ||
|
||
pub fn schema( | ||
database: DatabaseConnection, | ||
depth: Option<usize>, | ||
complexity: Option<usize>, | ||
) -> Result<Schema, SchemaError> { | ||
let mut builder = Builder::new(&CONTEXT, database.clone()); | ||
seaography::register_entities!( | ||
builder, | ||
[ | ||
actor, | ||
address, | ||
category, | ||
city, | ||
country, | ||
customer, | ||
film, | ||
film_actor, | ||
film_category, | ||
film_text, | ||
inventory, | ||
language, | ||
payment, | ||
rental, | ||
staff, | ||
store, | ||
] | ||
); | ||
let schema = builder.schema_builder(); | ||
let schema = if let Some(depth) = depth { | ||
schema.limit_depth(depth) | ||
} else { | ||
schema | ||
}; | ||
let schema = if let Some(complexity) = complexity { | ||
schema.limit_complexity(complexity) | ||
} else { | ||
schema | ||
}; | ||
schema.data(database).finish() | ||
} | ||
|
||
pub async fn get_schema() -> Schema { | ||
let database = Database::connect("sqlite://sakila.db").await.unwrap(); | ||
let schema = schema(database, None, None).unwrap(); | ||
|
||
schema | ||
} | ||
|
||
pub fn assert_eq(a: Response, b: &str) { | ||
assert_eq!( | ||
a.data.into_json().unwrap(), | ||
serde_json::from_str::<serde_json::Value>(b).unwrap() | ||
) | ||
} | ||
|
||
#[tokio::test] | ||
async fn entity_guard_mutation() { | ||
let schema = get_schema().await; | ||
|
||
assert_eq( | ||
schema | ||
.execute( | ||
r#" | ||
mutation LanguageUpdate { | ||
languageUpdate( | ||
data: { lastUpdate: "2030-01-01 11:11:11 UTC" } | ||
filter: { languageId: { eq: 6 } } | ||
) { | ||
languageId | ||
} | ||
} | ||
"#, | ||
) | ||
.await, | ||
r#" | ||
{ | ||
"languageUpdate": [ | ||
{ | ||
"languageId": 6 | ||
} | ||
] | ||
} | ||
"#, | ||
); | ||
|
||
let response = schema | ||
.execute( | ||
r#" | ||
mutation FilmCategoryUpdate { | ||
filmCategoryUpdate( | ||
data: { filmId: 1, categoryId: 1, lastUpdate: "2030-01-01 11:11:11 UTC" } | ||
) { | ||
filmId | ||
} | ||
} | ||
"#, | ||
) | ||
.await; | ||
|
||
assert_eq!(response.errors.len(), 1); | ||
|
||
assert_eq!(response.errors[0].message, "Entity guard triggered."); | ||
} | ||
|
||
#[tokio::test] | ||
async fn field_guard_mutation() { | ||
let schema = get_schema().await; | ||
|
||
let response = schema | ||
.execute( | ||
r#" | ||
mutation LanguageUpdate { | ||
languageUpdate(data: { name: "Cantonese" }, filter: { languageId: { eq: 6 } }) { | ||
languageId | ||
} | ||
} | ||
"#, | ||
) | ||
.await; | ||
|
||
assert_eq!(response.errors.len(), 1); | ||
|
||
assert_eq!(response.errors[0].message, "Field guard triggered."); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters