blob: 43161ba05a6ffbc1c5fd1a0e4711bc4d64658382 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
{lib, ...}: let
merge = merge_list: let
head_of_merge = builtins.head merge_list;
in
if builtins.isAttrs head_of_merge
then
builtins.zipAttrsWith (
name: values: let
head_value = builtins.head values;
in
if builtins.isString head_value
then builtins.concatStringsSep "" values
else if builtins.isList head_value
then builtins.concatLists values
else if builtins.isAttrs head_value
then merge values
else builtins.head values
)
merge_list
else if builtins.isString head_of_merge
then builtins.concatStringsSep "" merge_list
else if builtins.isList head_of_merge
then builtins.concatLists merge_list
else builtins.head merge_list;
# Tests
## Strings
a = {
a = ''
This is some
'';
};
b = {
a = ''
example text
'';
};
c = {
a = "(which is nice)";
};
## Lists
d = {
a = ["element1" "element2"];
};
e = {
a = [["elment3" "elemnt4"]];
};
f = {
a = ["elemnt5"];
};
## Pure strings
g = "This";
h = "is";
i = "some example text";
j = ''
(with a newline)
'';
## Pure lists
k = ["element1"];
l = ["element2" "element3"];
m = ["element4"];
## Prepared tests
tests = {
tests = []; # Comment to actually run the tests
test_strings = {
expr = merge [a b c];
expected = {a = "This is some\nexample text\n(which is nice)";};
};
test_lists = {
expr = merge [d e f];
expected = {a = ["element1" "element2" ["elment3" "elemnt4"] "elemnt5"];};
};
test_pure_strings = {
expr = merge [g h i j];
expected = "Thisissome example text(with a newline)\n";
};
test_pure_lists = {
expr = merge [k l m];
expected = ["element1" "element2" "element3" "element4"];
};
};
in {
inherit merge;
result = lib.debug.runTests tests;
}
|