Merge pull request #74036 from Ma27/port-codimd-test
nixos/codimd: port test to python test-driver
This commit is contained in:
commit
c2d9d6146a
@ -1,4 +1,4 @@
|
|||||||
import ./make-test.nix ({ pkgs, lib, ... }:
|
import ./make-test-python.nix ({ pkgs, lib, ... }:
|
||||||
{
|
{
|
||||||
name = "codimd";
|
name = "codimd";
|
||||||
|
|
||||||
@ -35,20 +35,18 @@ import ./make-test.nix ({ pkgs, lib, ... }:
|
|||||||
};
|
};
|
||||||
|
|
||||||
testScript = ''
|
testScript = ''
|
||||||
startAll();
|
start_all()
|
||||||
|
|
||||||
subtest "CodiMD sqlite", sub {
|
with subtest("CodiMD sqlite"):
|
||||||
$codimdSqlite->waitForUnit("codimd.service");
|
codimdSqlite.wait_for_unit("codimd.service")
|
||||||
$codimdSqlite->waitForOpenPort(3000);
|
codimdSqlite.wait_for_open_port(3000)
|
||||||
$codimdSqlite->waitUntilSucceeds("curl -sSf http://localhost:3000/new");
|
codimdSqlite.wait_until_succeeds("curl -sSf http://localhost:3000/new")
|
||||||
};
|
|
||||||
|
|
||||||
subtest "CodiMD postgres", sub {
|
with subtest("CodiMD postgres"):
|
||||||
$codimdPostgres->waitForUnit("postgresql.service");
|
codimdPostgres.wait_for_unit("postgresql.service")
|
||||||
$codimdPostgres->waitForUnit("codimd.service");
|
codimdPostgres.wait_for_unit("codimd.service")
|
||||||
$codimdPostgres->waitForOpenPort(5432);
|
codimdPostgres.wait_for_open_port(5432)
|
||||||
$codimdPostgres->waitForOpenPort(3000);
|
codimdPostgres.wait_for_open_port(3000)
|
||||||
$codimdPostgres->waitUntilSucceeds("curl -sSf http://localhost:3000/new");
|
codimdPostgres.wait_until_succeeds("curl -sSf http://localhost:3000/new")
|
||||||
};
|
|
||||||
'';
|
'';
|
||||||
})
|
})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user