linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / test / patch-shebangs / default.nix
blob5c49787eee3b230ffce6dc6363559bd28a42e88c
1 { lib, stdenv, runCommand }:
3 let
4   tests = {
5     bad-shebang = stdenv.mkDerivation {
6       name         = "bad-shebang";
7       dontUnpack = true;
8       installPhase = ''
9         mkdir -p $out/bin
10         echo "#!/bin/sh" > $out/bin/test
11         echo "echo -n hello" >> $out/bin/test
12         chmod +x $out/bin/test
13       '';
14       passthru = {
15         assertion = "grep -v '^#!/bin/sh' $out/bin/test > /dev/null";
16       };
17     };
19     ignores-nix-store = stdenv.mkDerivation {
20       name = "ignores-nix-store";
21       dontUnpack = true;
22       installPhase = ''
23         mkdir -p $out/bin
24         echo "#!$NIX_STORE/path/to/sh" > $out/bin/test
25         echo "echo -n hello" >> $out/bin/test
26         chmod +x $out/bin/test
27       '';
28       passthru = {
29         assertion = "grep \"^#!$NIX_STORE/path/to/sh\" $out/bin/test > /dev/null";
30       };
31     };
32   };
33 in runCommand "patch-shebangs-test" {
34   passthru = { inherit (tests) bad-shebang ignores-nix-store; };
35   meta.platforms = lib.platforms.all;
36 } ''
37   validate() {
38     local name=$1
39     local testout=$2
40     local assertion=$3
42     echo -n "... $name: " >&2
44     local rc=0
45     (out=$testout eval "$assertion") || rc=1
47     if [ "$rc" -eq 0 ]; then
48       echo "yes" >&2
49     else
50       echo "no" >&2
51     fi
53     return "$rc"
54   }
56   echo "checking whether patchShebangs works properly... ">&2
58   fail=
59   ${lib.concatStringsSep "\n" (lib.mapAttrsToList (_: test: ''
60     validate "${test.name}" "${test}" ${lib.escapeShellArg test.assertion} || fail=1
61   '') tests)}
63   if [ "$fail" ]; then
64     echo "failed"
65     exit 1
66   else
67     echo "succeeded"
68     touch $out
69   fi