Skip to content

Commit

Permalink
nixos/tests: add simple dockerTools test
Browse files Browse the repository at this point in the history
  • Loading branch information
Profpatsch committed Feb 14, 2018
1 parent ac8a149 commit 1545f90
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
1 change: 1 addition & 0 deletions nixos/release.nix
Expand Up @@ -244,6 +244,7 @@ in rec {
tests.containers-macvlans = callTest tests/containers-macvlans.nix {};
tests.couchdb = callTest tests/couchdb.nix {};
tests.docker = callTestOnTheseSystems ["x86_64-linux"] tests/docker.nix {};
tests.docker-tools = callTestOnTheseSystems ["x86_64-linux"] tests/docker-tools.nix {};
tests.docker-edge = callTestOnTheseSystems ["x86_64-linux"] tests/docker-edge.nix {};
tests.dovecot = callTest tests/dovecot.nix {};
tests.dnscrypt-proxy = callTestOnTheseSystems ["x86_64-linux"] tests/dnscrypt-proxy.nix {};
Expand Down
36 changes: 36 additions & 0 deletions nixos/tests/docker-tools.nix
@@ -0,0 +1,36 @@
# this test creates a simple GNU image with docker tools and sees if it executes

import ./make-test.nix ({ pkgs, ... }: {
name = "docker-tools";
meta = with pkgs.stdenv.lib.maintainers; {
maintainers = [ ];
};

nodes = {
docker =
{ config, pkgs, ... }: {
virtualisation.docker.enable = true;
};
};

testScript =
let
dockerImage = pkgs.dockerTools.buildImage {
name = "hello-docker";
contents = [ pkgs.hello ];
tag = "sometag";

# TODO: create another test checking whether runAsRoot works as intended.

config = {
Cmd = [ "hello" ];
};
};

in ''
$docker->waitForUnit("sockets.target");
$docker->succeed("docker load --input='${dockerImage}'");
$docker->succeed("docker run hello-docker:sometag");
'';

})

0 comments on commit 1545f90

Please sign in to comment.