summary refs log blame commit diff
path: root/pkgs/test/nixos-functions/default.nix
blob: 6a4f3164f92968d09db4b5ef3cf7c70802a82959 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                                    

                           






                                                  


                              
                                     



                                           

                                                          
                                
                                       
                                                    

                     
                                




         
/*

This file is a test that makes sure that the `pkgs.nixos` and
`pkgs.nixosTest` functions work. It's far from a perfect test suite,
but better than not checking them at all on hydra.

To run this test:

    nixpkgs$ nix-build -A tests.nixos-functions

 */
{ pkgs, lib, stdenv, ... }:

let
  dummyVersioning = {
    revision = "test";
    versionSuffix = "test";
    label = "test";
  };
in lib.optionalAttrs stdenv.hostPlatform.isLinux (
  pkgs.recurseIntoAttrs {

    nixos-test = (pkgs.nixos {
      system.nixos = dummyVersioning;
      boot.loader.grub.enable = false;
      fileSystems."/".device = "/dev/null";
    }).toplevel;

    nixosTest-test = pkgs.nixosTest ({ lib, pkgs, ... }: {
      name = "nixosTest-test";
      machine = { pkgs, ... }: {
        system.nixos = dummyVersioning;
        environment.systemPackages = [ pkgs.hello ];
      };
      testScript = ''
        machine.succeed("hello")
      '';
    });

  }
)