summaryrefslogtreecommitdiff
path: root/sc/qa/extras
AgeCommit message (Collapse)AuthorFilesLines
2013-03-19removal of RTL_CONSTASCII_USTRINGPARAM for quoted OUStrings declarationsThomas Arnhold5-6/+6
s/(OUString\s+[a-zA-Z_][A-Za-z0-9_]*\s*)\(\s*RTL_CONSTASCII_USTRINGPARAM\s*\((\s*"[^")]*?"\s*)\)\s*\)/$1\($2\)/gms Change-Id: Iad20f242c80c4bdc69df17e2d7a69d58ea53654b Reviewed-on: https://gerrit.libreoffice.org/2835 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
2013-03-19automated removal of RTL_CONSTASCII_USTRINGPARAM for quoted OUStringsThomas Arnhold14-62/+61
Done with a perl regex: s/OUString\s*\(\s*RTL_CONSTASCII_USTRINGPARAM\s*\((\s*"[^")]*?"\s*)\)\s*\)/OUString\($1\)/gms Change-Id: Idf28320817cdcbea6d0f7ec06a9bf51bd2c3b3ec Reviewed-on: https://gerrit.libreoffice.org/2832 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
2013-03-12re-enable testStarBasic() & testVba() in for Windows ( macosx later )Noel Power1-1/+1
Change-Id: I9f7621fdadbff1c7b1b3d0fbadf43715327e39d6
2013-03-12disable splitcolumn tests that seems to cause problems on some tinderboxesNoel Power1-0/+0
Change-Id: I550141e0ada38d80bfac0a0a296bf3dd9116af71
2013-03-11now that vba import is fixed re-enable the subsequentcheck testsNoel Power1-2/+0
Change-Id: I757e4affaece0d2dc2c1d3174669afdc27d38da3
2013-03-07disable new vba tests ( vba import for certain files appears broken )Noel Power1-0/+2
Change-Id: I589ff778383f6e1a5fa910be687787658cb414a0
2013-03-07disable Ranges-2.xls vba test fileNoel Power1-0/+5
there seems to be some problem ( regression from 3.6 ? ) with dealing with addresses returned from named ranges where the addressing mode of the named range is different from the addressing mode of the document itself Change-Id: Icfcd047819a4d1c89ae9509ea1a2e1b2d5386101
2013-03-07enable bag load of excel specific VBA api testsNoel Power18-1/+73
Note: some of the test documents have some tests disabled in order to run without errors, these are identified by the following lines Rem [#FIXME disabled 3.6 ] in the macro source. note: some of these errors are expected and were always happening, some errors e.g. those pastespecial specific ones in qa/unit/data/xls/TestCalc_Rangetest2.xls seem to be to do with problems with the test harness. note: there are some others ( e.g. in Window.xls & windows2.xls ) that seem to be related to hard sizes and screen resolution ( these should be adjusted sensibly ) Change-Id: I07a43a2802d4e1794ac2f8c648f666b5bcd13a04
2013-02-05Pass DocumentService to the loader during macro tests.Kohei Yoshida10-13/+13
And disable user interaction during type detection, since that would cause the test to fail. With this change, 'make check' works once again. Change-Id: I2f45a2e962e45ee64f7984e794cff814fbfe6dab
2013-01-31port ScOutlineObj to new UnoApiTest ctorMiklos Vajna1-0/+1
That makes 'make subsequentcheck' pass here again. Change-Id: I50d74759b6ae6cd2bfa62a76028dc74931ffb3b0
2013-01-31Use a method from UnoApitest instead of implement a new one in calcMarcos Paulo de Souza17-53/+51
In calc, we see a lot of implementations of createFileURL. So get ride of all it and start to use the UnoAPitest::createFileURL method. Also, clean the UnoApiRest::createFileURL method, fix the path from UnoApiTest and moved some testing files to the right dir that the file belongs. Conflicts: sc/qa/extras/scoutlineobj.cxx Change-Id: Ic02f13777503729ac70da590f4a42866f17ea9b2
2013-01-24sc test XSheetOutlineLaurent Godard2-0/+108
Change-Id: Iea0576e61963dbdb72c88fe332c7cfe3e8ab7ff0 Reviewed-on: https://gerrit.libreoffice.org/1794 Reviewed-by: Noel Power <noel.power@suse.com> Tested-by: Noel Power <noel.power@suse.com>
2013-01-17sc test for XSheetAnnotationsLaurent Godard1-0/+117
Change-Id: Ie5ceb7f8d828eb9c1f4c92996ebb02c8a83f4cac Reviewed-on: https://gerrit.libreoffice.org/1738 Reviewed-by: Noel Power <noel.power@suse.com> Tested-by: Noel Power <noel.power@suse.com> Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com> Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
2013-01-17sc test for XSheetAnnotationLaurent Godard2-0/+134
Change-Id: I1fa77c874c6307ff71ea0aeee653acf1305f2646 Reviewed-on: https://gerrit.libreoffice.org/1736 Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com> Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
2012-12-21fdo#46808, Convert frame::Desktop to new style service.Noel Grandin2-6/+4
I had to drop XEventBroadcaster from the merged interface because it introduced method name conflicts (addEventListener). Shouldn't be an issue since it was scheduled to be dropped anyhow, and the service implementation still implements it, so existing clients will be fine. I dropped the interface XPropertySet from the combined IDL because nobody seems to be using it, and it's primary purpose appears to be to set weird flags. I dropped the optional interfaces XStatusIndicatorFactory XDispatchInformationProvider from the combined IDL because the service does not implement them, and nobody seems to be using them. I suspect they were mistakenly copied from XFrame. I also did not convert the Title, UserDefinedAttributes and LayoutManager properties to attributes, again because no-one is using them. Change-Id: I678a00006ed2cca2d6c37c4e39465811442c33af
2012-12-07-Werror,-Wunused-resultStephan Bergmann1-2/+1
Change-Id: I91633af096dd82960867f3ef6eb962b7b20c3960
2012-12-04re-base on ALv2 code. Includes:Michael Meeks1-0/+6
Patches contributed by Herbert Duerr i#118735 prevent endless loop if vlookup/hlookup doesn't find anything http://svn.apache.org/viewvc?view=revision&revision=1239673 Patches contributed by Andre Fischer remove lp_solver http://svn.apache.org/viewvc?view=revision&revision=1199180 i#118160: Added external CoinMP library. http://svn.apache.org/viewvc?view=revision&revision=1233909 Patches contributed by Armin Le-Grand i#118485 - Styles for OLEs are not saved. http://svn.apache.org/viewvc?view=revision&revision=1182166 i#118524: apply patch, followup fixes to 118485 http://svn.apache.org/viewvc?view=revision&revision=1186077 Patches contributed by lihuiibm i#108860 - Fix range validation. http://svn.apache.org/viewvc?view=revision&revision=1242846 i#118954 Chart data will lost after copy to different file http://svn.apache.org/viewvc?view=revision&revision=1301345 Patches contributed by Ariel Constenla-Haile Fix Linux build breaker: extra qualification on member http://svn.apache.org/viewvc?view=revision&revision=1301591 i#118696 - i#118697 - Fix some Sheet Tab Color API issues http://svn.apache.org/viewvc?view=revision&revision=1225428 i#118697 - Fix uninitialized variable http://svn.apache.org/viewvc?view=revision&revision=1225859 i#118771 - ScUndoImportTab should preserve tab background color http://svn.apache.org/viewvc?view=revision&revision=1230356 i#118921 - Repaint linked sheet tab background color after updating link http://svn.apache.org/viewvc?view=revision&revision=1245177 i#118927 - Undo/Redo "Update Link" does not reset sheet tab color http://svn.apache.org/viewvc?view=revision&revision=1245241 i#118747 - Copy tab color when transferring sheets across documents http://svn.apache.org/viewvc?view=revision&revision=1230355 Patch contributed by Oliver Rainer-Wittman i#118012 - methods <ScBroadcastAreaSlot::AreaBroadcast(..)> and <ScBroadcastAreaSlot::AreaBroadcastInRange(..)> adapt stl-container iteration in order to avoid destroyed iterators during iteration. http://svn.apache.org/viewvc?view=revision&revision=1297916 Patches contributed by Mathias Bauer gnumake4 work variously http://svn.apache.org/viewvc?view=revision&revision=1394707 http://svn.apache.org/viewvc?view=revision&revision=1394326 http://svn.apache.org/viewvc?view=revision&revision=1396797 http://svn.apache.org/viewvc?view=revision&revision=1397315 Patch contributed by Daniel Rentz calc69: #i116936# fix VBA symbol Cells http://svn.apache.org/viewvc?view=revision&revision=1172135 Patches contributed by leiw: i#118546 CPU 100% on switched off AutoCalculate with Conditional Formatting on date values http://svn.apache.org/viewvc?view=revision&revision=1301380 Re-add new function documentation. Many various cleanups. Add missing calc66: #o11817313# also look at formula result number format, remove redundant binaries.
2012-09-25move XGoalSeek api test to c++Markus Mohrhard2-0/+69
Change-Id: I689be9776c4d1fe7d931446d62ea8b1fd733de92
2012-09-18deprecate oustringostreaminserter.hxxNorbert Thiebaud1-1/+0
the intent of this header has canged over time. now it is already systematically included with ustring.hxx and the operator overload it provide fit nicely there... Just to be safe, since that include as been added to the api during the 3.5 timeframe and therefore is already in 'production' the header remain and simply attempt to include ustring.hxx but a warning is issued indicating that this header should not be used anymore... in a couple of major release we will thenr emove it completely All internal users of that header are converted. Change-Id: I8934c55f089e29d78c0f5649b7c87b2ecf024bad Reviewed-on: https://gerrit.libreoffice.org/634 Tested-by: Norbert Thiebaud <nthiebaud@gmail.com> Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com>
2012-07-15MSVC complains about too many implicit conversionsMichael Stahl1-1/+1
Change-Id: I33b40ec877270de4ed037dfaf6652c07935a727c
2012-07-13Merge branch 'feature/gsoc_test_improvements2'Markus Mohrhard1-3/+2
2012-07-13test: move XMLDiff implementation details to cxx fileMichael Stahl1-3/+2
This makes it unnecessary to link clients against libxml2. Change-Id: Ifd295623c01bdc6f579afbf81d5b609a2b29f4bf
2012-07-09UNO API test for ScEditFieldObj wrt its properties.Kohei Yoshida1-1/+39
To detect a bug such as fdo#50587. Change-Id: I3822af8d592b8aca31c1d4fecc925d0df20d27da
2012-05-04Let's just combine the two tests, since one requires the other.Kohei Yoshida1-3/+2
Change-Id: I I4c02aa1d459f7d5c2a1d9c38255aae3c3043dda6
2012-05-03New API test for ScAnnotationShapeObj.Kohei Yoshida1-0/+129
Change-Id: I4a169493622abf789bb0ef146e553205b2eaba5d
2012-04-30Test setPropertyValue().Kohei Yoshida2-2/+4
Change-Id: Idbad933cf5e3b297e7131e66202a0250b4c3def8
2012-04-30Test for XPropertySet. This is still work-in-progress.Kohei Yoshida2-4/+17
Change-Id: Icf8ddddb9a45435968bc43d8bc7a033ce5cfd702
2012-04-28Fixed crash on tear down during cppunit test.Kohei Yoshida2-0/+8
Change-Id: I5573e554420967d8942295cabe788a9e56835ba0
2012-04-28Test the header field API for real.Kohei Yoshida1-38/+29
But it crashes on exit, due to some sort of order of deletion... Change-Id: Ife9da1c0a647038cbdc68410db5b211bcce5dfa4
2012-04-28Copy & paste the *_Cell test code into *_Header test code.Kohei Yoshida1-0/+162
I still need to rewrite it to make it the header test. Change-Id: I0f8c469d51340ae72cb61696a22ebcbdcf84ffa6
2012-04-28Renamed the file to make room for the header version of the same test.Kohei Yoshida1-13/+13
This ScEditFieldObj is used for both cell fields and header/footer fields. Change-Id: I8c51de5d173ae934ea604c68030cd84b13f90ef3
2012-04-28Do the test for real. XTextField and XTextContent.Kohei Yoshida1-5/+78
Change-Id: I303562873fab5d41614f092966e47ff296c12610
2012-04-28Initial skeleton for API test on ScEditFieldObj.Kohei Yoshida1-0/+89
ScEditFieldObj was formerly ScCellFieldObj and ScHeaderFieldObj merged into one. Change-Id: I600188d7ee22bb7c7c18735f570460ce50083c6a
2012-04-27add tolerance to chart regression testMarkus Mohrhard1-3/+4
Change-Id: I5e7694571815df48e54488a33435bb7d022e6889
2012-04-27adapt dumper to new xml diffMarkus Mohrhard1-0/+1
2012-04-27use the new xml diff in chart regression testMarkus Mohrhard1-28/+6
2012-04-19enable the chart2 dumper testMarkus Mohrhard1-1/+42
2012-04-17transferring java XPrintAreas to c++Artur Dorda1-1/+5
2012-04-13move terminate to fixture decoratorCaolán McNamara7-49/+0
2012-04-08Replaced a few equal calls with ==Szabolcs Dezsi1-1/+1
2012-04-01move chart regression test data files to chart2Markus Mohrhard1-3/+1
2012-03-28add chart regression testMarkus Mohrhard1-0/+167
test is based on qa::Dumper and dumps the layout of the chart
2012-03-26clean-up sc's macros_test a bitMarkus Mohrhard1-30/+3
2012-02-19add testRefresh to ScDatabaseRangeObj, related fdo#44167Markus Mohrhard2-1/+2
2012-02-19adapt ScDataPilotTableObj test to XDataPilotTable2 changesMarkus Mohrhard1-1/+12
2012-02-19add XCellRangeReferrer test to ScRangeNameObjMarkus Mohrhard1-4/+7
now ScRangeNameObj is fully tested by c++ tests
2012-02-19add XNamed test to ScNamedRangeMarkus Mohrhard4-13/+32
2012-02-17add test for ScCellRangeObj::setDataArray and getDataArrayMarkus Mohrhard2-2/+26
2012-02-16add missing fileMarkus Mohrhard1-0/+0
2012-02-16add two more test cases to XDatabaseRangeMarkus Mohrhard1-1/+3