summaryrefslogtreecommitdiff
path: root/test/source/sheet/xsheetfilterableex.cxx
blob: dee2a8a573d340b7702e99318579ea3453e7d202 (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
/* -*- 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 <test/sheet/xsheetfilterableex.hxx>

#include <com/sun/star/sheet/FilterConnection.hpp>
#include <com/sun/star/sheet/FilterOperator.hpp>
#include <com/sun/star/sheet/TableFilterField.hpp>
#include <com/sun/star/sheet/XSheetFilterDescriptor.hpp>
#include <com/sun/star/sheet/XSheetFilterable.hpp>
#include <com/sun/star/sheet/XSheetFilterableEx.hpp>
#include <com/sun/star/sheet/XSpreadsheet.hpp>
#include <com/sun/star/table/XCellCursor.hpp>
#include <com/sun/star/uno/Reference.hxx>
#include <com/sun/star/uno/Sequence.hxx>

#include <cppunit/extensions/HelperMacros.h>

using namespace css;
using namespace css::uno;

namespace apitest
{
void XSheetFilterableEx::testCreateFilterDescriptorByObject()
{
    uno::Reference<sheet::XSheetFilterableEx> xSFEx(init(), UNO_QUERY_THROW);
    uno::Reference<sheet::XSheetFilterable> xSF(getXSpreadsheet(), UNO_QUERY_THROW);

    uno::Reference<sheet::XSheetFilterDescriptor> xSFD = xSFEx->createFilterDescriptorByObject(xSF);
    CPPUNIT_ASSERT_MESSAGE("no XSheetFilterDescriptor", xSFD.is());

    uno::Sequence<sheet::TableFilterField> xTFF = xSFD->getFilterFields();
    CPPUNIT_ASSERT_MESSAGE("The gained XSheetFilterDescriptor is empty", xTFF.getLength() != 0);

    for (const auto& field : xTFF)
    {
        // we don't care about the actual value, just that we can access the fields
        CPPUNIT_ASSERT_MESSAGE("Unable to retrieve field: StringValue",
                               !field.StringValue.isEmpty() || field.StringValue.isEmpty());
        CPPUNIT_ASSERT_MESSAGE("Unable to retrieve field: IsNumeric",
                               !field.IsNumeric || field.IsNumeric);
        CPPUNIT_ASSERT_MESSAGE("Unable to retrieve field: NumericValue",
                               field.NumericValue != 0.0 || field.NumericValue == 0.0);
        CPPUNIT_ASSERT_MESSAGE("Unable to retrieve field: Field",
                               field.Field != 0 || field.Field == 0);
        CPPUNIT_ASSERT_MESSAGE("Unable to retrieve field: Connection",
                               field.Connection == sheet::FilterConnection_AND
                                   || field.Connection == sheet::FilterConnection_OR);
        CPPUNIT_ASSERT_MESSAGE("Unable to retrieve field: Operator",
                               field.Operator != sheet::FilterOperator_EMPTY);
    }
}
}

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