surrealpatch/tests/graphql_integration.rs

280 lines
6.7 KiB
Rust
Raw Normal View History

2024-09-04 11:30:15 +00:00
mod common;
#[cfg(surrealdb_unstable)]
mod graphql_integration {
use std::time::Duration;
use http::header;
use reqwest::Client;
2024-09-04 11:30:15 +00:00
use serde_json::json;
use test_log::test;
use tracing::debug;
2024-09-04 11:30:15 +00:00
use ulid::Ulid;
use crate::common::{PASS, USER};
use super::common;
2024-09-04 11:30:15 +00:00
#[test(tokio::test)]
async fn basic() -> Result<(), Box<dyn std::error::Error>> {
let (addr, _server) = common::start_server_gql_without_auth().await.unwrap();
let gql_url = &format!("http://{addr}/graphql");
let sql_url = &format!("http://{addr}/sql");
let mut headers = reqwest::header::HeaderMap::new();
let ns = Ulid::new().to_string();
let db = Ulid::new().to_string();
headers.insert("surreal-ns", ns.parse()?);
headers.insert("surreal-db", db.parse()?);
headers.insert(header::ACCEPT, "application/json".parse()?);
let client = Client::builder()
2024-09-04 11:30:15 +00:00
.connect_timeout(Duration::from_millis(10))
.default_headers(headers)
.build()?;
// check errors with no tables
{
let res = client.post(gql_url).body("").send().await?;
assert_eq!(res.status(), 400);
let body = res.text().await?;
assert!(body.contains("no tables found in database"), "body: {body}")
}
// add schema and data
{
let res = client
.post(sql_url)
.body(
r#"
DEFINE TABLE foo SCHEMAFUL;
DEFINE FIELD val ON foo TYPE int;
CREATE foo:1 set val = 42;
CREATE foo:2 set val = 43;
"#,
)
.send()
.await?;
assert_eq!(res.status(), 200);
}
// fetch data via graphql
{
let res = client
.post(gql_url)
.body(json!({"query": r#"query{foo{id, val}}"#}).to_string())
.send()
.await?;
assert_eq!(res.status(), 200);
let body = res.text().await?;
let expected = json!({
"data": {
"foo": [
{
"id": "foo:1",
"val": 42
},
{
"id": "foo:2",
"val": 43
}
]
}
});
assert_eq!(expected.to_string(), body)
}
// test limit
{
let res = client
.post(gql_url)
.body(json!({"query": r#"query{foo(limit: 1){id, val}}"#}).to_string())
.send()
.await?;
assert_eq!(res.status(), 200);
let body = res.text().await?;
let expected = json!({
"data": {
"foo": [
{
"id": "foo:1",
"val": 42
}
]
}
});
assert_eq!(expected.to_string(), body)
}
// test start
{
let res = client
.post(gql_url)
.body(json!({"query": r#"query{foo(start: 1){id, val}}"#}).to_string())
.send()
.await?;
assert_eq!(res.status(), 200);
let body = res.text().await?;
let expected = json!({
"data": {
"foo": [
{
"id": "foo:2",
"val": 43
}
]
}
});
assert_eq!(expected.to_string(), body)
}
// test order
{
let res = client
.post(gql_url)
.body(json!({"query": r#"query{foo(order: {desc: val}){id}}"#}).to_string())
.send()
.await?;
assert_eq!(res.status(), 200);
let body = res.text().await?;
let expected = json!({
"data": {
"foo": [
{
"id": "foo:2",
},
{
"id": "foo:1",
}
]
}
});
assert_eq!(expected.to_string(), body)
}
// test filter
{
let res = client
.post(gql_url)
.body(json!({"query": r#"query{foo(filter: {val: {eq: 42}}){id}}"#}).to_string())
.send()
.await?;
assert_eq!(res.status(), 200);
let body = res.text().await?;
let expected = json!({
"data": {
"foo": [
{
"id": "foo:1",
}
]
}
});
assert_eq!(expected.to_string(), body)
}
Ok(())
}
#[test(tokio::test)]
async fn basic_auth() -> Result<(), Box<dyn std::error::Error>> {
let (addr, _server) = common::start_server_gql().await.unwrap();
let gql_url = &format!("http://{addr}/graphql");
let sql_url = &format!("http://{addr}/sql");
let signup_url = &format!("http://{addr}/signup");
let mut headers = reqwest::header::HeaderMap::new();
let ns = Ulid::new().to_string();
let db = Ulid::new().to_string();
headers.insert("surreal-ns", ns.parse()?);
headers.insert("surreal-db", db.parse()?);
headers.insert(header::ACCEPT, "application/json".parse()?);
let client = Client::builder()
.connect_timeout(Duration::from_millis(10))
.default_headers(headers)
.build()?;
// check errors on invalid auth
{
let res =
client.post(gql_url).basic_auth("invalid", Some("invalid")).body("").send().await?;
assert_eq!(res.status(), 401);
let body = res.text().await?;
assert!(body.contains("There was a problem with authentication"), "body: {body}")
}
// add schema and data
{
let res = client
.post(sql_url)
.basic_auth(USER, Some(PASS))
.body(
r#"
DEFINE ACCESS user ON DATABASE TYPE RECORD
SIGNUP ( CREATE user SET email = $email, pass = crypto::argon2::generate($pass) )
SIGNIN ( SELECT * FROM user WHERE email = $email AND crypto::argon2::compare(pass, $pass) )
DURATION FOR SESSION 60s, FOR TOKEN 1d;
DEFINE TABLE foo SCHEMAFUL PERMISSIONS FOR select WHERE $auth.email = email;
DEFINE FIELD email ON foo TYPE string;
DEFINE FIELD val ON foo TYPE int;
CREATE foo:1 set val = 42, email = "user@email.com";
CREATE foo:2 set val = 43, email = "other@email.com";
"#,
)
.send()
.await?;
assert_eq!(res.status(), 200);
let body = res.text().await?;
debug!(?body);
}
// check works with root
{
let res = client
.post(gql_url)
.basic_auth(USER, Some(PASS))
.body(json!({"query": r#"query{foo{id, val}}"#}).to_string())
.send()
.await?;
assert_eq!(res.status(), 200);
let body = res.text().await?;
let expected =
json!({"data":{"foo":[{"id":"foo:1","val":42},{"id":"foo:2","val":43}]}});
assert_eq!(expected.to_string(), body);
}
// check partial access
{
let req_body = serde_json::to_string(
json!({
"ns": ns,
"db": db,
"ac": "user",
"email": "user@email.com",
"pass": "pass",
})
.as_object()
.unwrap(),
)
.unwrap();
let res = client.post(signup_url).body(req_body).send().await?;
assert_eq!(res.status(), 200, "body: {}", res.text().await?);
let body: serde_json::Value = serde_json::from_str(&res.text().await?).unwrap();
let token = body["token"].as_str().unwrap();
let res = client
.post(gql_url)
.bearer_auth(token)
.body(json!({"query": r#"query{foo{id, val}}"#}).to_string())
.send()
.await?;
assert_eq!(res.status(), 200);
let body = res.text().await?;
let expected = json!({"data":{"foo":[{"id":"foo:1","val":42}]}});
assert_eq!(expected.to_string(), body);
}
Ok(())
}
2024-09-04 11:30:15 +00:00
}