Merge pull request #96076 from flokli/port-test-hocker-fetchdocker

nixosTests.hocker-fetchdocker
This commit is contained in:
Jacek Galowicz 2020-08-24 07:36:34 +02:00 committed by GitHub
commit 45dd255d61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,15 +1,16 @@
import ../make-test.nix ({ pkgs, ...} : { import ../make-test-python.nix ({ pkgs, ...} : {
name = "test-hocker-fetchdocker"; name = "test-hocker-fetchdocker";
meta = with pkgs.stdenv.lib.maintainers; { meta = with pkgs.stdenv.lib.maintainers; {
maintainers = [ ixmatus ]; maintainers = [ ixmatus ];
broken = true; # tries to download from registry-1.docker.io - how did this ever work?
}; };
machine = import ./machine.nix; machine = import ./machine.nix;
testScript = '' testScript = ''
startAll; start_all()
$machine->waitForUnit("sockets.target"); machine.wait_for_unit("sockets.target")
$machine->waitUntilSucceeds("docker run registry-1.docker.io/v2/library/hello-world:latest"); machine.wait_until_succeeds("docker run registry-1.docker.io/v2/library/hello-world:latest")
''; '';
}) })