summaryrefslogtreecommitdiff
path: root/tools/qa/cppunit/test_json_writer.cxx
blob: e27afc95f712fce975722aea6138c8aa14ea2c08 (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
/* -*- 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 <sal/config.h>

#include <cstdlib>

#include <cppunit/extensions/HelperMacros.h>
#include <test/bootstrapfixture.hxx>
#include <rtl/ustring.hxx>
#include <tools/stream.hxx>
#include <tools/json_writer.hxx>

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

    virtual void setUp() override {}

    void test1();

    CPPUNIT_TEST_SUITE(JsonWriterTest);
    CPPUNIT_TEST(test1);
    CPPUNIT_TEST_SUITE_END();
};

void JsonWriterTest::test1()
{
    tools::JsonWriter aJson;

    {
        auto testNode = aJson.startNode("node");
        aJson.put("oustring", OUString("val1"));
        aJson.put("ostring", OString("val2"));
        aJson.put("charptr", "val3");
        aJson.put("int", 12);
    }

    struct Free
    {
        void operator()(void* p) const { std::free(p); }
    };
    std::unique_ptr<char, Free> result(aJson.extractData());

    CPPUNIT_ASSERT_EQUAL(std::string("{ \"node\": { \"oustring\": \"val1\", \"ostring\": \"val2\", "
                                     "\"charptr\": \"val3\", \"int\": 12}}"),
                         std::string(result.get()));
}

CPPUNIT_TEST_SUITE_REGISTRATION(JsonWriterTest);
}

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