Skip to content

Commit

Permalink
formats.libconfig: add tests
Browse files Browse the repository at this point in the history
Co-authored-by: ckie <[email protected]>
Signed-off-by: h7x4 <[email protected]>
  • Loading branch information
h7x4 and ckiee committed Aug 15, 2023
1 parent f7314be commit 66c96ee
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 0 deletions.
50 changes: 50 additions & 0 deletions pkgs/pkgs-lib/formats/libconfig/test/comprehensive.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{ lib, formats, stdenvNoCC, ... }:
let
libconfig = formats.libconfig { };

include_expr = {
val = 1;
};

include_file = libconfig.generate "libconfig-test-include" include_expr;

expression = {
simple_top_level_attr = "1.0";
nested.attrset.has.a.integer.value = 100;
some_floaty = 29.95;
## Same syntax here on these two, but they should get serialized differently:
# > A list may have zero or more elements, each of which can be a scalar value, an array, a group, or another list.
list1d = libconfig.lib.mkList [ 1 "mixed!" 5 2 ];
# You might also omit the mkList, as a list will be a list (in contrast to an array) by default.
list2d = [ 1 [ 1 1.2 "foo" ] [ "bar" 1.2 1 ] ];
# > An array may have zero or more elements, but the elements must all be scalar values of the same type.
array1d = libconfig.lib.mkArray [ 1 5 2 ];
array2d = [
(libconfig.lib.mkArray [ 1 2 ])
(libconfig.lib.mkArray [ 2 1 ])
];
nasty_string = "\"\n\\\t\r^*\b\f\n\0\";'''$";

weirderTypes = {
_includes = [ include_file ];
pi = 3.141592654;
bigint = 9223372036854775807;
hex = libconfig.lib.mkHex "0x1FC3";
octal = libconfig.lib.mkOctal "0027";
float = libconfig.lib.mkFloat "1.2E-3";
array_of_ints = libconfig.lib.mkArray [
(libconfig.lib.mkOctal "0732")
(libconfig.lib.mkHex "0xA3")
1234
];
list_of_weird_types = [
3.141592654
9223372036854775807
(libconfig.lib.mkHex "0x1FC3")
(libconfig.lib.mkOctal "0027")
(libconfig.lib.mkFloat "1.2E-32")
];
};
};
in
libconfig.generate "libconfig-test.cfg" expression
4 changes: 4 additions & 0 deletions pkgs/pkgs-lib/formats/libconfig/test/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{ pkgs, ... }:
{
comprehensive = pkgs.callPackage ./comprehensive.nix { };
}
1 change: 1 addition & 0 deletions pkgs/pkgs-lib/tests/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ let
jdk11 = pkgs.callPackage ../formats/java-properties/test { jdk = pkgs.jdk11_headless; };
jdk17 = pkgs.callPackage ../formats/java-properties/test { jdk = pkgs.jdk17_headless; };
};
libconfig = recurseIntoAttrs (import ../formats/libconfig/test { inherit pkgs; });
};

flatten = prefix: as:
Expand Down

0 comments on commit 66c96ee

Please sign in to comment.