typioca: 2.7.0 -> 2.8.0
[NixPkgs.git] / pkgs / build-support / testers / hasPkgConfigModules / tests.nix
blob96569498fb1527aacaa0a5f50b0f78df8c20426e
1 # cd nixpkgs
2 # nix-build -A tests.testers.hasPkgConfigModule
3 { lib, testers, zlib, openssl, runCommand }:
5 lib.recurseIntoAttrs {
7   zlib-has-zlib = testers.hasPkgConfigModules {
8     package = zlib;
9     moduleNames = [ "zlib" ];
10   };
12   zlib-has-meta-pkgConfigModules = testers.hasPkgConfigModules {
13     package = zlib;
14   };
16   openssl-has-openssl = testers.hasPkgConfigModules {
17     package = openssl;
18     moduleNames = [ "openssl" ];
19   };
21   openssl-has-all-meta-pkgConfigModules = testers.hasPkgConfigModules {
22     package = openssl;
23   };
25   zlib-does-not-have-ylib = runCommand "zlib-does-not-have-ylib" {
26     failed = testers.testBuildFailure (
27       testers.hasPkgConfigModules {
28       package = zlib;
29       moduleNames = [ "ylib" ];
30       }
31     );
32   } ''
33     echo 'it logs a relevant error message'
34     {
35       grep -F "pkg-config module ylib was not found" $failed/testBuildFailure.log
36     }
38     echo 'it logs which pkg-config modules are available, to be helpful'
39     {
40       # grep -v: the string zlib does also occur in a store path in an earlier message, which isn't particularly helpful
41       grep -v "checking pkg-config module" < $failed/testBuildFailure.log \
42         | grep -F "zlib"
43     }
45     # done
46     touch $out
47   '';