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
|
// SPDX-License-Identifier: GPL-2.0-or-later
/**
* @file
* Test xml node
*/
/*
* Authors:
* Ted Gould
*
* Copyright (C) 2020 Authors
*
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#include "gtest/gtest.h"
#include "xml/repr.h"
TEST(XmlTest, nodeiter)
{
auto testdoc = std::shared_ptr<Inkscape::XML::Document>(sp_repr_read_buf("<svg><g/></svg>", SP_SVG_NS_URI));
ASSERT_TRUE(testdoc);
auto count = 0;
for (auto &child : *testdoc->root()) {
ASSERT_STREQ(child.name(), "svg:g");
count++;
}
ASSERT_EQ(count, 1);
testdoc =
std::shared_ptr<Inkscape::XML::Document>(sp_repr_read_buf("<svg><g/><g/><g><g/></g></svg>", SP_SVG_NS_URI));
ASSERT_TRUE(testdoc);
count = 0;
for (auto &child : *testdoc->root()) {
ASSERT_STREQ(child.name(), "svg:g");
count++;
}
ASSERT_EQ(count, 3);
testdoc = std::shared_ptr<Inkscape::XML::Document>(sp_repr_read_buf(R"""(
<svg>
<g/>
<!-- comment -->
<g>
<circle/>
</g>
<g>
<circle id='a'/>
<path id='b'/>
<path id='c'/>
</g>
</svg>
)""", SP_SVG_NS_URI));
ASSERT_TRUE(testdoc);
auto path = std::list<std::string>{"svg:g", "svg:path"};
auto found = testdoc->root()->findChildPath(path);
ASSERT_NE(found, nullptr);
ASSERT_STREQ(found->attribute("id"), "b");
// no such second element
path = {"svg:g", "svg:g"};
ASSERT_EQ(testdoc->root()->findChildPath(path), nullptr);
// no such first element
path = {"svg:symbol", "svg:path"};
ASSERT_EQ(testdoc->root()->findChildPath(path), nullptr);
// root with no children
testdoc = std::shared_ptr<Inkscape::XML::Document>(sp_repr_read_buf("<svg/>", SP_SVG_NS_URI));
ASSERT_EQ(testdoc->root()->findChildPath(path), nullptr);
}
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :
|