mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-12-30 05:11:13 +00:00
* feat: create `sqlx.toml` format * feat: add support for ignored_chars config to sqlx_core::migrate * chore: test ignored_chars with `U+FEFF` (ZWNBSP/BOM) https://en.wikipedia.org/wiki/Byte_order_mark * refactor: make `Config` always compiled simplifies usage while still making parsing optional for less generated code * refactor: add origin information to `Column` * feat(macros): implement `type_override` and `column_override` from `sqlx.toml` * refactor(sqlx.toml): make all keys kebab-case, create `macros.preferred-crates` * feat: make macros aware of `macros.preferred-crates` * feat: make `sqlx-cli` aware of `database-url-var` * feat: teach macros about `migrate.table-name`, `migrations-dir` * feat: teach macros about `migrate.ignored-chars` * chore: delete unused source file `sqlx-cli/src/migration.rs` * feat: teach `sqlx-cli` about `migrate.defaults` * feat: teach `sqlx-cli` about `migrate.migrations-dir` * feat: teach `sqlx-cli` about `migrate.table-name` * feat: introduce `migrate.create-schemas` * WIP feat: create multi-tenant database example * fix(postgres): don't fetch `ColumnOrigin` for transparently-prepared statements * feat: progress on axum-multi-tenant example * feat(config): better errors for mislabeled fields * WIP feat: filling out axum-multi-tenant example * feat: multi-tenant example No longer Axum-based because filling out the request routes would have distracted from the purpose of the example. * chore(ci): test multi-tenant example * fixup after merge * fix(ci): enable `sqlx-toml` in CLI build for examples * fix: CI, README for `multi-tenant` * fix: clippy warnings * fix: multi-tenant README * fix: sequential versioning inference for migrations * fix: migration versioning with explicit overrides * fix: only warn on ambiguous crates if the invocation relies on it * fix: remove unused imports * fix: doctest * fix: `sqlx mig add` behavior and tests * fix: restore original type-checking order * fix: deprecation warning in `tests/postgres/macros.rs` * feat: create postgres/multi-database example * fix: examples/postgres/multi-database * fix: cargo fmt * chore: add tests for config `migrate.defaults` * fix: sqlx-cli/tests/add.rs * feat(cli): add `--config` override to all relevant commands * chore: run `sqlx mig add` test with `RUST_BACKTRACE=1` * fix: properly canonicalize config path for `sqlx mig add` test * fix: get `sqlx mig add` test passing * fix(cli): test `migrate.ignored-chars`, fix bugs * feat: create `macros.preferred-crates` example * fix(examples): use workspace `sqlx` * fix: examples * fix(sqlite): unexpected feature flags in `type_checking.rs` * fix: run `cargo fmt` * fix: more example fixes * fix(ci): preferred-crates setup * fix(examples): enable default-features for workspace `sqlx` * fix(examples): issues in `preferred-crates` * chore: adjust error message for missing param type in `query!()` * doc: mention new `sqlx.toml` configuration * chore: add `CHANGELOG` entry Normally I generate these when cutting the release, but I wanted to take time to editorialize this one. * doc: fix new example titles * refactor: make `sqlx-toml` feature non-default, improve errors * refactor: eliminate panics in `Config` read path * chore: remove unused `axum` dependency from new examples * fix(config): restore fallback to default config for macros * chore(config): remove use of `once_cell` (to match `main`)
136 lines
3.7 KiB
Rust
136 lines
3.7 KiB
Rust
use assert_cmd::{assert::Assert, Command};
|
|
|
|
use sqlx::_unstable::config::Config;
|
|
use sqlx::{migrate::Migrate, Connection, SqliteConnection};
|
|
use std::{
|
|
env, fs,
|
|
path::{Path, PathBuf},
|
|
};
|
|
|
|
pub struct TestDatabase {
|
|
file_path: PathBuf,
|
|
migrations_path: PathBuf,
|
|
pub config_path: Option<PathBuf>,
|
|
}
|
|
|
|
impl TestDatabase {
|
|
pub fn new(name: &str, migrations: &str) -> Self {
|
|
// Note: only set when _building_
|
|
let temp_dir = option_env!("CARGO_TARGET_TMPDIR").map_or_else(env::temp_dir, PathBuf::from);
|
|
|
|
let test_dir = temp_dir.join("migrate");
|
|
|
|
fs::create_dir_all(&test_dir)
|
|
.unwrap_or_else(|e| panic!("error creating directory: {test_dir:?}: {e}"));
|
|
|
|
let file_path = test_dir.join(format!("test-{name}.db"));
|
|
|
|
if file_path.exists() {
|
|
fs::remove_file(&file_path)
|
|
.unwrap_or_else(|e| panic!("error deleting test database {file_path:?}: {e}"));
|
|
}
|
|
|
|
let this = Self {
|
|
file_path,
|
|
migrations_path: Path::new("tests").join(migrations),
|
|
config_path: None,
|
|
};
|
|
|
|
Command::cargo_bin("cargo-sqlx")
|
|
.unwrap()
|
|
.args([
|
|
"sqlx",
|
|
"database",
|
|
"create",
|
|
"--database-url",
|
|
&this.connection_string(),
|
|
])
|
|
.assert()
|
|
.success();
|
|
this
|
|
}
|
|
|
|
pub fn set_migrations(&mut self, migrations: &str) {
|
|
self.migrations_path = Path::new("tests").join(migrations);
|
|
}
|
|
|
|
pub fn connection_string(&self) -> String {
|
|
format!("sqlite://{}", self.file_path.display())
|
|
}
|
|
|
|
pub fn run_migration(&self, revert: bool, version: Option<i64>, dry_run: bool) -> Assert {
|
|
let mut command = Command::cargo_bin("sqlx").unwrap();
|
|
command
|
|
.args([
|
|
"migrate",
|
|
match revert {
|
|
true => "revert",
|
|
false => "run",
|
|
},
|
|
"--database-url",
|
|
&self.connection_string(),
|
|
"--source",
|
|
])
|
|
.arg(&self.migrations_path);
|
|
|
|
if let Some(config_path) = &self.config_path {
|
|
command.arg("--config").arg(config_path);
|
|
}
|
|
|
|
if let Some(version) = version {
|
|
command.arg("--target-version").arg(version.to_string());
|
|
}
|
|
|
|
if dry_run {
|
|
command.arg("--dry-run");
|
|
}
|
|
|
|
command.assert()
|
|
}
|
|
|
|
pub async fn applied_migrations(&self) -> Vec<i64> {
|
|
let mut conn = SqliteConnection::connect(&self.connection_string())
|
|
.await
|
|
.unwrap();
|
|
|
|
let config = Config::default();
|
|
|
|
conn.list_applied_migrations(config.migrate.table_name())
|
|
.await
|
|
.unwrap()
|
|
.iter()
|
|
.map(|m| m.version)
|
|
.collect()
|
|
}
|
|
|
|
pub fn migrate_info(&self) -> Assert {
|
|
let mut command = Command::cargo_bin("sqlx").unwrap();
|
|
command
|
|
.args([
|
|
"migrate",
|
|
"info",
|
|
"--database-url",
|
|
&self.connection_string(),
|
|
"--source",
|
|
])
|
|
.arg(&self.migrations_path);
|
|
|
|
if let Some(config_path) = &self.config_path {
|
|
command.arg("--config").arg(config_path);
|
|
}
|
|
|
|
command.assert()
|
|
}
|
|
}
|
|
|
|
impl Drop for TestDatabase {
|
|
fn drop(&mut self) {
|
|
// Only remove the database if there isn't a failure.
|
|
if !std::thread::panicking() {
|
|
fs::remove_file(&self.file_path).unwrap_or_else(|e| {
|
|
panic!("error deleting test database {:?}: {e}", self.file_path)
|
|
});
|
|
}
|
|
}
|
|
}
|