diff --git a/nix/default.nix b/nix/default.nix index f3350f8..bb86f81 100644 --- a/nix/default.nix +++ b/nix/default.nix @@ -7,7 +7,7 @@ in ./apache-kafka.nix ./clickhouse ./elasticsearch.nix - ./mysql.nix + ./mysql ./nginx.nix ./postgres ./redis-cluster.nix diff --git a/nix/mysql.nix b/nix/mysql/default.nix similarity index 99% rename from nix/mysql.nix rename to nix/mysql/default.nix index 92d3f38..bc92e1a 100644 --- a/nix/mysql.nix +++ b/nix/mysql/default.nix @@ -216,7 +216,7 @@ in ''; configureScript = pkgs.writeShellScriptBin "configure-mysql" '' - PATH="${lib.makeBinPath [config.package pkgs.coreutils]}:$PATH" + PATH="${lib.makeBinPath [config.package pkgs.coreutils pkgs.findutils]}:$PATH" set -euo pipefail ${envs} ${lib.concatMapStrings (database: '' @@ -237,7 +237,7 @@ in cat ${database.schema} elif [ -d "${database.schema}" ] then - cat ${database.schema}/mysql-databases/*.sql + find ${database.schema} -type f -name '*.sql' | xargs cat fi ''} ) | MYSQL_PWD="" ${config.package}/bin/mysql -u root -N diff --git a/nix/mysql_test.nix b/nix/mysql/mysql_test.nix similarity index 65% rename from nix/mysql_test.nix rename to nix/mysql/mysql_test.nix index 4c2d507..c59b3bf 100644 --- a/nix/mysql_test.nix +++ b/nix/mysql/mysql_test.nix @@ -1,7 +1,7 @@ { pkgs, config, ... }: { services.mysql.m1 = { enable = true; - initialDatabases = [{ name = "test_database"; }]; + initialDatabases = [{ name = "test_database"; schema = ./test_schemas; }]; initialScript = '' CREATE USER foo IDENTIFIED BY 'password@123'; CREATE USER bar; @@ -35,6 +35,15 @@ echo "$isFooPresent" | grep 1 echo "$isBarPresent" | grep 1 + echo "Checking if both foo.sql and bar.sql are executed, ignoring baz.md" + echo "SELECT * FROM information_schema.tables WHERE table_schema = 'test_database' AND table_name = 'foo' LIMIT 1;" | MYSQL_PWD="" mysql -h 127.0.0.1 -u root | grep foo + echo "SELECT * FROM information_schema.tables WHERE table_schema = 'test_database' AND table_name = 'bar' LIMIT 1;" | MYSQL_PWD="" mysql -h 127.0.0.1 -u root | grep bar + if [[ -z $(echo "SELECT * FROM information_schema.tables WHERE table_schema = 'test_database' AND table_name = 'baz' LIMIT 1;" | MYSQL_PWD="" mysql -h 127.0.0.1 -u root) ]]; then + echo "success! baz table not found" + else + echo "baz table shoudn't exist" + exit 1 + fi ''; name = "mysql-test"; }; diff --git a/nix/mysql/test_schemas/bar.sql b/nix/mysql/test_schemas/bar.sql new file mode 100644 index 0000000..992f855 --- /dev/null +++ b/nix/mysql/test_schemas/bar.sql @@ -0,0 +1 @@ +CREATE TABLE bar (id INT PRIMARY KEY); diff --git a/nix/mysql/test_schemas/baz.md b/nix/mysql/test_schemas/baz.md new file mode 100644 index 0000000..db1a61a --- /dev/null +++ b/nix/mysql/test_schemas/baz.md @@ -0,0 +1 @@ +CREATE TABLE baz (id INT PRIMARY KEY); diff --git a/nix/mysql/test_schemas/foo.sql b/nix/mysql/test_schemas/foo.sql new file mode 100644 index 0000000..e606b48 --- /dev/null +++ b/nix/mysql/test_schemas/foo.sql @@ -0,0 +1 @@ +CREATE TABLE foo (id INT PRIMARY KEY); diff --git a/test/flake.nix b/test/flake.nix index cef189b..0c5b2d8 100644 --- a/test/flake.nix +++ b/test/flake.nix @@ -36,7 +36,7 @@ "${inputs.services-flake}/nix/apache-kafka_test.nix" "${inputs.services-flake}/nix/clickhouse/clickhouse_test.nix" "${inputs.services-flake}/nix/elasticsearch_test.nix" - "${inputs.services-flake}/nix/mysql_test.nix" + "${inputs.services-flake}/nix/mysql/mysql_test.nix" "${inputs.services-flake}/nix/nginx_test.nix" "${inputs.services-flake}/nix/postgres/postgres_test.nix" "${inputs.services-flake}/nix/redis_test.nix"