File: ConfigTest.cpp

package info (click to toggle)
znc 1.10.1-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 12,164 kB
  • sloc: cpp: 58,072; javascript: 11,859; python: 1,635; perl: 1,229; tcl: 219; sh: 200; ansic: 187; makefile: 82
file content (169 lines) | stat: -rw-r--r-- 5,355 bytes parent folder | download
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
/*
 * Copyright (C) 2004-2025 ZNC, see the NOTICE file for details.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include <gtest/gtest.h>
#include <znc/FileUtils.h>
#include <znc/Config.h>

class CConfigTest : public ::testing::Test {
  public:
    ~CConfigTest() override { m_File.Delete(); }

  protected:
    CFile& WriteFile(const CString& sConfig) {
        char sName[] = "./temp-XXXXXX";
        int fd = mkstemp(sName);
        m_File.Open(sName, O_RDWR);
        close(fd);

        m_File.Write(sConfig);

        return m_File;
    }

  private:
    CFile m_File;
};

class CConfigErrorTest : public CConfigTest {
  public:
    void TEST_ERROR(const CString& sConfig, const CString& sExpectError) {
        CFile& File = WriteFile(sConfig);

        CConfig conf;
        CString sError;
        EXPECT_FALSE(conf.Parse(File, sError));

        EXPECT_EQ(sError, sExpectError);
    }
};

class CConfigSuccessTest : public CConfigTest {
  public:
    void TEST_SUCCESS(const CString& sConfig, const CString& sExpectedOutput) {
        CFile& File = WriteFile(sConfig);
        // Verify that Parse() rewinds the file
        File.Seek(12);

        CConfig conf;
        CString sError;
        EXPECT_TRUE(conf.Parse(File, sError)) << sError;
        EXPECT_TRUE(sError.empty()) << "Non-empty error string!";

        CString sOutput;
        ToString(sOutput, conf);

        EXPECT_EQ(sOutput, sExpectedOutput);
    }

    void ToString(CString& sRes, CConfig& conf) {
        CConfig::EntryMapIterator it = conf.BeginEntries();
        while (it != conf.EndEntries()) {
            const CString& sKey = it->first;
            const VCString& vsEntries = it->second;
            VCString::const_iterator i = vsEntries.begin();
            if (i == vsEntries.end())
                sRes += sKey + " <- Error, empty list!\n";
            else
                while (i != vsEntries.end()) {
                    sRes += sKey + "=" + *i + "\n";
                    ++i;
                }
            ++it;
        }

        CConfig::SubConfigMapIterator it2 = conf.BeginSubConfigs();
        while (it2 != conf.EndSubConfigs()) {
            auto it3 = it2->second.begin();

            while (it3 != it2->second.end()) {
                sRes += "->" + it2->first + "/" + it3->first + "\n";
                ToString(sRes, *it3->second.m_pSubConfig);
                sRes += "<-\n";
                ++it3;
            }

            ++it2;
        }
    }

  private:
};

TEST_F(CConfigSuccessTest, Empty) { TEST_SUCCESS("", ""); }

/* duplicate entries */
TEST_F(CConfigSuccessTest, Duble1) {
    TEST_SUCCESS("Foo = bar\nFoo = baz\n", "foo=bar\nfoo=baz\n");
}
TEST_F(CConfigSuccessTest, Duble2) {
    TEST_SUCCESS("Foo = baz\nFoo = bar\n", "foo=baz\nfoo=bar\n");
}

/* sub configs */
TEST_F(CConfigErrorTest, SubConf1) {
    TEST_ERROR("</foo>",
               "Error on line 1: Closing tag \"foo\" which is not open.");
}
TEST_F(CConfigErrorTest, SubConf2) {
    TEST_ERROR("<foo a>\n</bar>\n",
               "Error on line 2: Closing tag \"bar\" which is not open.");
}
TEST_F(CConfigErrorTest, SubConf3) {
    TEST_ERROR("<foo bar>",
               "Error on line 1: Not all tags are closed at the end of the "
               "file. Inner-most open tag is \"foo\".");
}
TEST_F(CConfigErrorTest, SubConf4) {
    TEST_ERROR("<foo>\n</foo>",
               "Error on line 1: Empty block name at begin of block.");
}
TEST_F(CConfigErrorTest, SubConf5) {
    TEST_ERROR("<foo 1>\n</foo>\n<foo 1>\n</foo>",
               "Error on line 4: Duplicate entry for tag \"foo\" name \"1\".");
}
TEST_F(CConfigSuccessTest, SubConf6) {
    TEST_SUCCESS("<foo a>\n</foo>", "->foo/a\n<-\n");
}
TEST_F(CConfigSuccessTest, SubConf7) {
    TEST_SUCCESS("<a b>\n  <c d>\n </c>\n</a>", "->a/b\n->c/d\n<-\n<-\n");
}
TEST_F(CConfigSuccessTest, SubConf8) {
    TEST_SUCCESS(" \t <A B>\nfoo = bar\n\tFooO = bar\n</a>",
                 "->a/B\nfoo=bar\nfooo=bar\n<-\n");
}
// ensure order is preserved i.e. subconfigs should not be sorted by name
TEST_F(CConfigSuccessTest, SubConf9) {
    TEST_SUCCESS("<foo b>\n</foo>\n<foo a>\n</foo>",
                 "->foo/b\n<-\n->foo/a\n<-\n");
}

/* comments */
TEST_F(CConfigSuccessTest, Comment1) {
    TEST_SUCCESS("Foo = bar // baz\n// Bar = baz", "foo=bar // baz\n");
}
TEST_F(CConfigSuccessTest, Comment2) {
    TEST_SUCCESS(
        "Foo = bar /* baz */\n/*** Foo = baz ***/\n   /**** asdsdfdf \n Some "
        "quite invalid stuff ***/\n",
        "foo=bar /* baz */\n");
}
TEST_F(CConfigErrorTest, Comment3) {
    TEST_ERROR("<foo foo>\n/* Just a comment\n</foo>",
               "Error on line 3: Comment not closed at end of file.");
}
TEST_F(CConfigSuccessTest, Comment4) { TEST_SUCCESS("/* Foo\n/* Bar */", ""); }
TEST_F(CConfigSuccessTest, Comment5) { TEST_SUCCESS("/* Foo\n// */", ""); }