Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2e54c90c38a8
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: be5dcb46065f
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 22, 2019

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    86a9472 View commit details
  2. Merge pull request #73933 from flokli/nixos-test-port-mongodb

    nixosTests.mongodb: port to python
    WilliButz authored Nov 22, 2019

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    be5dcb4 View commit details
Showing with 6 additions and 4 deletions.
  1. +6 −4 nixos/tests/mongodb.nix
10 changes: 6 additions & 4 deletions nixos/tests/mongodb.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This test start mongodb, runs a query using mongo shell

import ./make-test.nix ({ pkgs, ...} : let
import ./make-test-python.nix ({ pkgs, ...} : let
testQuery = pkgs.writeScript "nixtest.js" ''
db.greetings.insert({ "greeting": "hello" });
print(db.greetings.findOne().greeting);
@@ -33,8 +33,10 @@ in {
};

testScript = ''
startAll;
$one->waitForUnit("mongodb.service");
$one->succeed("mongo -u nixtest -p nixtest nixtest ${testQuery}") =~ /hello/ or die;
start_all()
one.wait_for_unit("mongodb.service")
one.succeed(
"mongo -u nixtest -p nixtest nixtest ${testQuery} | grep -q hello"
)
'';
})