aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/ryml/test/test_map_of_seq.cpp
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2025-11-07 14:49:13 +0100
committerGitHub Enterprise <[email protected]>2025-11-07 14:49:13 +0100
commit24e43a913f29ac3b314354e8ce5175f135bcc64f (patch)
treeca442937ceeb63461012b33a4576e9835099f106 /thirdparty/ryml/test/test_map_of_seq.cpp
parentget oplog attachments (#622) (diff)
downloadzen-24e43a913f29ac3b314354e8ce5175f135bcc64f.tar.xz
zen-24e43a913f29ac3b314354e8ce5175f135bcc64f.zip
switch to xmake for package management (#611)
This change removes our dependency on vcpkg for package management, in favour of bringing some code in-tree in the `thirdparty` folder as well as using the xmake build-in package management feature. For the latter, all the package definitions are maintained in the zen repo itself, in the `repo` folder. It should now also be easier to build the project as it will no longer depend on having the right version of vcpkg installed, which has been a common problem for new people coming in to the codebase. Now you should only need xmake to build. * Bumps xmake requirement on github runners to 2.9.9 to resolve an issue where xmake on Windows invokes cmake with `v144` toolchain which does not exist * BLAKE3 is now in-tree at `thirdparty/blake3` * cpr is now in-tree at `thirdparty/cpr` * cxxopts is now in-tree at `thirdparty/cxxopts` * fmt is now in-tree at `thirdparty/fmt` * robin-map is now in-tree at `thirdparty/robin-map` * ryml is now in-tree at `thirdparty/ryml` * sol2 is now in-tree at `thirdparty/sol2` * spdlog is now in-tree at `thirdparty/spdlog` * utfcpp is now in-tree at `thirdparty/utfcpp` * xmake package repo definitions is in `repo` * implemented support for sanitizers. ASAN is supported on windows, TSAN, UBSAN, MSAN etc are supported on Linux/MacOS though I have not yet tested it extensively on MacOS * the zencore encryption implementation also now supports using mbedTLS which is used on MacOS, though for now we still use openssl on Linux * crashpad * bumps libcurl to 8.11.0 (from 8.8.0) which should address a rare build upload bug
Diffstat (limited to 'thirdparty/ryml/test/test_map_of_seq.cpp')
-rw-r--r--thirdparty/ryml/test/test_map_of_seq.cpp201
1 files changed, 201 insertions, 0 deletions
diff --git a/thirdparty/ryml/test/test_map_of_seq.cpp b/thirdparty/ryml/test/test_map_of_seq.cpp
new file mode 100644
index 000000000..fc577223e
--- /dev/null
+++ b/thirdparty/ryml/test/test_map_of_seq.cpp
@@ -0,0 +1,201 @@
+#include "./test_group.hpp"
+
+namespace c4 {
+namespace yml {
+
+
+CASE_GROUP(MAP_OF_SEQ)
+{
+
+ADD_CASE_TO_GROUP("map of empty seqs",
+R"({foo: [], bar: [], baz: []})",
+ L{
+ N(KEYSEQ, "foo", L()),
+ N(KEYSEQ, "bar", L()),
+ N(KEYSEQ, "baz", L()),
+ }
+);
+
+ADD_CASE_TO_GROUP("map of seqs, one line",
+R"({men: [John Smith, Bill Jones], women: [Mary Smith, Susan Williams]})",
+ L{
+ N("men", L{N{"John Smith"}, N{"Bill Jones"}}),
+ N("women", L{N{"Mary Smith"}, N{"Susan Williams"}})
+ }
+);
+
+ADD_CASE_TO_GROUP("map of seqs",
+R"(
+men:
+ - John Smith
+ - Bill Jones
+women:
+ - Mary Smith
+ - Susan Williams
+)",
+ L{
+ N("men", L{N{"John Smith"}, N{"Bill Jones"}}),
+ N("women", L{N{"Mary Smith"}, N{"Susan Williams"}})
+ }
+);
+
+ADD_CASE_TO_GROUP("map of seqs, not indented",
+R"(
+men:
+- John Smith
+- Bill Jones
+women:
+- Mary Smith
+- Susan Williams
+)",
+ L{
+ N("men", L{N{"John Smith"}, N{"Bill Jones"}}),
+ N("women", L{N{"Mary Smith"}, N{"Susan Williams"}})
+ }
+);
+
+ADD_CASE_TO_GROUP("map of seqs, not indented, more",
+R"(
+product:
+- sku: BL4438H
+ quantity: 1
+ description: Super Hoop
+ price: 2392.00 # jumping one level here would be wrong.
+tax: 1234.5 # we must jump two levels
+product2:
+ subproduct1:
+ - sku: BL4438H
+ quantity: 1
+ description: Super Hoop
+ price: 2392.00 # jumping one level here would be wrong.
+ subproduct2:
+ - sku: BL4438H
+ quantity: 1
+ description: Super Hoop
+ price: 2392.00 # jumping one level here would be wrong.
+ tax2: 789.10 # we must jump two levels
+tax3: 1234.5
+product3:
+ subproduct1:
+ - sku: BL4438H
+ quantity: 1
+ description: Super Hoop
+ price: 2392.00 # jumping one level here would be wrong.
+ subproduct2:
+ - sku: BL4438H
+ quantity: 1
+ description: Super Hoop
+ price: 2392.00 # jumping one level here would be wrong.
+ # a comment here, will it ruin parsing?
+ tax2: 789.10 # we must jump two levels
+tax4: 1234.5
+product4:
+ subproduct1:
+ - sku: BL4438H
+ quantity: 1
+ description: Super Hoop
+ price: 2392.00 # jumping one level here would be wrong.
+ subproduct2:
+ - sku: BL4438H
+ quantity: 1
+ description: Super Hoop
+ price: 2392.00 # jumping one level here would be wrong.
+ # what about here?
+ tax2: 789.10 # we must jump two levels
+tax5: 1234.5
+)",
+L{
+ N("product", L{
+ N(L{N("sku", "BL4438H"), N("quantity", "1"), N("description", "Super Hoop"), N("price", "2392.00")}),
+ }),
+ N("tax", "1234.5"),
+ N("product2", L{
+ N("subproduct1", L{
+ N(L{N("sku", "BL4438H"), N("quantity", "1"), N("description", "Super Hoop"), N("price", "2392.00")}),
+ }),
+ N("subproduct2", L{
+ N(L{N("sku", "BL4438H"), N("quantity", "1"), N("description", "Super Hoop"), N("price", "2392.00")}),
+ }),
+ N("tax2", "789.10"),
+ }),
+ N("tax3", "1234.5"),
+ N("product3", L{
+ N("subproduct1", L{
+ N(L{N("sku", "BL4438H"), N("quantity", "1"), N("description", "Super Hoop"), N("price", "2392.00")}),
+ }),
+ N("subproduct2", L{
+ N(L{N("sku", "BL4438H"), N("quantity", "1"), N("description", "Super Hoop"), N("price", "2392.00")}),
+ }),
+ N("tax2", "789.10"),
+ }),
+ N("tax4", "1234.5"),
+ N("product4", L{
+ N("subproduct1", L{
+ N(L{N("sku", "BL4438H"), N("quantity", "1"), N("description", "Super Hoop"), N("price", "2392.00")}),
+ }),
+ N("subproduct2", L{
+ N(L{N("sku", "BL4438H"), N("quantity", "1"), N("description", "Super Hoop"), N("price", "2392.00")}),
+ }),
+ N("tax2", "789.10"),
+ }),
+ N("tax5", "1234.5"),
+});
+
+ADD_CASE_TO_GROUP("map of seqs, next line",
+R"(
+men:
+ -
+ John Smith
+ -
+ Bill Jones
+women:
+ -
+ Mary Smith
+ -
+ Susan Williams
+)",
+ L{
+ N("men", L{N{"John Smith"}, N{"Bill Jones"}}),
+ N("women", L{N{"Mary Smith"}, N{"Susan Williams"}})
+ }
+);
+
+ADD_CASE_TO_GROUP("map of seqs, next line without space",
+R"(
+men:
+ -
+ John Smith
+ -
+ Bill Jones
+women:
+ -
+ Mary Smith
+ -
+ Susan Williams
+)",
+ L{
+ N("men", L{N{"John Smith"}, N{"Bill Jones"}}),
+ N("women", L{N{"Mary Smith"}, N{"Susan Williams"}})
+ }
+);
+
+ADD_CASE_TO_GROUP("map of seqs, deal with unk",
+R"(
+skip_commits:
+ files:
+ - a
+ - b
+ - c
+ - d
+ - e
+)",
+L{
+ N("skip_commits", L{N("files",
+ L{N("a"), N("b"), N("c"), N("d"), N("e")}
+ )}),
+}
+);
+}
+
+} // namespace yml
+} // namespace c4