summaryrefslogtreecommitdiffstats
path: root/tools/qa/cppunit/test_xmlwriter.cxx
blob: 0fddb3d77de4fd65cf8c8beef4311877327772cf (plain)
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
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */

#include <cppunit/extensions/HelperMacros.h>
#include <test/bootstrapfixture.hxx>
#include <tools/stream.hxx>
#include <tools/XmlWriter.hxx>

namespace
{
class XmlWriterTest : public test::BootstrapFixture
{
public:
    XmlWriterTest()
        : BootstrapFixture(true, false)
    {
    }

    virtual void setUp() override {}

    void testSimpleRoot();
    void testSpecialChars();

    CPPUNIT_TEST_SUITE(XmlWriterTest);
    CPPUNIT_TEST(testSimpleRoot);
    CPPUNIT_TEST(testSpecialChars);
    CPPUNIT_TEST_SUITE_END();
};

void XmlWriterTest::testSimpleRoot()
{
    SvMemoryStream aMemoryStream;

    tools::XmlWriter aWriter(&aMemoryStream);
    aWriter.startDocument(0, false);
    aWriter.startElement("test");
    aWriter.endElement();
    aWriter.endDocument();

    aMemoryStream.Seek(0);
    OString aString(static_cast<const char*>(aMemoryStream.GetData()), aMemoryStream.GetSize());
    CPPUNIT_ASSERT_EQUAL(OString("<test/>"), aString);
}

void XmlWriterTest::testSpecialChars()
{
    SvMemoryStream aMemoryStream;

    tools::XmlWriter aWriter(&aMemoryStream);
    aWriter.startDocument(0, false);
    aWriter.startElement("test");
    aWriter.content("<>");
    aWriter.endElement();
    aWriter.endDocument();

    aMemoryStream.Seek(0);
    OString aString(static_cast<const char*>(aMemoryStream.GetData()), aMemoryStream.GetSize());
    CPPUNIT_ASSERT_EQUAL(OString("<test>&lt;&gt;</test>"), aString);
}

CPPUNIT_TEST_SUITE_REGISTRATION(XmlWriterTest);
}

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */