Load data into SQL tables.

This commit is contained in:
Nolan Darilek 2025-06-12 13:33:00 -04:00
parent 5fb2cc9f55
commit 0c6cff77d5
2 changed files with 300089 additions and 12 deletions

300063
data.sql Normal file

File diff suppressed because it is too large Load diff

View file

@ -1,41 +1,55 @@
use std::error::Error;
use mysql_async::{Conn, prelude::*};
pub async fn load_data(conn: &mut Conn) -> Result<(), Box<dyn Error>> {
// Obviously use something better/more robust here if you're a) loading
// other data sources and b) aren't so lucky as to have a single `;` after
// each block of SQL. :)
let data = String::from_utf8_lossy(include_bytes!("../data.sql"));
for stmt in data.split(";") {
if !stmt.is_empty() {
conn.exec_drop(stmt, params::Params::Empty).await?;
}
}
Ok(())
}
#[cfg(test)]
mod test {
use std::error::Error;
use derive_more::{Deref, DerefMut};
use mysql_async::Opts;
use testcontainers_modules::testcontainers::ContainerAsync;
// This is a bit YOLO but is the quickest/cleanest way I can think of to a) get
// a connection per database and b) ensure `Drop` cleans it up.
#[derive(Deref, DerefMut)]
struct TestPool(
struct TestConnection(
#[deref]
#[deref_mut]
mysql_async::Pool,
mysql_async::Conn,
// Never read, only needed for `Drop`.
#[allow(dead_code)] ContainerAsync<testcontainers_modules::mysql::Mysql>,
);
async fn get_test_pool() -> Result<TestPool, Box<dyn Error>> {
async fn get_test_connection() -> Result<TestConnection, Box<dyn Error>> {
use testcontainers_modules::{mysql, testcontainers::runners::AsyncRunner};
let mysql = mysql::Mysql::default().start().await?;
let url = format!(
"mysql://{}:{}/test",
"mysql://root@{}:{}/test",
mysql.get_host().await?,
mysql.get_host_port_ipv4(3306).await?
);
let opts = Opts::from_url(&url)?;
let pool = mysql_async::Pool::new(opts);
Ok(TestPool(pool, mysql))
let conn = mysql_async::Conn::from_url(&url).await?;
Ok(TestConnection(conn, mysql))
}
#[tokio::test]
async fn test_mysql() -> Result<(), Box<dyn std::error::Error>> {
let pool = get_test_pool().await?;
<mysql_async::Pool as Clone>::clone(&pool)
.disconnect()
.await?;
let mut conn = get_test_connection().await?;
crate::load_data(&mut conn).await?;
Ok(())
}
}