v0.7.6: PostgreSQL object management, keychain toggle, tabbed Objects workspace (#12)

* [P1-T1] Change::Ddl Rust variant + execute_change arm

* [P1-T2] Frontend ddl change type + objectCrud capability

* [P1-T3] use_keychain data model + migration v8

* [P2-T1] object_crud skeleton + validators + build_ddl dispatch

* [P2-T2] Sequence builders

* [P2-T3] Enum builders (no value removal)

* [P2-T4] View / matview / extension builders

* [P2-T5] Index + constraint builders

* [P2-T6] Function / procedure + trigger builders

* [P2-T7] build_object_ddl + get_available_extensions commands + wrappers

* [P3-T1] conditional keychain + session passwords

* [P3-T2] keychain-off password prompt on connect

* [P3-T3] default-ON keychain opt-out + tooltip + modal conditional

* [P3-T4] ddl queue card + after-commit refetch

* [P4-T1] ObjectCrudDialog shell

* [P4-T2] SequenceForm

* [P4-T3] EnumForm with no-removal note

* [P4-T4] ExtensionForm with available-extensions picker

* [P4-T5] ViewForm (view + materialized view)

* [P5-T1] IndexForm with column picker

* [P5-T2] ConstraintForm (check/unique/pk/fk) + ColumnPicker

* [P5-T3] FunctionForm (function + procedure)

* [P5-T4] TriggerForm with trigger-function picker

* [P5-T5] ObjectContextMenu + Explorer/TableOverflowMenu CRUD wiring

* [P6-T1] object tab type + openObjectTab dedup

* [P6-T2] extract ObjectDetail for object tabs

* [P6-T3] Objects view two-pane sidebar + workspace

* [P6-T4] object-tab content + per-type tab icons

* [P7-T1] Version bump 0.7.5 -> 0.7.6

* [P7-T2] docs sync README/ROADMAP/AGENTS for v0.7.6

* [P7-T3] chore: Cargo.lock version sync 0.7.5 -> 0.7.6

* fix(ui): object tab icon stacks above name (preflight svg block)

* fix(ui): optically center object tab icon with name

* fix(ui): object tab icon matches query/table icon handling

* [UI-POLISH-1] objectForm tab type + openFormTab store action

* [UI-POLISH-2] ObjectFormTab + KindForm with Visual/SQL toggle

* [UI-POLISH-3] route create/edit through form tabs; remove modal

* docs: create/edit now open as form tabs (AGENTS sync)

* [FB-1] follow app styling patterns + schema dropdown in forms

* [FB-2] Monaco editor for function body + view definition

* [FB-3] form tabs styled like viewers + in-cell editing

* [FB-5] focus outline scoped to input area (label excluded)

* [FB-6] no amber focus outline on Monaco body/definition rows

* [FB-7] header dedupe + schema default + full edit prefill

* [FB-8] SQL view in read-only Monaco editor

* docs: roadmap — table create/edit + relationships (next)

* docs: roadmap — Admin follow-up is 0.7.7 (next after 0.7.6)
This commit is contained in:
2026-08-06 22:56:49 +08:00
committed by GitHub
parent 8d8ed78202
commit 0c74d77e75
86 changed files with 7094 additions and 1165 deletions
+727
View File
@@ -0,0 +1,727 @@
//! Pure SQL builders for PostgreSQL object CRUD. No DB I/O.
use crate::db::object_ddl::{quote_ident, validate_object_name};
use serde::Deserialize;
#[derive(Deserialize)]
pub struct SequenceParams {
pub schema: String,
pub name: String,
pub action: SequenceAction,
}
#[derive(Deserialize)]
#[serde(tag = "op", rename_all = "snake_case")]
pub enum SequenceAction {
Create { increment: Option<String>, min_value: Option<String>, max_value: Option<String>, start: Option<String>, cycle: bool },
Alter { increment: Option<String>, min_value: Option<String>, max_value: Option<String>, cycle: Option<bool> },
Restart { with: Option<String> },
Drop,
}
fn qual(schema: &str, name: &str) -> Result<String, String> {
validate_object_name(schema)?;
validate_object_name(name)?;
Ok(format!("{}.{}", quote_ident(schema), quote_ident(name)))
}
pub fn sequence_ddl(p: &SequenceParams) -> Result<Vec<String>, String> {
let q = qual(&p.schema, &p.name)?;
Ok(vec![match &p.action {
SequenceAction::Create { increment, min_value, max_value, start, cycle } => {
let mut s = format!("CREATE SEQUENCE {}", q);
if let Some(v) = increment { s.push_str(&format!("\n INCREMENT BY {}", v)); }
if let Some(v) = min_value { s.push_str(&format!("\n MINVALUE {}", v)); }
if let Some(v) = max_value { s.push_str(&format!("\n MAXVALUE {}", v)); }
if let Some(v) = start { s.push_str(&format!("\n START WITH {}", v)); }
s.push_str(if *cycle { "\n CYCLE" } else { "\n NO CYCLE" });
s
}
SequenceAction::Alter { increment, min_value, max_value, cycle } => {
let mut s = format!("ALTER SEQUENCE {}", q);
if let Some(v) = increment { s.push_str(&format!("\n INCREMENT BY {}", v)); }
if let Some(v) = min_value { s.push_str(&format!("\n MINVALUE {}", v)); }
if let Some(v) = max_value { s.push_str(&format!("\n MAXVALUE {}", v)); }
if let Some(c) = cycle { s.push_str(if *c { "\n CYCLE" } else { "\n NO CYCLE" }); }
s
}
SequenceAction::Restart { with } => match with {
Some(v) => format!("ALTER SEQUENCE {} RESTART WITH {}", q, v),
None => format!("ALTER SEQUENCE {} RESTART", q),
},
SequenceAction::Drop => format!("DROP SEQUENCE {}", q),
}])
}
/// Escape an enum label as a single-quoted SQL literal (empty rejected).
pub fn validate_enum_label(label: &str) -> Result<String, String> {
let t = label.trim();
if t.is_empty() {
return Err("Enum label must not be empty".into());
}
Ok(format!("'{}'", t.replace('\'', "''")))
}
#[derive(Deserialize)]
pub struct EnumParams {
pub schema: String,
pub name: String,
pub action: EnumAction,
}
#[derive(Deserialize)]
#[serde(tag = "op", rename_all = "snake_case")]
pub enum EnumAction {
Create { labels: Vec<String> },
RenameType { new_name: String },
AddValue { value: String, if_not_exists: bool, before: Option<String>, after: Option<String> },
RenameValue { from: String, to: String },
Drop,
}
pub fn enum_ddl(p: &EnumParams) -> Result<Vec<String>, String> {
let q = qual(&p.schema, &p.name)?;
Ok(vec![match &p.action {
EnumAction::Create { labels } => {
let mut out = String::new();
for l in labels {
if !out.is_empty() { out.push_str(", "); }
out.push_str(&validate_enum_label(l)?);
}
format!("CREATE TYPE {} AS ENUM ({})", q, out)
}
EnumAction::RenameType { new_name } => {
validate_object_name(new_name)?;
format!("ALTER TYPE {} RENAME TO {}", q, quote_ident(new_name))
}
EnumAction::AddValue { value, if_not_exists, before, after } => {
let v = format!(" {}", validate_enum_label(value)?);
let ine = if *if_not_exists { " IF NOT EXISTS" } else { "" };
let pos = match (before, after) {
(Some(b), None) => format!(" BEFORE {}", validate_enum_label(b)?),
(None, Some(a)) => format!(" AFTER {}", validate_enum_label(a)?),
_ => String::new(),
};
format!("ALTER TYPE {} ADD VALUE{}{}{}", q, ine, v, pos)
}
EnumAction::RenameValue { from, to } => {
format!("ALTER TYPE {} RENAME VALUE {} TO {}", q, validate_enum_label(from)?, validate_enum_label(to)?)
}
EnumAction::Drop => format!("DROP TYPE {}", q),
}])
}
/// Validate a SQL expression body: non-empty, no trailing semicolon.
pub fn validate_expression(expr: &str) -> Result<String, String> {
let t = expr.trim();
if t.is_empty() {
return Err("Expression must not be empty".into());
}
if t.ends_with(';') {
return Err("Expression must not end with ';'".into());
}
Ok(t.to_string())
}
#[derive(Deserialize)]
pub struct ViewParams {
pub schema: String,
pub name: String,
pub materialized: bool,
pub action: ViewAction,
}
#[derive(Deserialize)]
#[serde(tag = "op", rename_all = "snake_case")]
pub enum ViewAction {
Create { definition: String },
Replace { definition: String },
Refresh,
Drop,
}
pub fn view_ddl(p: &ViewParams) -> Result<Vec<String>, String> {
let q = qual(&p.schema, &p.name)?;
Ok(match &p.action {
ViewAction::Create { definition } if !p.materialized =>
vec![format!("CREATE OR REPLACE VIEW {} AS\n{}", q, definition)],
ViewAction::Create { definition } =>
vec![format!("CREATE MATERIALIZED VIEW {} AS\n{}", q, definition)],
ViewAction::Replace { definition } if !p.materialized =>
vec![format!("CREATE OR REPLACE VIEW {} AS\n{}", q, definition)],
ViewAction::Replace { definition } => vec![
format!("DROP MATERIALIZED VIEW {}", q),
format!("CREATE MATERIALIZED VIEW {} AS\n{}", q, definition),
],
ViewAction::Refresh if p.materialized => vec![format!("REFRESH MATERIALIZED VIEW {}", q)],
ViewAction::Refresh => return Err("Cannot REFRESH a non-materialized view".into()),
ViewAction::Drop if p.materialized => vec![format!("DROP MATERIALIZED VIEW {}", q)],
ViewAction::Drop => vec![format!("DROP VIEW {}", q)],
})
}
#[derive(Deserialize)]
pub struct ExtensionParams {
pub schema: String,
pub name: String,
pub action: ExtensionAction,
}
#[derive(Deserialize)]
#[serde(tag = "op", rename_all = "snake_case")]
pub enum ExtensionAction {
Create { version: Option<String> },
SetSchema { new_schema: String },
Drop,
}
pub fn extension_ddl(p: &ExtensionParams) -> Result<Vec<String>, String> {
validate_object_name(&p.schema)?;
validate_object_name(&p.name)?;
let name = quote_ident(&p.name);
let schema = quote_ident(&p.schema);
Ok(vec![match &p.action {
ExtensionAction::Create { version: None } =>
format!("CREATE EXTENSION IF NOT EXISTS {} WITH SCHEMA {}", name, schema),
ExtensionAction::Create { version: Some(v) } =>
format!("CREATE EXTENSION IF NOT EXISTS {} WITH SCHEMA {} VERSION '{}'", name, schema, v.replace('\'', "''")),
ExtensionAction::SetSchema { new_schema } => {
validate_object_name(new_schema)?;
format!("ALTER EXTENSION {} SET SCHEMA {}", name, quote_ident(new_schema))
}
ExtensionAction::Drop => format!("DROP EXTENSION {}", name),
}])
}
/// Quote a list of identifiers, joined with ", ".
fn quoted_cols(v: &[String]) -> String {
v.iter().map(|c| quote_ident(c)).collect::<Vec<_>>().join(", ")
}
#[derive(Deserialize)]
pub struct IndexParams {
pub schema: String,
pub table: String,
pub name: String,
pub action: IndexAction,
}
#[derive(Deserialize)]
#[serde(tag = "op", rename_all = "snake_case")]
pub enum IndexAction {
Create { unique: bool, method: String, columns: Vec<String>, predicate: Option<String> },
Drop,
}
pub fn index_ddl(p: &IndexParams) -> Result<Vec<String>, String> {
validate_object_name(&p.schema)?;
validate_object_name(&p.table)?;
validate_object_name(&p.name)?;
let table = format!("{}.{}", quote_ident(&p.schema), quote_ident(&p.table));
let name = quote_ident(&p.name);
Ok(vec![match &p.action {
IndexAction::Create { unique, method, columns, predicate } => {
if columns.is_empty() { return Err("Index requires at least one column".into()); }
let cols = quoted_cols(columns);
let unique = if *unique { "UNIQUE " } else { "" };
let method = if method.trim().is_empty() { String::new() } else { format!(" USING {}", method.trim()) };
let pred = match predicate {
Some(p) if !p.trim().is_empty() => format!(" WHERE {}", validate_expression(p)?),
_ => String::new(),
};
format!("CREATE {}INDEX {} ON {}{} ({}){}", unique, name, table, method, cols, pred)
}
IndexAction::Drop => format!("DROP INDEX {}.{}", quote_ident(&p.schema), name),
}])
}
#[derive(Deserialize)]
pub struct ConstraintParams {
pub schema: String,
pub table: String,
pub name: String,
pub action: ConstraintAction,
}
#[derive(Deserialize)]
#[serde(tag = "op", rename_all = "snake_case")]
pub enum ConstraintAction {
Check { expression: String },
Unique { columns: Vec<String> },
PrimaryKey { columns: Vec<String> },
ForeignKey { columns: Vec<String>, ref_schema: String, ref_table: String, ref_columns: Vec<String> },
Drop,
}
pub fn constraint_ddl(p: &ConstraintParams) -> Result<Vec<String>, String> {
validate_object_name(&p.schema)?;
validate_object_name(&p.table)?;
validate_object_name(&p.name)?;
let table = format!("{}.{}", quote_ident(&p.schema), quote_ident(&p.table));
let name = quote_ident(&p.name);
Ok(vec![match &p.action {
ConstraintAction::Check { expression } =>
format!("ALTER TABLE {} ADD CONSTRAINT {} CHECK ({})", table, name, validate_expression(expression)?),
ConstraintAction::Unique { columns } => {
if columns.is_empty() { return Err("UNIQUE constraint requires a column".into()); }
format!("ALTER TABLE {} ADD CONSTRAINT {} UNIQUE ({})", table, name, quoted_cols(columns))
}
ConstraintAction::PrimaryKey { columns } => {
if columns.is_empty() { return Err("PRIMARY KEY requires a column".into()); }
format!("ALTER TABLE {} ADD CONSTRAINT {} PRIMARY KEY ({})", table, name, quoted_cols(columns))
}
ConstraintAction::ForeignKey { columns, ref_schema, ref_table, ref_columns } => {
if columns.is_empty() || ref_columns.is_empty() { return Err("FOREIGN KEY requires source and referenced columns".into()); }
validate_object_name(ref_schema)?;
validate_object_name(ref_table)?;
let refq = format!("{}.{}", quote_ident(ref_schema), quote_ident(ref_table));
format!("ALTER TABLE {} ADD CONSTRAINT {} FOREIGN KEY ({}) REFERENCES {} ({})", table, name, quoted_cols(columns), refq, quoted_cols(ref_columns))
}
ConstraintAction::Drop => format!("ALTER TABLE {} DROP CONSTRAINT {}", table, name),
}])
}
#[derive(Deserialize)]
pub struct FunctionArg { pub mode: String, pub name: String, #[serde(rename = "type")] pub type_: String }
#[derive(Deserialize)]
pub struct FunctionParams {
pub schema: String,
pub name: String,
pub is_procedure: bool,
pub action: FunctionAction,
}
#[derive(Deserialize)]
#[serde(tag = "op", rename_all = "snake_case")]
pub enum FunctionAction {
CreateOrReplace { args: Vec<FunctionArg>, return_type: Option<String>, language: String, body: String, volatility: Option<String>, strict: bool },
Drop { arg_types: Vec<String> },
}
fn arg_sql(a: &FunctionArg) -> String {
let mode = match a.mode.trim().to_lowercase().as_str() {
"in" | "" => String::new(),
m => format!("{} ", m.to_uppercase()),
};
format!("{}{} {}", mode, a.name, a.type_)
}
pub fn function_ddl(p: &FunctionParams) -> Result<Vec<String>, String> {
let q = qual(&p.schema, &p.name)?;
let kind = if p.is_procedure { "PROCEDURE" } else { "FUNCTION" };
Ok(vec![match &p.action {
FunctionAction::CreateOrReplace { args, return_type, language, body, volatility, strict } => {
let arglist: Vec<String> = args.iter().map(arg_sql).collect();
let ret = match (p.is_procedure, return_type) {
(false, Some(r)) => format!(" RETURNS {}", r),
_ => String::new(),
};
let vol = match volatility.as_deref() {
Some("IMMUTABLE") => " IMMUTABLE", Some("STABLE") => " STABLE", Some("VOLATILE") => " VOLATILE", _ => "",
};
let strict = if *strict { " STRICT" } else { "" };
format!("CREATE OR REPLACE {} {}({}){} LANGUAGE {}{}{} AS $${}$$", kind, q, arglist.join(", "), ret, language, vol, strict, body)
}
FunctionAction::Drop { arg_types } => format!("DROP {} {}({})", kind, q, arg_types.join(", ")),
}])
}
#[derive(Deserialize)]
pub struct TriggerParams {
pub schema: String,
pub name: String,
pub action: TriggerAction,
}
#[derive(Deserialize)]
#[serde(tag = "op", rename_all = "snake_case")]
pub enum TriggerAction {
Create { table: String, timing: String, events: Vec<String>, orientation: String, function_schema: String, function_name: String, function_args: Vec<String>, when: Option<String> },
Enable { table: String },
Disable { table: String },
Drop { table: String },
}
pub fn trigger_ddl(p: &TriggerParams) -> Result<Vec<String>, String> {
validate_object_name(&p.schema)?;
validate_object_name(&p.name)?;
let schema = quote_ident(&p.schema);
let name = quote_ident(&p.name);
Ok(vec![match &p.action {
TriggerAction::Create { table, timing, events, orientation, function_schema, function_name, function_args, when } => {
validate_object_name(table)?;
validate_object_name(function_schema)?;
validate_object_name(function_name)?;
let evs = events.join(" OR ");
let orient = match orientation.trim().to_uppercase().as_str() { "STATEMENT" => "FOR EACH STATEMENT", _ => "FOR EACH ROW" };
let when_clause = match when {
Some(w) if !w.trim().is_empty() => format!(" WHEN ({})", w),
_ => String::new(),
};
let fq = format!("{}.{}", quote_ident(function_schema), quote_ident(function_name));
format!("CREATE TRIGGER {} {} {} ON {}.{} {}{} EXECUTE FUNCTION {}({})",
name, timing, evs, schema, quote_ident(table), orient, when_clause, fq, function_args.join(", "))
}
TriggerAction::Enable { table } => format!("ALTER TABLE {}.{} ENABLE TRIGGER {}", schema, quote_ident(table), name),
TriggerAction::Disable { table } => format!("ALTER TABLE {}.{} DISABLE TRIGGER {}", schema, quote_ident(table), name),
TriggerAction::Drop { table } => format!("DROP TRIGGER {} ON {}.{}", name, schema, quote_ident(table)),
}])
}
/// Dispatch a DDL build by kind. `params` is the JSON payload from the frontend.
/// Returns one or more single SQL statements.
pub fn build_ddl(kind: &str, params: serde_json::Value) -> Result<Vec<String>, String> {
match kind {
"sequence" => {
let p: SequenceParams = serde_json::from_value(params).map_err(|e| e.to_string())?;
sequence_ddl(&p)
}
"enum" => {
let p: EnumParams = serde_json::from_value(params).map_err(|e| e.to_string())?;
enum_ddl(&p)
}
"view" => {
let p: ViewParams = serde_json::from_value(params).map_err(|e| e.to_string())?;
view_ddl(&p)
}
"extension" => {
let p: ExtensionParams = serde_json::from_value(params).map_err(|e| e.to_string())?;
extension_ddl(&p)
}
"index" => {
let p: IndexParams = serde_json::from_value(params).map_err(|e| e.to_string())?;
index_ddl(&p)
}
"constraint" => {
let p: ConstraintParams = serde_json::from_value(params).map_err(|e| e.to_string())?;
constraint_ddl(&p)
}
"function" | "procedure" => {
let mut p: FunctionParams = serde_json::from_value(params).map_err(|e| e.to_string())?;
p.is_procedure = kind == "procedure";
function_ddl(&p)
}
"trigger" => {
let p: TriggerParams = serde_json::from_value(params).map_err(|e| e.to_string())?;
trigger_ddl(&p)
}
other => Err(format!("Unsupported object kind: {other}")),
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn validate_enum_label_quotes_and_doubles() {
assert_eq!(validate_enum_label("admin").unwrap(), "'admin'");
assert_eq!(validate_enum_label("user's").unwrap(), "'user''s'");
assert!(validate_enum_label("").is_err());
assert!(validate_enum_label(" ").is_err());
}
#[test]
fn validate_expression_rejects_empty_and_trailing_semicolon() {
assert_eq!(validate_expression("amount > 0").unwrap(), "amount > 0");
assert!(validate_expression("").is_err());
assert!(validate_expression("amount > 0;").is_err());
}
#[test]
fn build_ddl_rejects_unknown_kind() {
let res = build_ddl("bogus", serde_json::json!({}));
assert!(res.is_err());
assert!(res.unwrap_err().contains("Unsupported object kind: bogus"));
}
#[test]
fn sequence_create_full() {
let p = serde_json::json!({
"schema": "public", "name": "users_id_seq",
"action": { "op": "create", "increment": "1", "min_value": "1", "max_value": "9223372036854775807", "start": "1", "cycle": false }
});
let sql = build_ddl("sequence", p).unwrap();
assert_eq!(sql, vec!["CREATE SEQUENCE \"public\".\"users_id_seq\"\n INCREMENT BY 1\n MINVALUE 1\n MAXVALUE 9223372036854775807\n START WITH 1\n NO CYCLE"]);
}
#[test]
fn sequence_alter_partial_and_cycle_option() {
let p = serde_json::json!({
"schema": "public", "name": "s",
"action": { "op": "alter", "increment": "2", "cycle": true }
});
let sql = build_ddl("sequence", p).unwrap();
assert_eq!(sql, vec!["ALTER SEQUENCE \"public\".\"s\"\n INCREMENT BY 2\n CYCLE"]);
}
#[test]
fn sequence_restart_with_value() {
let p = serde_json::json!({ "schema": "public", "name": "s", "action": { "op": "restart", "with": "100" } });
assert_eq!(build_ddl("sequence", p).unwrap(), vec!["ALTER SEQUENCE \"public\".\"s\" RESTART WITH 100"]);
}
#[test]
fn sequence_drop() {
let p = serde_json::json!({ "schema": "public", "name": "s", "action": { "op": "drop" } });
assert_eq!(build_ddl("sequence", p).unwrap(), vec!["DROP SEQUENCE \"public\".\"s\""]);
}
#[test]
fn sequence_rejects_bad_name() {
let p = serde_json::json!({ "schema": "public", "name": "a; DROP", "action": { "op": "drop" } });
assert!(build_ddl("sequence", p).is_err());
}
#[test]
fn enum_create_quotes_labels() {
let p = serde_json::json!({ "schema": "public", "name": "role", "action": { "op": "create", "labels": ["admin", "user's"] } });
assert_eq!(build_ddl("enum", p).unwrap(), vec!["CREATE TYPE \"public\".\"role\" AS ENUM ('admin', 'user''s')"]);
}
#[test]
fn enum_rename_type() {
let p = serde_json::json!({ "schema": "public", "name": "role", "action": { "op": "rename_type", "new_name": "user_role" } });
assert_eq!(build_ddl("enum", p).unwrap(), vec!["ALTER TYPE \"public\".\"role\" RENAME TO \"user_role\""]);
}
#[test]
fn enum_add_value_with_position() {
let p = serde_json::json!({ "schema": "public", "name": "color", "action": { "op": "add_value", "value": "orange", "if_not_exists": true, "before": "red", "after": null } });
assert_eq!(build_ddl("enum", p).unwrap(), vec!["ALTER TYPE \"public\".\"color\" ADD VALUE IF NOT EXISTS 'orange' BEFORE 'red'"]);
}
#[test]
fn enum_add_value_plain() {
let p = serde_json::json!({ "schema": "public", "name": "color", "action": { "op": "add_value", "value": "green", "if_not_exists": false, "before": null, "after": null } });
assert_eq!(build_ddl("enum", p).unwrap(), vec!["ALTER TYPE \"public\".\"color\" ADD VALUE 'green'"]);
}
#[test]
fn enum_rename_value() {
let p = serde_json::json!({ "schema": "public", "name": "color", "action": { "op": "rename_value", "from": "purple", "to": "mauve" } });
assert_eq!(build_ddl("enum", p).unwrap(), vec!["ALTER TYPE \"public\".\"color\" RENAME VALUE 'purple' TO 'mauve'"]);
}
#[test]
fn enum_drop() {
let p = serde_json::json!({ "schema": "public", "name": "role", "action": { "op": "drop" } });
assert_eq!(build_ddl("enum", p).unwrap(), vec!["DROP TYPE \"public\".\"role\""]);
}
#[test]
fn enum_add_value_rejects_empty_label() {
let p = serde_json::json!({ "schema": "public", "name": "color", "action": { "op": "add_value", "value": "", "if_not_exists": false, "before": null, "after": null } });
assert!(build_ddl("enum", p).is_err());
}
#[test]
fn view_create_or_replace() {
let p = serde_json::json!({ "schema": "public", "name": "v_users", "materialized": false, "action": { "op": "create", "definition": "SELECT * FROM users" } });
assert_eq!(build_ddl("view", p).unwrap(), vec!["CREATE OR REPLACE VIEW \"public\".\"v_users\" AS\nSELECT * FROM users"]);
}
#[test]
fn matview_create() {
let p = serde_json::json!({ "schema": "public", "name": "mv_sales", "materialized": true, "action": { "op": "create", "definition": "SELECT count(*) FROM sales" } });
assert_eq!(build_ddl("view", p).unwrap(), vec!["CREATE MATERIALIZED VIEW \"public\".\"mv_sales\" AS\nSELECT count(*) FROM sales"]);
}
#[test]
fn matview_replace_is_drop_then_create() {
let p = serde_json::json!({ "schema": "public", "name": "mv_sales", "materialized": true, "action": { "op": "replace", "definition": "SELECT count(*) FROM sales" } });
assert_eq!(build_ddl("view", p).unwrap(), vec![
"DROP MATERIALIZED VIEW \"public\".\"mv_sales\"",
"CREATE MATERIALIZED VIEW \"public\".\"mv_sales\" AS\nSELECT count(*) FROM sales",
]);
}
#[test]
fn matview_refresh() {
let p = serde_json::json!({ "schema": "public", "name": "mv_sales", "materialized": true, "action": { "op": "refresh" } });
assert_eq!(build_ddl("view", p).unwrap(), vec!["REFRESH MATERIALIZED VIEW \"public\".\"mv_sales\""]);
}
#[test]
fn view_refresh_errors() {
let p = serde_json::json!({ "schema": "public", "name": "v_users", "materialized": false, "action": { "op": "refresh" } });
assert!(build_ddl("view", p).is_err());
}
#[test]
fn view_drop() {
let p = serde_json::json!({ "schema": "public", "name": "v_users", "materialized": false, "action": { "op": "drop" } });
assert_eq!(build_ddl("view", p).unwrap(), vec!["DROP VIEW \"public\".\"v_users\""]);
}
#[test]
fn extension_create_with_version() {
let p = serde_json::json!({ "schema": "public", "name": "pgcrypto", "action": { "op": "create", "version": "1.3" } });
assert_eq!(build_ddl("extension", p).unwrap(), vec!["CREATE EXTENSION IF NOT EXISTS \"pgcrypto\" WITH SCHEMA \"public\" VERSION '1.3'"]);
}
#[test]
fn extension_create_without_version() {
let p = serde_json::json!({ "schema": "public", "name": "pgcrypto", "action": { "op": "create", "version": null } });
assert_eq!(build_ddl("extension", p).unwrap(), vec!["CREATE EXTENSION IF NOT EXISTS \"pgcrypto\" WITH SCHEMA \"public\""]);
}
#[test]
fn extension_set_schema() {
let p = serde_json::json!({ "schema": "public", "name": "pgcrypto", "action": { "op": "set_schema", "new_schema": "utils" } });
assert_eq!(build_ddl("extension", p).unwrap(), vec!["ALTER EXTENSION \"pgcrypto\" SET SCHEMA \"utils\""]);
}
#[test]
fn extension_drop() {
let p = serde_json::json!({ "schema": "public", "name": "pgcrypto", "action": { "op": "drop" } });
assert_eq!(build_ddl("extension", p).unwrap(), vec!["DROP EXTENSION \"pgcrypto\""]);
}
#[test]
fn index_create_unique_btree_with_predicate() {
let p = serde_json::json!({
"schema": "public", "table": "users", "name": "users_email_key",
"action": { "op": "create", "unique": true, "method": "btree", "columns": ["email"], "predicate": "email IS NOT NULL" }
});
assert_eq!(build_ddl("index", p).unwrap(),
vec!["CREATE UNIQUE INDEX \"users_email_key\" ON \"public\".\"users\" USING btree (\"email\") WHERE email IS NOT NULL"]);
}
#[test]
fn index_create_no_method_no_predicate() {
let p = serde_json::json!({
"schema": "public", "table": "users", "name": "i_name",
"action": { "op": "create", "unique": false, "method": "", "columns": ["a", "b"], "predicate": null }
});
assert_eq!(build_ddl("index", p).unwrap(),
vec!["CREATE INDEX \"i_name\" ON \"public\".\"users\" (\"a\", \"b\")"]);
}
#[test]
fn index_drop() {
let p = serde_json::json!({ "schema": "public", "table": "users", "name": "i_name", "action": { "op": "drop" } });
assert_eq!(build_ddl("index", p).unwrap(), vec!["DROP INDEX \"public\".\"i_name\""]);
}
#[test]
fn index_create_rejects_empty_columns() {
let p = serde_json::json!({ "schema": "public", "table": "users", "name": "i", "action": { "op": "create", "unique": false, "method": "", "columns": [], "predicate": null } });
assert!(build_ddl("index", p).is_err());
}
#[test]
fn constraint_check() {
let p = serde_json::json!({ "schema": "public", "table": "orders", "name": "ck_pos", "action": { "op": "check", "expression": "amount > 0" } });
assert_eq!(build_ddl("constraint", p).unwrap(),
vec!["ALTER TABLE \"public\".\"orders\" ADD CONSTRAINT \"ck_pos\" CHECK (amount > 0)"]);
}
#[test]
fn constraint_unique() {
let p = serde_json::json!({ "schema": "public", "table": "users", "name": "u_email", "action": { "op": "unique", "columns": ["email"] } });
assert_eq!(build_ddl("constraint", p).unwrap(),
vec!["ALTER TABLE \"public\".\"users\" ADD CONSTRAINT \"u_email\" UNIQUE (\"email\")"]);
}
#[test]
fn constraint_primary_key() {
let p = serde_json::json!({ "schema": "public", "table": "users", "name": "pk_users", "action": { "op": "primary_key", "columns": ["id"] } });
assert_eq!(build_ddl("constraint", p).unwrap(),
vec!["ALTER TABLE \"public\".\"users\" ADD CONSTRAINT \"pk_users\" PRIMARY KEY (\"id\")"]);
}
#[test]
fn constraint_foreign_key() {
let p = serde_json::json!({
"schema": "public", "table": "orders", "name": "fk_user",
"action": { "op": "foreign_key", "columns": ["user_id"], "ref_schema": "public", "ref_table": "users", "ref_columns": ["id"] }
});
assert_eq!(build_ddl("constraint", p).unwrap(),
vec!["ALTER TABLE \"public\".\"orders\" ADD CONSTRAINT \"fk_user\" FOREIGN KEY (\"user_id\") REFERENCES \"public\".\"users\" (\"id\")"]);
}
#[test]
fn constraint_drop() {
let p = serde_json::json!({ "schema": "public", "table": "orders", "name": "ck_pos", "action": { "op": "drop" } });
assert_eq!(build_ddl("constraint", p).unwrap(),
vec!["ALTER TABLE \"public\".\"orders\" DROP CONSTRAINT \"ck_pos\""]);
}
#[test]
fn function_create_or_replace_basic() {
let p = serde_json::json!({
"schema": "public", "name": "add", "is_procedure": false,
"action": { "op": "create_or_replace",
"args": [ { "mode": "in", "name": "a", "type": "int" }, { "mode": "in", "name": "b", "type": "int" } ],
"return_type": "int", "language": "plpgsql", "body": "BEGIN RETURN a+b; END",
"volatility": "IMMUTABLE", "strict": true }
});
assert_eq!(build_ddl("function", p).unwrap(), vec![
"CREATE OR REPLACE FUNCTION \"public\".\"add\"(a int, b int) RETURNS int LANGUAGE plpgsql IMMUTABLE STRICT AS $$BEGIN RETURN a+b; END$$"
]);
}
#[test]
fn procedure_create_or_replace_no_returns() {
let p = serde_json::json!({
"schema": "public", "name": "do_thing", "is_procedure": true,
"action": { "op": "create_or_replace",
"args": [ { "mode": "in", "name": "x", "type": "int" } ],
"return_type": null, "language": "plpgsql", "body": "BEGIN PERFORM x; END",
"volatility": null, "strict": false }
});
assert_eq!(build_ddl("procedure", p).unwrap(), vec![
"CREATE OR REPLACE PROCEDURE \"public\".\"do_thing\"(x int) LANGUAGE plpgsql AS $$BEGIN PERFORM x; END$$"
]);
}
#[test]
fn function_drop_by_signature() {
let p = serde_json::json!({ "schema": "public", "name": "add", "is_procedure": false, "action": { "op": "drop", "arg_types": ["int", "int"] } });
assert_eq!(build_ddl("function", p).unwrap(), vec!["DROP FUNCTION \"public\".\"add\"(int, int)"]);
}
#[test]
fn procedure_drop_by_signature() {
let p = serde_json::json!({ "schema": "public", "name": "do_thing", "is_procedure": true, "action": { "op": "drop", "arg_types": ["int"] } });
assert_eq!(build_ddl("procedure", p).unwrap(), vec!["DROP PROCEDURE \"public\".\"do_thing\"(int)"]);
}
#[test]
fn trigger_create_row() {
let p = serde_json::json!({
"schema": "public", "name": "tr_audit",
"action": { "op": "create", "table": "orders", "timing": "BEFORE",
"events": ["INSERT", "UPDATE"], "orientation": "ROW",
"function_schema": "public", "function_name": "audit_fn",
"function_args": [], "when": null }
});
assert_eq!(build_ddl("trigger", p).unwrap(), vec![
"CREATE TRIGGER \"tr_audit\" BEFORE INSERT OR UPDATE ON \"public\".\"orders\" FOR EACH ROW EXECUTE FUNCTION \"public\".\"audit_fn\"()"
]);
}
#[test]
fn trigger_create_with_when_and_args() {
let p = serde_json::json!({
"schema": "public", "name": "tr_audit",
"action": { "op": "create", "table": "orders", "timing": "AFTER",
"events": ["UPDATE"], "orientation": "STATEMENT",
"function_schema": "public", "function_name": "audit_fn",
"function_args": ["'log'"], "when": "OLD.amount IS DISTINCT FROM NEW.amount" }
});
assert_eq!(build_ddl("trigger", p).unwrap(), vec![
"CREATE TRIGGER \"tr_audit\" AFTER UPDATE ON \"public\".\"orders\" FOR EACH STATEMENT WHEN (OLD.amount IS DISTINCT FROM NEW.amount) EXECUTE FUNCTION \"public\".\"audit_fn\"('log')"
]);
}
#[test]
fn trigger_enable_disable_drop() {
let base = |op: &str| serde_json::json!({ "schema": "public", "name": "tr_audit", "action": { "op": op, "table": "orders" } });
assert_eq!(build_ddl("trigger", base("enable")).unwrap(), vec!["ALTER TABLE \"public\".\"orders\" ENABLE TRIGGER \"tr_audit\""]);
assert_eq!(build_ddl("trigger", base("disable")).unwrap(), vec!["ALTER TABLE \"public\".\"orders\" DISABLE TRIGGER \"tr_audit\""]);
assert_eq!(build_ddl("trigger", base("drop")).unwrap(), vec!["DROP TRIGGER \"tr_audit\" ON \"public\".\"orders\""]);
}
}