jq: Add test
This commit is contained in:
parent
fe8fa45573
commit
8529788e73
@ -172,6 +172,7 @@ in
|
|||||||
jenkins = handleTest ./jenkins.nix {};
|
jenkins = handleTest ./jenkins.nix {};
|
||||||
jirafeau = handleTest ./jirafeau.nix {};
|
jirafeau = handleTest ./jirafeau.nix {};
|
||||||
jitsi-meet = handleTest ./jitsi-meet.nix {};
|
jitsi-meet = handleTest ./jitsi-meet.nix {};
|
||||||
|
jq = handleTest ./jq.nix {};
|
||||||
k3s = handleTest ./k3s.nix {};
|
k3s = handleTest ./k3s.nix {};
|
||||||
kafka = handleTest ./kafka.nix {};
|
kafka = handleTest ./kafka.nix {};
|
||||||
keepalived = handleTest ./keepalived.nix {};
|
keepalived = handleTest ./keepalived.nix {};
|
||||||
|
10
nixos/tests/jq.nix
Normal file
10
nixos/tests/jq.nix
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
import ./make-test-python.nix ({ pkgs, ... }: {
|
||||||
|
name = "jq";
|
||||||
|
meta = with pkgs.stdenv.lib.maintainers; { maintainers = [ nequissimus ]; };
|
||||||
|
|
||||||
|
nodes.jq = { pkgs, ... }: { environment.systemPackages = [ pkgs.jq ]; };
|
||||||
|
|
||||||
|
testScript = ''
|
||||||
|
assert "world" in jq.succeed('echo \'{"values":["hello","world"]}\'| jq \'.values[1]\''')
|
||||||
|
'';
|
||||||
|
})
|
@ -1,20 +1,20 @@
|
|||||||
{ stdenv, fetchurl, oniguruma }:
|
{ stdenv, nixosTests, fetchurl, oniguruma }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "jq";
|
pname = "jq";
|
||||||
version="1.6";
|
version = "1.6";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url="https://github.com/stedolan/jq/releases/download/jq-${version}/jq-${version}.tar.gz";
|
url =
|
||||||
sha256="0wmapfskhzfwranf6515nzmm84r7kwljgfs7dg6bjgxakbicis2x";
|
"https://github.com/stedolan/jq/releases/download/jq-${version}/jq-${version}.tar.gz";
|
||||||
|
sha256 = "0wmapfskhzfwranf6515nzmm84r7kwljgfs7dg6bjgxakbicis2x";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = [ "bin" "doc" "man" "dev" "lib" "out" ];
|
outputs = [ "bin" "doc" "man" "dev" "lib" "out" ];
|
||||||
|
|
||||||
buildInputs = [ oniguruma ];
|
buildInputs = [ oniguruma ];
|
||||||
|
|
||||||
configureFlags =
|
configureFlags = [
|
||||||
[
|
|
||||||
"--bindir=\${bin}/bin"
|
"--bindir=\${bin}/bin"
|
||||||
"--sbindir=\${bin}/bin"
|
"--sbindir=\${bin}/bin"
|
||||||
"--datadir=\${doc}/share"
|
"--datadir=\${doc}/share"
|
||||||
@ -30,8 +30,10 @@ stdenv.mkDerivation rec {
|
|||||||
$bin/bin/jq --help >/dev/null
|
$bin/bin/jq --help >/dev/null
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
passthru.tests = { inherit (nixosTests) jq; };
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = ''A lightweight and flexible command-line JSON processor'';
|
description = "A lightweight and flexible command-line JSON processor";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ raskin globin ];
|
maintainers = with maintainers; [ raskin globin ];
|
||||||
platforms = with platforms; linux ++ darwin;
|
platforms = with platforms; linux ++ darwin;
|
||||||
|
Loading…
Reference in New Issue
Block a user