summaryrefslogtreecommitdiff
path: root/test/source/sheet/xfunctiondescriptions.cxx
blob: 5a71f532a4bed8765f7c46e4ab18429832625358 (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
71
72
73
74
75
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
/*
 * 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 <random>

#include <test/sheet/xfunctiondescriptions.hxx>

#include <com/sun/star/beans/XPropertySet.hpp>
#include <com/sun/star/beans/PropertyValue.hpp>
#include <com/sun/star/sheet/XFunctionDescriptions.hpp>
#include <com/sun/star/lang/IllegalArgumentException.hpp>
#include <com/sun/star/uno/Reference.hxx>

#include <cppunit/extensions/HelperMacros.h>

using namespace css;
using namespace com::sun::star;
using namespace com::sun::star::uno;

namespace apitest
{
void XFunctionDescriptions::testGetById()
{
    uno::Reference<sheet::XFunctionDescriptions> xFD(init(), UNO_QUERY_THROW);

    const sal_Int32 nCount = xFD->getCount();
    CPPUNIT_ASSERT_MESSAGE("No FunctionDescriptions available", 0 < nCount);

    // first grab a random function descriptions
    std::random_device rd;
    std::mt19937 gen(rd());
    std::uniform_int_distribution<> distr(0, nCount - 1);
    int nNumber = distr(gen);

    sal_Int32 aId1 = 0;
    OUString aName1;
    uno::Sequence<beans::PropertyValue> aProps1;
    CPPUNIT_ASSERT(xFD->getByIndex(nNumber) >>= aProps1);
    for (const auto& aProp : aProps1)
    {
        if (aProp.Name == "Id")
            aId1 = aProp.Value.get<sal_Int32>();
        if (aProp.Name == "Name")
            aName1 = aProp.Value.get<OUString>();
    }

    // fetch the same descriptions by its id
    sal_Int32 aId2 = 0;
    OUString aName2;
    uno::Sequence<beans::PropertyValue> aProps2;
    aProps2 = xFD->getById(aId1);
    CPPUNIT_ASSERT_MESSAGE("Received empty FunctionDescriptions from getById()",
                           aProps2.getLength());
    for (const auto& aProp : aProps2)
    {
        if (aProp.Name == "Id")
            aId2 = aProp.Value.get<sal_Int32>();
        if (aProp.Name == "Name")
            aName2 = aProp.Value.get<OUString>();
    }
    CPPUNIT_ASSERT_EQUAL_MESSAGE("Received wrong FunctionDescriptions (Id)", aId1, aId2);
    CPPUNIT_ASSERT_EQUAL_MESSAGE("Received wrong FunctionDescriptions (Name)", aName1, aName2);

    CPPUNIT_ASSERT_THROW_MESSAGE("No IllegalArgumentException thrown", xFD->getById(-1),
                                 css::lang::IllegalArgumentException);
}
}

/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */