parser_test.cpp 1.83 KB
Newer Older
Alan Griffiths's avatar
Alan Griffiths committed
1
#include <yaml-cpp/depthguard.h>
2
#include "yaml-cpp/parser.h"
Alan Griffiths's avatar
Alan Griffiths committed
3
#include "yaml-cpp/exceptions.h"
4
5
6
7
8
#include "mock_event_handler.h"
#include "gtest/gtest.h"

using YAML::Parser;
using YAML::MockEventHandler;
Alan Griffiths's avatar
Alan Griffiths committed
9
using ::testing::NiceMock;
10
11
12
13
14
15
16
17
18
19
using ::testing::StrictMock;

TEST(ParserTest, Empty) {
    Parser parser;

    EXPECT_FALSE(parser);

    StrictMock<MockEventHandler> handler;
    EXPECT_FALSE(parser.HandleNextDocument(handler));
}
Alan Griffiths's avatar
Alan Griffiths committed
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

TEST(ParserTest, CVE_2017_5950) {
    std::string excessive_recursion;
    for (auto i = 0; i != 16384; ++i)
        excessive_recursion.push_back('[');
    std::istringstream input{excessive_recursion};
    Parser parser{input};

    NiceMock<MockEventHandler> handler;
    EXPECT_THROW(parser.HandleNextDocument(handler), YAML::DeepRecursion);
}

TEST(ParserTest, CVE_2018_20573) {
    std::string excessive_recursion;
    for (auto i = 0; i != 20535; ++i)
        excessive_recursion.push_back('{');
    std::istringstream input{excessive_recursion};
    Parser parser{input};

    NiceMock<MockEventHandler> handler;
    EXPECT_THROW(parser.HandleNextDocument(handler), YAML::DeepRecursion);
}

TEST(ParserTest, CVE_2018_20574) {
    std::string excessive_recursion;
    for (auto i = 0; i != 21989; ++i)
        excessive_recursion.push_back('{');
    std::istringstream input{excessive_recursion};
    Parser parser{input};

    NiceMock<MockEventHandler> handler;
    EXPECT_THROW(parser.HandleNextDocument(handler), YAML::DeepRecursion);
}

TEST(ParserTest, CVE_2019_6285) {
    std::string excessive_recursion;
    for (auto i = 0; i != 23100; ++i)
        excessive_recursion.push_back('[');
    excessive_recursion.push_back('f');
    std::istringstream input{excessive_recursion};
    Parser parser{input};

    NiceMock<MockEventHandler> handler;
    EXPECT_THROW(parser.HandleNextDocument(handler), YAML::DeepRecursion);
}