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
85
86
87
88
89
90
91
92
93
94
95
|
/* -*- 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 <test/sheet/xsheetfilterable.hxx>
#include <com/sun/star/beans/XPropertySet.hpp>
#include <com/sun/star/sheet/FilterOperator.hpp>
#include <com/sun/star/sheet/TableFilterField.hpp>
#include <com/sun/star/sheet/XSheetFilterable.hpp>
#include <com/sun/star/sheet/XSheetFilterDescriptor.hpp>
#include <com/sun/star/sheet/XSpreadsheet.hpp>
#include <com/sun/star/table/XColumnRowRange.hpp>
#include <com/sun/star/table/XTableRows.hpp>
#include <com/sun/star/uno/Reference.hxx>
#include <com/sun/star/uno/Sequence.hxx>
#include <cppunit/TestAssert.h>
using namespace css;
using namespace css::uno;
namespace apitest {
void XSheetFilterable::testCreateFilterDescriptor()
{
uno::Reference< sheet::XSheetFilterable > xFA(init(), UNO_QUERY_THROW);
uno::Reference< sheet::XSheetFilterDescriptor > xSFD = xFA->createFilterDescriptor(true);
uno::Sequence< sheet::TableFilterField > xTFF{
{ /* Connection */ {},
/* Field */ 0,
/* Operator */ sheet::FilterOperator_GREATER_EQUAL,
/* IsNumeric */ true,
/* NumericValue */ 2,
/* StringValue */ {}},
{ /* Connection */ {},
/* Field */ 1,
/* Operator */ sheet::FilterOperator_LESS,
/* IsNumeric */ false,
/* NumericValue */ {},
/* StringValue */ "C" }
};
CPPUNIT_ASSERT_NO_THROW_MESSAGE("Unable to create XSheetFilterDescriptor", xSFD->setFilterFields(xTFF));
}
void XSheetFilterable::testFilter()
{
uno::Reference< sheet::XSpreadsheet > xSheet(getXSpreadsheet(), UNO_QUERY_THROW);
uno::Reference< sheet::XSheetFilterable > xFA(xSheet, UNO_QUERY_THROW);
uno::Reference< sheet::XSheetFilterDescriptor > xSFD = xFA->createFilterDescriptor(true);
uno::Sequence< sheet::TableFilterField > xTFF{
{ /* Connection */ {},
/* Field */ 0,
/* Operator */ sheet::FilterOperator_GREATER_EQUAL,
/* IsNumeric */ true,
/* NumericValue */ 2,
/* StringValue */ {}},
{ /* Connection */ {},
/* Field */ 1,
/* Operator */ sheet::FilterOperator_LESS,
/* IsNumeric */ false,
/* NumericValue */ {},
/* StringValue */ "C" }
};
xSFD->setFilterFields(xTFF);
xSheet->getCellByPosition(0, 0)->setValue(1);
xSheet->getCellByPosition(0, 1)->setValue(2);
xSheet->getCellByPosition(0, 2)->setValue(3);
xSheet->getCellByPosition(1, 0)->setFormula("A");
xSheet->getCellByPosition(1, 1)->setFormula("B");
xSheet->getCellByPosition(1, 2)->setFormula("C");
xFA->filter(xSFD);
uno::Reference< table::XColumnRowRange > xColRowRange(xSheet, UNO_QUERY_THROW);
uno::Reference< table::XTableRows > xTableRows = xColRowRange->getRows();
uno::Reference< beans::XPropertySet > xRowProps(xTableRows->getByIndex(0), UNO_QUERY_THROW);
bool bIsVisible = true;
CPPUNIT_ASSERT(xRowProps->getPropertyValue("IsVisible") >>= bIsVisible);
CPPUNIT_ASSERT_MESSAGE("Row 1 should be invisible", !bIsVisible);
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|