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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
|
/* -*- 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 <string_view>
#include <postit.hxx>
#include <validat.hxx>
#include <tabvwsh.hxx>
#include <com/sun/star/drawing/FillStyle.hpp>
#include "helper/qahelper.hxx"
#include <svx/svdocapt.hxx>
#include <svx/xfillit0.hxx>
#include <svx/xflclit.hxx>
#include <svx/xflgrit.hxx>
#include <svx/xflhtit.hxx>
#include <drwlayer.hxx>
#include <svx/svdpage.hxx>
#include <svx/svdomeas.hxx>
#include <userdat.hxx>
#include <stlpool.hxx>
using namespace ::com::sun::star;
using namespace ::com::sun::star::uno;
class ScFiltersTest : public ScModelTestBase
{
public:
ScFiltersTest();
};
CPPUNIT_TEST_FIXTURE(ScFiltersTest, testTdf137576_Measureline)
{
// The document contains a vertical measure line, anchored "To Cell (resize with cell)" with
// length 37mm. Save and reload had resulted in a line of 0mm length.
// Get document
createScDoc("ods/tdf137576_Measureline.ods");
ScDocument* pDoc = getScDoc();
// Get shape
ScDrawLayer* pDrawLayer = pDoc->GetDrawLayer();
CPPUNIT_ASSERT_MESSAGE("Load: No ScDrawLayer", pDrawLayer);
SdrPage* pPage = pDrawLayer->GetPage(0);
CPPUNIT_ASSERT_MESSAGE("Load: No draw page", pPage);
SdrMeasureObj* pObj = static_cast<SdrMeasureObj*>(pPage->GetObj(0));
CPPUNIT_ASSERT_MESSAGE("Load: No measure object", pObj);
// Check start and end point of measureline
const Point aStart = pObj->GetPoint(0);
CPPUNIT_ASSERT_POINT_EQUAL_WITH_TOLERANCE(Point(4800, 1500), aStart, 1);
const Point aEnd = pObj->GetPoint(1);
CPPUNIT_ASSERT_POINT_EQUAL_WITH_TOLERANCE(Point(4800, 5200), aEnd, 1);
// Save and reload
saveAndReload("calc8");
pDoc = getScDoc();
// Get shape
pDrawLayer = pDoc->GetDrawLayer();
CPPUNIT_ASSERT_MESSAGE("Reload: No ScDrawLayer", pDrawLayer);
pPage = pDrawLayer->GetPage(0);
CPPUNIT_ASSERT_MESSAGE("Reload: No draw page", pPage);
pObj = static_cast<SdrMeasureObj*>(pPage->GetObj(0));
CPPUNIT_ASSERT_MESSAGE("Reload: No measure object", pObj);
// Check start and end point of measureline, should be unchanged
const Point aStart2 = pObj->GetPoint(0);
CPPUNIT_ASSERT_POINT_EQUAL_WITH_TOLERANCE(Point(4800, 1500), aStart2, 1);
const Point aEnd2 = pObj->GetPoint(1);
CPPUNIT_ASSERT_POINT_EQUAL_WITH_TOLERANCE(Point(4800, 5200), aEnd2, 1);
}
CPPUNIT_TEST_FIXTURE(ScFiltersTest, testTdf137216_HideCol)
{
// The document contains a shape anchored "To Cell (resize with cell)" with start in C3.
// Error was, that hiding column C did not make the shape invisible.
// Get document
createScDoc("ods/tdf137216_HideCol.ods");
ScDocument* pDoc = getScDoc();
// Get shape
ScDrawLayer* pDrawLayer = pDoc->GetDrawLayer();
CPPUNIT_ASSERT_MESSAGE("Load: No ScDrawLayer", pDrawLayer);
const SdrPage* pPage = pDrawLayer->GetPage(0);
CPPUNIT_ASSERT_MESSAGE("Load: No draw page", pPage);
SdrObject* pObj = pPage->GetObj(0);
CPPUNIT_ASSERT_MESSAGE("Load: No object found", pObj);
// Assert object is visible before and invisible after hiding column.
CPPUNIT_ASSERT_MESSAGE("before column hide: Object should be visible", pObj->IsVisible());
pDoc->SetColHidden(2, 2, 0, true); // col C in UI = col index 2 to 2.
CPPUNIT_ASSERT_MESSAGE("after column hide: Object should be invisible", !pObj->IsVisible());
}
CPPUNIT_TEST_FIXTURE(ScFiltersTest, testTdf137044_CoverHiddenRows)
{
// The document contains a shape anchored "To Cell (resize with cell)" with start in cell A4 and
// end in cell A7. Row height is 30mm. Hiding rows 5 and 6, then saving and reload had resulted
// in a wrong end cell offset and thus a wrong height of the shape.
// Get document
createScDoc("ods/tdf137044_CoverHiddenRows.ods");
ScDocument* pDoc = getScDoc();
// Get shape
ScDrawLayer* pDrawLayer = pDoc->GetDrawLayer();
CPPUNIT_ASSERT_MESSAGE("Load: No ScDrawLayer", pDrawLayer);
SdrPage* pPage = pDrawLayer->GetPage(0);
CPPUNIT_ASSERT_MESSAGE("Load: No draw page", pPage);
SdrObject* pObj = pPage->GetObj(0);
CPPUNIT_ASSERT_MESSAGE("Load: No object", pObj);
// Get original object values
tools::Rectangle aSnapRectOrig = pObj->GetSnapRect();
Point aOriginalEndOffset = ScDrawLayer::GetObjData(pObj)->maEndOffset;
CPPUNIT_ASSERT_RECTANGLE_EQUAL_WITH_TOLERANCE(
tools::Rectangle(Point(500, 3500), Size(1501, 11001)), aSnapRectOrig, 1);
CPPUNIT_ASSERT_POINT_EQUAL_WITH_TOLERANCE(Point(2000, 2499), aOriginalEndOffset, 1);
// Hide rows 5 and 6 in UI = row index 4 to 5.
pDoc->SetRowHidden(4, 5, 0, true);
// Save and reload
saveAndReload("calc8");
pDoc = getScDoc();
// Get shape
pDrawLayer = pDoc->GetDrawLayer();
CPPUNIT_ASSERT_MESSAGE("Reload: No ScDrawLayer", pDrawLayer);
pPage = pDrawLayer->GetPage(0);
CPPUNIT_ASSERT_MESSAGE("Reload: No draw page", pPage);
pObj = pPage->GetObj(0);
CPPUNIT_ASSERT_MESSAGE("Reload: No object", pObj);
// Get new values and compare. End offset should be the same, height should be 6000 smaller.
tools::Rectangle aSnapRectReload = pObj->GetSnapRect();
Point aReloadEndOffset = ScDrawLayer::GetObjData(pObj)->maEndOffset;
CPPUNIT_ASSERT_RECTANGLE_EQUAL_WITH_TOLERANCE(
tools::Rectangle(Point(500, 3500), Size(1501, 5001)), aSnapRectReload, 1);
CPPUNIT_ASSERT_POINT_EQUAL_WITH_TOLERANCE(Point(2000, 2499), aReloadEndOffset, 1);
}
CPPUNIT_TEST_FIXTURE(ScFiltersTest, testTdf137020_FlipVertical)
{
// Get document
createScDoc("ods/tdf137020_FlipVertical.ods");
ScDocument* pDoc = getScDoc();
// Get shape
ScDrawLayer* pDrawLayer = pDoc->GetDrawLayer();
CPPUNIT_ASSERT_MESSAGE("Load: No ScDrawLayer", pDrawLayer);
SdrPage* pPage = pDrawLayer->GetPage(0);
CPPUNIT_ASSERT_MESSAGE("Load: No draw page", pPage);
SdrObject* pObj = pPage->GetObj(0);
CPPUNIT_ASSERT_MESSAGE("Load: No object", pObj);
const tools::Rectangle aSnapRectOrig = pObj->GetSnapRect();
// Vertical mirror on center should not change the snap rect.
pObj->Mirror(aSnapRectOrig.LeftCenter(), aSnapRectOrig.RightCenter());
const tools::Rectangle aSnapRectFlip = pObj->GetSnapRect();
CPPUNIT_ASSERT_RECTANGLE_EQUAL_WITH_TOLERANCE(aSnapRectOrig, aSnapRectFlip, 1);
// Save and reload
saveAndReload("calc8");
pDoc = getScDoc();
// Get shape
pDrawLayer = pDoc->GetDrawLayer();
CPPUNIT_ASSERT_MESSAGE("Reload: No ScDrawLayer", pDrawLayer);
pPage = pDrawLayer->GetPage(0);
CPPUNIT_ASSERT_MESSAGE("Reload: No draw page", pPage);
pObj = pPage->GetObj(0);
CPPUNIT_ASSERT_MESSAGE("Reload: No object", pObj);
// Check pos and size of shape again, should be unchanged
const tools::Rectangle aSnapRectReload = pObj->GetSnapRect();
CPPUNIT_ASSERT_RECTANGLE_EQUAL_WITH_TOLERANCE(aSnapRectOrig, aSnapRectReload, 1);
}
CPPUNIT_TEST_FIXTURE(ScFiltersTest, testTdf64229)
{
createScDoc("ods/fdo64229b.ods");
ScDocShell* pDocSh = getScDocShell();
pDocSh->DoHardRecalc();
ScDocument* pDoc = getScDoc();
//test hard recalc: document has an incorrect cached formula result
//hard recalc should have updated to the correct result
OUString aCSVFileName = createFilePath(u"contentCSV/fdo64229b.csv");
testFile(aCSVFileName, *pDoc, 0);
}
CPPUNIT_TEST_FIXTURE(ScFiltersTest, testTdf36933)
{
createScDoc("ods/fdo36933test.ods");
ScDocShell* pDocSh = getScDocShell();
pDocSh->DoHardRecalc();
ScDocument* pDoc = getScDoc();
//test hard recalc: document has an incorrect cached formula result
//hard recalc should have updated to the correct result
OUString aCSVFileName = createFilePath(u"contentCSV/fdo36933test.csv");
testFile(aCSVFileName, *pDoc, 0);
}
CPPUNIT_TEST_FIXTURE(ScFiltersTest, testTdf43700)
{
createScDoc("ods/fdo43700test.ods");
ScDocShell* pDocSh = getScDocShell();
pDocSh->DoHardRecalc();
ScDocument* pDoc = getScDoc();
//test hard recalc: document has an incorrect cached formula result
//hard recalc should have updated to the correct result
OUString aCSVFileName = createFilePath(u"contentCSV/fdo43700test.csv");
testFile(aCSVFileName, *pDoc, 0);
}
CPPUNIT_TEST_FIXTURE(ScFiltersTest, testTdf43534)
{
createScDoc("ods/fdo43534test.ods");
ScDocShell* pDocSh = getScDocShell();
pDocSh->DoHardRecalc();
//test hard recalc: document has an incorrect cached formula result
//hard recalc should have updated to the correct result
// createCSVPath("fdo43534test.", aCSVFileName);
// testFile(aCSVFileName, rDoc, 0);
}
CPPUNIT_TEST_FIXTURE(ScFiltersTest, testTdf91979)
{
createScDoc();
ScDocument* pDoc = getScDoc();
ScTabViewShell* pViewShell = getViewShell();
auto& aViewData = pViewShell->GetViewData();
// Check coordinates of a distant cell
Point aPos = aViewData.GetScrPos(pDoc->MaxCol() - 1, 10000, SC_SPLIT_TOPLEFT, true);
int nColWidth = ScViewData::ToPixel(pDoc->GetColWidth(0, 0), aViewData.GetPPTX());
int nRowHeight = ScViewData::ToPixel(pDoc->GetRowHeight(0, 0), aViewData.GetPPTY());
CPPUNIT_ASSERT_EQUAL(static_cast<tools::Long>((pDoc->MaxCol() - 1) * nColWidth), aPos.getX());
CPPUNIT_ASSERT_EQUAL(static_cast<tools::Long>(10000 * nRowHeight), aPos.getY());
}
CPPUNIT_TEST_FIXTURE(ScFiltersTest, testTdf98657)
{
createScDoc("ods/tdf98657.ods");
ScDocument* pDoc = getScDoc();
ScDocShell* pDocSh = getScDocShell();
pDocSh->DoHardRecalc();
// this was a NaN before the fix
CPPUNIT_ASSERT_EQUAL(285.0, pDoc->GetValue(ScAddress(1, 1, 0)));
}
CPPUNIT_TEST_FIXTURE(ScFiltersTest, testTdf88821)
{
setImportFilterName("calc_HTML_WebQuery");
createScDoc("html/tdf88821.html");
ScDocument* pDoc = getScDoc();
// B2 should be 'Périmètre', not 'Périmètre'
CPPUNIT_ASSERT_EQUAL(OStringToOUString("P\xC3\xA9rim\xC3\xA8tre", RTL_TEXTENCODING_UTF8),
pDoc->GetString(1, 1, 0));
}
CPPUNIT_TEST_FIXTURE(ScFiltersTest, testTdf88821_2)
{
setImportFilterName("calc_HTML_WebQuery");
createScDoc("html/tdf88821-2.html");
ScDocument* pDoc = getScDoc();
// A2 should be 'ABCabcČŠŽčšž', not 'ABCabcČŠŽÄヘšž'
CPPUNIT_ASSERT_EQUAL(OStringToOUString("ABCabc\xC4\x8C\xC5\xA0\xC5\xBD\xC4\x8D\xC5\xA1\xC5\xBE",
RTL_TEXTENCODING_UTF8),
pDoc->GetString(0, 1, 0));
}
CPPUNIT_TEST_FIXTURE(ScFiltersTest, testTdf103960)
{
setImportFilterName("calc_HTML_WebQuery");
createScDoc("html/tdf103960.html");
ScDocument* pDoc = getScDoc();
// A1 should be 'Data', not the entire content of the file
CPPUNIT_ASSERT_EQUAL(OStringToOUString("Data", RTL_TEXTENCODING_UTF8),
pDoc->GetString(0, 0, 0));
}
CPPUNIT_TEST_FIXTURE(ScFiltersTest, testRhbz1390776)
{
createScDoc("xml/rhbz1390776.xml");
ScDocument* pDoc = getScDoc();
CPPUNIT_ASSERT_EQUAL_MESSAGE("Wrong range", OUString("=SUM(A18:A23)"),
pDoc->GetFormula(0, 27, 0));
}
CPPUNIT_TEST_FIXTURE(ScFiltersTest, testTdf104310)
{
// 1. Test x14 extension
{
createScDoc("xlsx/tdf104310.xlsx");
ScDocument* pDoc = getScDoc();
const ScValidationData* pData = pDoc->GetValidationEntry(1);
CPPUNIT_ASSERT(pData);
// Make sure the list is correct.
std::vector<ScTypedStrData> aList;
pData->FillSelectionList(aList, ScAddress(0, 1, 0));
CPPUNIT_ASSERT_EQUAL(size_t(5), aList.size());
for (size_t i = 0; i < 5; ++i)
CPPUNIT_ASSERT_DOUBLES_EQUAL(double(i + 1), aList[i].GetValue(), 1e-8);
}
// 2. Test x12ac extension
{
createScDoc("xlsx/tdf104310-2.xlsx");
ScDocument* pDoc = getScDoc();
const ScValidationData* pData = pDoc->GetValidationEntry(1);
CPPUNIT_ASSERT(pData);
// Make sure the list is correct.
std::vector<ScTypedStrData> aList;
pData->FillSelectionList(aList, ScAddress(0, 1, 0));
CPPUNIT_ASSERT_EQUAL(size_t(3), aList.size());
CPPUNIT_ASSERT_EQUAL(OUString("1"), aList[0].GetString());
CPPUNIT_ASSERT_EQUAL(OUString("2,3"), aList[1].GetString());
CPPUNIT_ASSERT_EQUAL(OUString("4"), aList[2].GetString());
}
}
CPPUNIT_TEST_FIXTURE(ScFiltersTest, testTdf31231)
{
// We must open it read-write to allow setting modified flag
createScDoc("ods/tdf31231.ods");
ScDocShell* pDocSh = getScDocShell();
CPPUNIT_ASSERT_MESSAGE("The spreadsheet must be allowed to set modified state",
pDocSh->IsEnableSetModified());
CPPUNIT_ASSERT_MESSAGE("The spreadsheet must not be modified on open", !pDocSh->IsModified());
pDocSh->DoHardRecalc();
CPPUNIT_ASSERT_MESSAGE("The spreadsheet must be allowed to set modified state",
pDocSh->IsEnableSetModified());
CPPUNIT_ASSERT_MESSAGE("The spreadsheet must not be modified on open", pDocSh->IsModified());
}
CPPUNIT_TEST_FIXTURE(ScFiltersTest, testTdf141914)
{
// We must open it read-write to allow setting modified flag
createScDoc("ods/tdf141914.ods");
ScDocShell* pDocSh = getScDocShell();
CPPUNIT_ASSERT_MESSAGE("The spreadsheet must be allowed to set modified state",
pDocSh->IsEnableSetModified());
CPPUNIT_ASSERT_MESSAGE("The spreadsheet must not be modified on open", !pDocSh->IsModified());
pDocSh->DoHardRecalc();
CPPUNIT_ASSERT_MESSAGE("The spreadsheet must be allowed to set modified state",
pDocSh->IsEnableSetModified());
CPPUNIT_ASSERT_MESSAGE("The spreadsheet must not be modified on open", pDocSh->IsModified());
}
CPPUNIT_TEST_FIXTURE(ScFiltersTest, testTdf128951)
{
createScDoc();
// 2. Create a new sheet instance
css::uno::Reference<css::lang::XMultiServiceFactory> xFac(mxComponent,
css::uno::UNO_QUERY_THROW);
auto xSheet = xFac->createInstance("com.sun.star.sheet.Spreadsheet");
// 3. Insert sheet into the spreadsheet (was throwing IllegalArgumentException)
css::uno::Reference<css::sheet::XSpreadsheetDocument> xDoc(mxComponent,
css::uno::UNO_QUERY_THROW);
CPPUNIT_ASSERT_NO_THROW(xDoc->getSheets()->insertByName("mustNotThrow", css::uno::Any(xSheet)));
}
namespace
{
SdrCaptionObj* checkCaption(ScDocument& rDoc, const ScAddress& rAddress, bool bIsShown)
{
ScPostIt* pNote = rDoc.GetNote(rAddress);
CPPUNIT_ASSERT(pNote);
CPPUNIT_ASSERT_EQUAL(pNote->IsCaptionShown(), bIsShown);
if (!bIsShown)
pNote->ShowCaption(rAddress, true);
SdrCaptionObj* pCaption = pNote->GetCaption();
CPPUNIT_ASSERT(pCaption);
return pCaption;
}
}
CPPUNIT_TEST_FIXTURE(ScFiltersTest, testTdf129789)
{
createScDoc("ods/tdf129789.ods");
ScDocument* pDoc = getScDoc();
{
// Fill: None
SdrCaptionObj* const pCaptionB2 = checkCaption(*pDoc, ScAddress(1, 1, 0), true);
const XFillStyleItem& rStyleItemB2 = pCaptionB2->GetMergedItem(XATTR_FILLSTYLE);
CPPUNIT_ASSERT_EQUAL(drawing::FillStyle_NONE, rStyleItemB2.GetValue());
SdrCaptionObj* const pCaptionB9 = checkCaption(*pDoc, ScAddress(1, 8, 0), false);
const XFillStyleItem& rStyleItemB9 = pCaptionB9->GetMergedItem(XATTR_FILLSTYLE);
CPPUNIT_ASSERT_EQUAL(drawing::FillStyle_NONE, rStyleItemB9.GetValue());
}
{
// Fill: Solid
SdrCaptionObj* const pCaptionE2 = checkCaption(*pDoc, ScAddress(4, 1, 0), true);
const XFillStyleItem& rStyleItemE2 = pCaptionE2->GetMergedItem(XATTR_FILLSTYLE);
CPPUNIT_ASSERT_EQUAL(drawing::FillStyle_SOLID, rStyleItemE2.GetValue());
const XFillColorItem& rColorItem = pCaptionE2->GetMergedItem(XATTR_FILLCOLOR);
CPPUNIT_ASSERT_EQUAL(Color(0xffffc0), rColorItem.GetColorValue());
SdrCaptionObj* const pCaptionE9 = checkCaption(*pDoc, ScAddress(4, 8, 0), false);
const XFillStyleItem& rStyleItemE9 = pCaptionE9->GetMergedItem(XATTR_FILLSTYLE);
CPPUNIT_ASSERT_EQUAL(drawing::FillStyle_SOLID, rStyleItemE9.GetValue());
const XFillColorItem& rColorItem2 = pCaptionE9->GetMergedItem(XATTR_FILLCOLOR);
CPPUNIT_ASSERT_EQUAL(Color(0xffffc0), rColorItem2.GetColorValue());
}
{
// Fill: Gradient
SdrCaptionObj* const pCaptionH2 = checkCaption(*pDoc, ScAddress(7, 1, 0), true);
const XFillStyleItem& rStyleItemH2 = pCaptionH2->GetMergedItem(XATTR_FILLSTYLE);
CPPUNIT_ASSERT_EQUAL(drawing::FillStyle_GRADIENT, rStyleItemH2.GetValue());
const XFillGradientItem& rGradientItem = pCaptionH2->GetMergedItem(XATTR_FILLGRADIENT);
CPPUNIT_ASSERT_EQUAL(Color(0xdde8cb), rGradientItem.GetGradientValue().GetStartColor());
CPPUNIT_ASSERT_EQUAL(Color(0xffd7d7), rGradientItem.GetGradientValue().GetEndColor());
SdrCaptionObj* const pCaptionH9 = checkCaption(*pDoc, ScAddress(7, 8, 0), false);
const XFillStyleItem& rStyleItemH9 = pCaptionH9->GetMergedItem(XATTR_FILLSTYLE);
CPPUNIT_ASSERT_EQUAL(drawing::FillStyle_GRADIENT, rStyleItemH9.GetValue());
const XFillGradientItem& rGradientItem2 = pCaptionH2->GetMergedItem(XATTR_FILLGRADIENT);
CPPUNIT_ASSERT_EQUAL(Color(0xdde8cb), rGradientItem2.GetGradientValue().GetStartColor());
CPPUNIT_ASSERT_EQUAL(Color(0xffd7d7), rGradientItem2.GetGradientValue().GetEndColor());
}
{
// Fill: Hatch
SdrCaptionObj* const pCaptionK2 = checkCaption(*pDoc, ScAddress(10, 1, 0), true);
const XFillStyleItem& rStyleItemK2 = pCaptionK2->GetMergedItem(XATTR_FILLSTYLE);
CPPUNIT_ASSERT_EQUAL(drawing::FillStyle_HATCH, rStyleItemK2.GetValue());
const XFillHatchItem& rHatchItem = pCaptionK2->GetMergedItem(XATTR_FILLHATCH);
CPPUNIT_ASSERT_EQUAL(Color(0x000080), rHatchItem.GetHatchValue().GetColor());
SdrCaptionObj* const pCaptionK9 = checkCaption(*pDoc, ScAddress(10, 8, 0), false);
const XFillStyleItem& rStyleItemK9 = pCaptionK9->GetMergedItem(XATTR_FILLSTYLE);
CPPUNIT_ASSERT_EQUAL(drawing::FillStyle_HATCH, rStyleItemK9.GetValue());
const XFillHatchItem& rHatchItem2 = pCaptionK9->GetMergedItem(XATTR_FILLHATCH);
CPPUNIT_ASSERT_EQUAL(Color(0x000080), rHatchItem2.GetHatchValue().GetColor());
}
{
// Fill: Bitmap
SdrCaptionObj* const pCaptionN2 = checkCaption(*pDoc, ScAddress(13, 1, 0), true);
const XFillStyleItem& rStyleItemN2 = pCaptionN2->GetMergedItem(XATTR_FILLSTYLE);
CPPUNIT_ASSERT_EQUAL(drawing::FillStyle_BITMAP, rStyleItemN2.GetValue());
SdrCaptionObj* const pCaptionN9 = checkCaption(*pDoc, ScAddress(13, 8, 0), false);
const XFillStyleItem& rStyleItemN9 = pCaptionN9->GetMergedItem(XATTR_FILLSTYLE);
CPPUNIT_ASSERT_EQUAL(drawing::FillStyle_BITMAP, rStyleItemN9.GetValue());
}
}
CPPUNIT_TEST_FIXTURE(ScFiltersTest, testTdf130725)
{
createScDoc();
uno::Reference<sheet::XSpreadsheetDocument> xDoc(mxComponent, uno::UNO_QUERY_THROW);
// 2. Insert 0.0042 into a cell as a formula, to force the conversion from string to double
css::uno::Reference<css::sheet::XCellRangesAccess> xSheets(xDoc->getSheets(),
css::uno::UNO_QUERY_THROW);
css::uno::Reference<css::table::XCell> xCell = xSheets->getCellByPosition(0, 0, 0);
xCell->setFormula("0.0042"); // this assumes en-US locale
// 3. Check that the value is the nearest double-precision representation of the decimal 0.0042
// (it was 0.0042000000000000006 instead of 0.0041999999999999997).
CPPUNIT_ASSERT_EQUAL_MESSAGE("Value must be the nearest representation of decimal 0.0042",
0.0042, xCell->getValue()); // strict equality
}
CPPUNIT_TEST_FIXTURE(ScFiltersTest, testTdf104502_hiddenColsCountedInPageCount)
{
createScDoc("ods/tdf104502_hiddenColsCountedInPageCount.ods");
ScDocument* pDoc = getScDoc();
//Check that hidden columns are not calculated into Print Area
SCCOL nEndCol = 0;
SCROW nEndRow = 0;
CPPUNIT_ASSERT(pDoc->GetPrintArea(0, nEndCol, nEndRow, false));
CPPUNIT_ASSERT_EQUAL(SCCOL(0), nEndCol);
CPPUNIT_ASSERT_EQUAL(SCROW(55), nEndRow);
}
CPPUNIT_TEST_FIXTURE(ScFiltersTest, testTdf108188_pagestyle)
{
createScDoc("ods/tdf108188_pagestyle.ods");
// Check if the user defined page style is present
const OUString aTestPageStyle = "TestPageStyle";
ScDocument* pDoc = getScDoc();
CPPUNIT_ASSERT_EQUAL(aTestPageStyle, pDoc->GetPageStyle(0));
// Without the accompanying fix in place, the page styles are always used
ScStyleSheetPool* pStylePool = pDoc->GetStyleSheetPool();
CPPUNIT_ASSERT(pStylePool->Find(aTestPageStyle, SfxStyleFamily::Page)->IsUsed());
CPPUNIT_ASSERT(!pStylePool->Find("Default", SfxStyleFamily::Page)->IsUsed());
}
ScFiltersTest::ScFiltersTest()
: ScModelTestBase("sc/qa/unit/data")
{
}
CPPUNIT_PLUGIN_IMPLEMENT();
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|