summaryrefslogtreecommitdiff
path: root/test/source/sheet/databaserange.cxx
blob: 91ee8818486316ac38d83ce8f7c82f8f51d3ccf1 (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
/* -*- 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/databaserange.hxx>
#include <test/cppunitasserthelper.hxx>

#include <com/sun/star/beans/XPropertySet.hpp>
#include <com/sun/star/sheet/XDatabaseRange.hpp>
#include <com/sun/star/table/CellRangeAddress.hpp>
#include <com/sun/star/uno/Reference.hxx>

#include <cppunit/extensions/HelperMacros.h>

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

namespace apitest {

void DatabaseRange::testMoveCells()
{
    uno::Reference< beans::XPropertySet > xDatabaseRange(init("DataArea"), UNO_QUERY_THROW);

    const OUString propName("MoveCells");

    bool bMoveCells = true;
    CPPUNIT_ASSERT(xDatabaseRange->getPropertyValue(propName) >>= bMoveCells);
    CPPUNIT_ASSERT_MESSAGE("Default MoveCells already changed", !bMoveCells);

    uno::Any aNewMoveCells;
    aNewMoveCells <<= true;
    xDatabaseRange->setPropertyValue(propName, aNewMoveCells);
    CPPUNIT_ASSERT(xDatabaseRange->getPropertyValue(propName) >>= bMoveCells);
    CPPUNIT_ASSERT_MESSAGE("Value of MoveCells wasn't changed", bMoveCells);
}

void DatabaseRange::testKeepFormats()
{
    uno::Reference< beans::XPropertySet > xDatabaseRange(init("DataArea"), UNO_QUERY_THROW);

    const OUString propName("KeepFormats");

    bool bKeepFormats = true;
    CPPUNIT_ASSERT(xDatabaseRange->getPropertyValue(propName) >>= bKeepFormats);
    CPPUNIT_ASSERT_MESSAGE("Default KeepFormats already changed", !bKeepFormats);

    uno::Any aNewKeepFormats;
    aNewKeepFormats <<= true;
    xDatabaseRange->setPropertyValue(propName, aNewKeepFormats);
    CPPUNIT_ASSERT(xDatabaseRange->getPropertyValue(propName) >>= bKeepFormats);
    CPPUNIT_ASSERT_MESSAGE("Value of KeepFormats wasn't changed", bKeepFormats);
}

void DatabaseRange::testStripData()
{
    uno::Reference< beans::XPropertySet > xDatabaseRange(init("DataArea"), UNO_QUERY_THROW);

    const OUString propName("StripData");

    bool bStripData = true;
    CPPUNIT_ASSERT(xDatabaseRange->getPropertyValue(propName) >>= bStripData);
    CPPUNIT_ASSERT_MESSAGE("Default StripData already changed", !bStripData);

    uno::Any aNewStripData;
    aNewStripData <<= true;
    xDatabaseRange->setPropertyValue(propName, aNewStripData);
    CPPUNIT_ASSERT(xDatabaseRange->getPropertyValue(propName) >>= bStripData);
    CPPUNIT_ASSERT_MESSAGE("Value of StripData wasn't changed", bStripData);
}

void DatabaseRange::testAutoFilter()
{
    uno::Reference< beans::XPropertySet > xDatabaseRange(init("DataArea"), UNO_QUERY_THROW);

    const OUString propName("AutoFilter");

    bool bAutoFilter = true;
    CPPUNIT_ASSERT(xDatabaseRange->getPropertyValue(propName) >>= bAutoFilter);
    CPPUNIT_ASSERT_MESSAGE("Default AutoFilter already changed", !bAutoFilter);

    uno::Any aNewAutoFilter;
    aNewAutoFilter <<= true;
    xDatabaseRange->setPropertyValue(propName, aNewAutoFilter);
    CPPUNIT_ASSERT(xDatabaseRange->getPropertyValue(propName) >>= bAutoFilter);
    CPPUNIT_ASSERT_MESSAGE("Value of AutoFilter wasn't changed", bAutoFilter);
}

void DatabaseRange::testUseFilterCriteriaSource()
{
    uno::Reference< beans::XPropertySet > xDatabaseRange(init("DataArea"), UNO_QUERY_THROW);

    const OUString propName("UseFilterCriteriaSource");

    bool bUseFilterCriteriaSource = true;
    CPPUNIT_ASSERT(xDatabaseRange->getPropertyValue(propName) >>= bUseFilterCriteriaSource);
    CPPUNIT_ASSERT_MESSAGE("Default UseFilterCriteriaSource already changed", !bUseFilterCriteriaSource);

    uno::Any aNewUseFilterCriteriaSource;
    aNewUseFilterCriteriaSource <<= true;
    xDatabaseRange->setPropertyValue(propName, aNewUseFilterCriteriaSource);
    CPPUNIT_ASSERT(xDatabaseRange->getPropertyValue(propName) >>= bUseFilterCriteriaSource);
    CPPUNIT_ASSERT_MESSAGE("Value of UseFilterCriteriaSource wasn't changed", bUseFilterCriteriaSource);
}

void DatabaseRange::testFilterCriteriaSource()
{
    uno::Reference< beans::XPropertySet > xDatabaseRange(init("DataArea"), UNO_QUERY_THROW);

    const OUString propName("FilterCriteriaSource");

    table::CellRangeAddress cellRangeAddress;
    CPPUNIT_ASSERT(xDatabaseRange->getPropertyValue(propName) >>= cellRangeAddress);
    CPPUNIT_ASSERT_EQUAL_MESSAGE("Default RefreshPeriod already changed",
                                 table::CellRangeAddress(0,0,0,0,0), cellRangeAddress);

    uno::Any aFilterCriteriaSource;
    aFilterCriteriaSource <<= table::CellRangeAddress(1,1,1,1,1);
    xDatabaseRange->setPropertyValue(propName, aFilterCriteriaSource);
    CPPUNIT_ASSERT(xDatabaseRange->getPropertyValue(propName) >>= cellRangeAddress);
    CPPUNIT_ASSERT_EQUAL_MESSAGE("Value of FilterCriteriaSource wasn't changed",
                                 table::CellRangeAddress(1,1,1,1,1), cellRangeAddress);
}

void DatabaseRange::testRefreshPeriod()
{
    uno::Reference< beans::XPropertySet > xDatabaseRange(init("DataArea"), UNO_QUERY_THROW);

    const OUString propName("RefreshPeriod");

    sal_Int32 aRefreshPeriod = 1;
    CPPUNIT_ASSERT(xDatabaseRange->getPropertyValue(propName) >>= aRefreshPeriod);
    CPPUNIT_ASSERT_EQUAL_MESSAGE("Default RefreshPeriod already changed", sal_Int32(0), aRefreshPeriod);

    uno::Any aNewRefreshPeriod;
    aNewRefreshPeriod <<= static_cast<sal_Int32>(42);
    xDatabaseRange->setPropertyValue(propName, aNewRefreshPeriod);
    CPPUNIT_ASSERT(xDatabaseRange->getPropertyValue(propName) >>= aRefreshPeriod);
    CPPUNIT_ASSERT_EQUAL_MESSAGE("Value of RefreshPeriod wasn't changed", sal_Int32(42), aRefreshPeriod);
}

void DatabaseRange::testFromSelection()
{
    uno::Reference< beans::XPropertySet > xDatabaseRange(init("DataArea"), UNO_QUERY_THROW);

    const OUString propName("FromSelection");

    bool bFromSelection = true;
    CPPUNIT_ASSERT(xDatabaseRange->getPropertyValue(propName) >>= bFromSelection);
    CPPUNIT_ASSERT_MESSAGE("Default FromSelection already changed", !bFromSelection);

    uno::Any aNewFromSelection;
    aNewFromSelection <<= true;
    xDatabaseRange->setPropertyValue(propName, aNewFromSelection);
    CPPUNIT_ASSERT(xDatabaseRange->getPropertyValue(propName) >>= bFromSelection);
    CPPUNIT_ASSERT_MESSAGE("Value of FromSelection wasn't changed", bFromSelection);
}

void DatabaseRange::testTokenIndex()
{
    uno::Reference< beans::XPropertySet > xDatabaseRange(init("DataArea"), UNO_QUERY_THROW);

    const OUString propName("TokenIndex");

    sal_Int32 aTokenIndex = 0;
    CPPUNIT_ASSERT(xDatabaseRange->getPropertyValue(propName) >>= aTokenIndex);
    CPPUNIT_ASSERT_EQUAL_MESSAGE("Default TotalIndex already changed", sal_Int32(1), aTokenIndex);

    uno::Any aNewTokenIndex;
    aNewTokenIndex <<= static_cast<sal_Int32>(42);
    xDatabaseRange->setPropertyValue(propName, aNewTokenIndex);
    CPPUNIT_ASSERT(xDatabaseRange->getPropertyValue(propName) >>= aTokenIndex);
    CPPUNIT_ASSERT_EQUAL_MESSAGE("Value of TotalIndex was changed", sal_Int32(1), aTokenIndex);
}

void DatabaseRange::testTotalsRow()
{
    uno::Reference< beans::XPropertySet > xDatabaseRange(init("DataArea"), UNO_QUERY_THROW);

    const OUString propName("TotalsRow");

    bool bTotalsRow = true;
    CPPUNIT_ASSERT(xDatabaseRange->getPropertyValue(propName) >>= bTotalsRow);
    CPPUNIT_ASSERT_MESSAGE("Default TotalsRow already changed", !bTotalsRow);

    uno::Any aNewTotalsRow;
    aNewTotalsRow <<= true;
    xDatabaseRange->setPropertyValue(propName, aNewTotalsRow);
    CPPUNIT_ASSERT(xDatabaseRange->getPropertyValue(propName) >>= bTotalsRow);
    CPPUNIT_ASSERT_MESSAGE("Value of TotalsRow wasn't changed", bTotalsRow);
}

void DatabaseRange::testContainsHeader()
{
    uno::Reference< beans::XPropertySet > xDatabaseRange(init("DataArea"), UNO_QUERY_THROW);

    const OUString propName("ContainsHeader");

    bool bContainsHeader = false;
    CPPUNIT_ASSERT(xDatabaseRange->getPropertyValue(propName) >>= bContainsHeader);
    CPPUNIT_ASSERT_MESSAGE("Default ContainsHeader already changed", bContainsHeader);

    uno::Any aNewContainsHeader;
    aNewContainsHeader <<= false;
    xDatabaseRange->setPropertyValue(propName, aNewContainsHeader);
    CPPUNIT_ASSERT(xDatabaseRange->getPropertyValue(propName) >>= bContainsHeader);
    CPPUNIT_ASSERT_MESSAGE("Value of ContainsHeader wasn't changed", !bContainsHeader);
}

}

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