41b7e9a049
One-time, mechanical reformat — no functional changes. The tree was not rustfmt-clean (~1800 hunks across ~100 files); this brings it to stock `cargo fmt` defaults so a `cargo fmt --check` CI gate can follow. Behaviour-preserving: 2509 pass / 0 fail / 1 ignored (unchanged baseline), clippy clean. A .git-blame-ignore-revs entry follows so `git blame` skips this commit.
77 lines
2.6 KiB
Rust
77 lines
2.6 KiB
Rust
//! Matrix coverage for `create m:n relationship from <T1> to <T2>
|
|
//! [as <name>]` (C4 / ADR-0045). Exercises the full typing surface —
|
|
//! completion candidates, ambient hint, highlighting, and parse state —
|
|
//! at each stage, so a regression in any of those surfaces is caught.
|
|
|
|
use crate::typing_surface::*;
|
|
use rdbms_playground::input_render::InputState;
|
|
|
|
#[test]
|
|
fn after_create_offers_table_and_m2n() {
|
|
let schema = schema_multi_table();
|
|
let a = assess_at_end("create ", &schema);
|
|
assert!(matches!(a.state, InputState::IncompleteAtEof));
|
|
// `create` branches to `table` (create table) or the `m:n` composite.
|
|
assert_candidate_present(&a, &["table", "m:n"]);
|
|
crate::snap!("after_create", a);
|
|
}
|
|
|
|
#[test]
|
|
fn m2n_relationship_keyword_sequence_is_incomplete() {
|
|
let schema = schema_multi_table();
|
|
let a = assess_at_end("create m:n relationship ", &schema);
|
|
assert!(matches!(a.state, InputState::IncompleteAtEof));
|
|
assert_candidate_present(&a, &["from"]);
|
|
crate::snap!("after_relationship_keyword", a);
|
|
}
|
|
|
|
#[test]
|
|
fn after_from_offers_table_names() {
|
|
let schema = schema_multi_table();
|
|
let a = assess_at_end("create m:n relationship from ", &schema);
|
|
assert!(matches!(a.state, InputState::IncompleteAtEof));
|
|
assert_candidate_present(&a, &["Customers", "Orders"]);
|
|
crate::snap!("after_from", a);
|
|
}
|
|
|
|
#[test]
|
|
fn after_to_offers_table_names() {
|
|
let schema = schema_multi_table();
|
|
let a = assess_at_end("create m:n relationship from Customers to ", &schema);
|
|
assert!(matches!(a.state, InputState::IncompleteAtEof));
|
|
assert_candidate_present(&a, &["Customers", "Orders"]);
|
|
crate::snap!("after_to", a);
|
|
}
|
|
|
|
#[test]
|
|
fn complete_create_m2n_parses() {
|
|
let schema = schema_multi_table();
|
|
let a = assess_at_end("create m:n relationship from Customers to Orders", &schema);
|
|
assert!(matches!(a.state, InputState::Valid));
|
|
assert_eq!(a.parse_result.as_deref(), Ok("CreateM2nRelationship"));
|
|
crate::snap!("complete", a);
|
|
}
|
|
|
|
#[test]
|
|
fn create_m2n_with_as_name_parses() {
|
|
let schema = schema_multi_table();
|
|
let a = assess_at_end(
|
|
"create m:n relationship from Customers to Orders as CustomerOrders",
|
|
&schema,
|
|
);
|
|
assert!(matches!(a.state, InputState::Valid));
|
|
assert_eq!(a.parse_result.as_deref(), Ok("CreateM2nRelationship"));
|
|
crate::snap!("with_as_name", a);
|
|
}
|
|
|
|
#[test]
|
|
fn after_as_keyword_is_incomplete() {
|
|
let schema = schema_multi_table();
|
|
let a = assess_at_end(
|
|
"create m:n relationship from Customers to Orders as ",
|
|
&schema,
|
|
);
|
|
assert!(matches!(a.state, InputState::IncompleteAtEof));
|
|
crate::snap!("after_as", a);
|
|
}
|