mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
25bef2d8f9
The library does not depend on stdenv, that `stdenv` exposes `lib` is an artifact of the ancient origins of nixpkgs.
55 lines
1.3 KiB
Nix
55 lines
1.3 KiB
Nix
# This test start mongodb, runs a query using mongo shell
|
|
|
|
import ./make-test-python.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.wait_for_open_port(27017)
|
|
|
|
assert "hello" in node.succeed(
|
|
"${pkg}/bin/mongo ${testQuery}"
|
|
)
|
|
|
|
node.execute(
|
|
"${pkg}/bin/mongod --shutdown --dbpath data"
|
|
)
|
|
node.wait_for_closed_port(27017)
|
|
'';
|
|
|
|
in {
|
|
name = "mongodb";
|
|
meta = with pkgs.lib.maintainers; {
|
|
maintainers = [ bluescreen303 offline cstrahan rvl phile314 ];
|
|
};
|
|
|
|
nodes = {
|
|
node = {...}: {
|
|
environment.systemPackages = with pkgs; [
|
|
mongodb-3_4
|
|
mongodb-3_6
|
|
mongodb-4_0
|
|
mongodb-4_2
|
|
];
|
|
};
|
|
};
|
|
|
|
testScript = ''
|
|
node.start()
|
|
''
|
|
+ runMongoDBTest pkgs.mongodb-3_4
|
|
+ runMongoDBTest pkgs.mongodb-3_6
|
|
+ runMongoDBTest pkgs.mongodb-4_0
|
|
+ runMongoDBTest pkgs.mongodb-4_2
|
|
+ ''
|
|
node.shutdown()
|
|
'';
|
|
})
|