blob: f9aab7b011b46649cfd58725fb8dc026fc02f1a5 (
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
|
#include "fyamlcpp.h"
#include <contrib/libs/libfyaml/include/libfyaml.h>
#include <library/cpp/testing/unittest/registar.h>
#include <util/stream/str.h>
Y_UNIT_TEST_SUITE(FYamlCpp) {
Y_UNIT_TEST(EnumEquals) {
UNIT_ASSERT_EQUAL((int)NFyaml::ENodeType::Scalar, FYNT_SCALAR);
UNIT_ASSERT_EQUAL((int)NFyaml::ENodeType::Sequence, FYNT_SEQUENCE);
UNIT_ASSERT_EQUAL((int)NFyaml::ENodeType::Mapping, FYNT_MAPPING);
}
Y_UNIT_TEST(ErrorHandling) {
{
const char *yaml = R"(
config: a
config: b
)";
UNIT_ASSERT_EXCEPTION_CONTAINS(
NFyaml::TDocument::Parse(yaml),
yexception,
"3:1 duplicate key");
}
{
const char *yaml = R"(
anchor: *does_not_exists
)";
auto doc = NFyaml::TDocument::Parse(yaml);
UNIT_ASSERT_EXCEPTION_CONTAINS(
doc.Resolve(),
yexception,
"2:10 invalid alias");
}
}
Y_UNIT_TEST(Out) {
const char *yaml = R"(
test: output
)";
auto doc = NFyaml::TDocument::Parse(yaml);
TStringStream ss;
ss << doc;
UNIT_ASSERT_VALUES_EQUAL(ss.Str(), "test: output\n");
}
}
|