mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 09:17:07 +03:00
44641ed00b
Now has tests for 3.4, 3.6, 4.0. Has some duplication, but it appears to work on my machine.
43 lines
1.1 KiB
Nix
43 lines
1.1 KiB
Nix
# This test start mongodb, runs a query using mongo shell
|
|
|
|
import ./make-test.nix ({ pkgs, ... }:
|
|
let
|
|
testQuery = pkgs.writeScript "nixtest.js" ''
|
|
db.greetings.insert({ "greeting": "hello" });
|
|
print(db.greetings.findOne().greeting);
|
|
'';
|
|
|
|
runMongoDBTest = pkg: ''
|
|
$node->execute("(rm -rf data || true) && mkdir data");
|
|
$node->execute("${pkg}/bin/mongod --fork --logpath logs --dbpath data");
|
|
$node->waitForOpenPort(27017);
|
|
|
|
$node->succeed("mongo ${testQuery}") =~ /hello/ or die;
|
|
|
|
$node->execute("${pkg}/bin/mongod --shutdown --dbpath data");
|
|
$node->waitForClosedPort(27017);
|
|
'';
|
|
|
|
in {
|
|
name = "mongodb";
|
|
meta = with pkgs.stdenv.lib.maintainers; {
|
|
maintainers = [ bluescreen303 offline cstrahan rvl phile314 ];
|
|
};
|
|
|
|
nodes = {
|
|
node = {...}: {
|
|
environment.systemPackages = with pkgs; [
|
|
# mongodb-3_4
|
|
mongodb-3_6
|
|
mongodb-4_0
|
|
];
|
|
};
|
|
};
|
|
|
|
testScript = "$node->start;"
|
|
# + runMongoDBTest pkgs.mongodb-3_4
|
|
+ runMongoDBTest pkgs.mongodb-3_6
|
|
+ runMongoDBTest pkgs.mongodb-4_0
|
|
+ "$node->shutdown;";
|
|
})
|