/* -*- 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 #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace ::com::sun::star; using namespace ::com::sun::star::uno; /* Implementation of Macros test */ class ScMacrosTest : public ScModelTestBase { public: ScMacrosTest(); }; // I suppose you could say this test doesn't really belong here, OTOH // we need a full document to run the test ( it related originally to an // imported Excel VBA macro ) It's convenient and fast to unit test // this the problem this way. Perhaps in the future there will be some sort // of slowcheck tests ( requiring a full document environment in the scripting // module, we could move the test there then ) - relates to fdo#67547 CPPUNIT_TEST_FIXTURE(ScMacrosTest, testMSP) { createScDoc("MasterScriptProviderProblem.ods"); Any aRet = executeMacro("vnd.sun.Star.script:Standard.Module1.TestMSP?language=Basic&location=document"); OUString sResult; aRet >>= sResult; SAL_INFO("sc.qa", "Result is " << sResult ); CPPUNIT_ASSERT_EQUAL_MESSAGE("TestMSP ( for fdo#67547) failed", OUString("OK"), sResult); } CPPUNIT_TEST_FIXTURE(ScMacrosTest, testPasswordProtectedStarBasic) { createScDoc("testTypePassword.ods"); ScDocument* pDoc = getScDoc(); // User defined types executeMacro("vnd.sun.Star.script:Standard.Module1.LoadAndExecuteTest?language=Basic&location=document"); OUString aValue = pDoc->GetString(0,0,0); CPPUNIT_ASSERT_EQUAL_MESSAGE("User defined types script did not change the value of Sheet1.A1", OUString("success"), aValue); // Big Module executeMacro("vnd.sun.Star.script:MyLibrary.BigModule.bigMethod?language=Basic&location=document"); aValue = pDoc->GetString(1,0,0); CPPUNIT_ASSERT_EQUAL_MESSAGE("Big module script did not change the value of Sheet1.B1", OUString("success"), aValue); // far big method tdf#94617 executeMacro("vnd.sun.Star.script:MyLibrary.BigModule.farBigMethod?language=Basic&location=document"); aValue = pDoc->GetString(2,0,0); CPPUNIT_ASSERT_EQUAL_MESSAGE("Far Method script did not change the value of Sheet1.C1", OUString("success"), aValue); } CPPUNIT_TEST_FIXTURE(ScMacrosTest, testTdf142391) { createScDoc("tdf142391.ods"); ScDocument* pDoc = getScDoc(); // User defined types executeMacro( "vnd.sun.Star.script:Standard.Module1.LoadAndExecuteTest?language=Basic&location=document"); OUString aValue = pDoc->GetString(0, 0, 0); CPPUNIT_ASSERT_EQUAL_MESSAGE("User defined types script did not change the value of Sheet1.A1", OUString("success"), aValue); // Big Module executeMacro( "vnd.sun.Star.script:MyLibrary.BigModule.bigMethod?language=Basic&location=document"); aValue = pDoc->GetString(1, 0, 0); CPPUNIT_ASSERT_EQUAL_MESSAGE("Big module script did not change the value of Sheet1.B1", OUString("success"), aValue); // tdf#142391 - method exceeds 0xffff offset for methods executeMacro( "vnd.sun.Star.script:MyLibrary.BigModule.farBigMethod?language=Basic&location=document"); aValue = pDoc->GetString(2, 0, 0); CPPUNIT_ASSERT_EQUAL_MESSAGE("Far Method script did not change the value of Sheet1.C1", OUString("success"), aValue); } CPPUNIT_TEST_FIXTURE(ScMacrosTest, testStarBasic) { createScDoc("StarBasic.ods"); ScDocument* pDoc = getScDoc(); executeMacro("vnd.sun.Star.script:Standard.Module1.Macro1?language=Basic&location=document"); double aValue = pDoc->GetValue(0,0,0); CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("script did not change the value of Sheet1.A1",2.0, aValue, 0.00001); } CPPUNIT_TEST_FIXTURE(ScMacrosTest, testRowColumn) { createScDoc("StarBasic.ods"); ScDocument* pDoc = getScDoc(); executeMacro("vnd.sun.Star.script:Standard.Module1.Macro_RowHeight?language=Basic&location=document"); sal_uInt16 nHeight = o3tl::convert(pDoc->GetRowHeight(0, 0), o3tl::Length::twip, o3tl::Length::mm100); CPPUNIT_ASSERT_EQUAL(static_cast(2000), nHeight); executeMacro("vnd.sun.Star.script:Standard.Module1.Macro_ColumnWidth?language=Basic&location=document"); sal_uInt16 nWidth = o3tl::convert(pDoc->GetColWidth(0, 0), o3tl::Length::twip, o3tl::Length::mm100); CPPUNIT_ASSERT_EQUAL(static_cast(4001), nWidth); } CPPUNIT_TEST_FIXTURE(ScMacrosTest, testTdf146742) { createScDoc("tdf146742.ods"); // Export to ODS and reload the file saveAndReload("calc8"); ScDocument* pDoc = getScDoc(); CPPUNIT_ASSERT_EQUAL(OUString("1"), pDoc->GetString(ScAddress(0,0,0))); CPPUNIT_ASSERT_EQUAL(OUString("2"), pDoc->GetString(ScAddress(0,1,0))); CPPUNIT_ASSERT_EQUAL(OUString("TRUE"), pDoc->GetString(ScAddress(1,0,0))); // Without the fix in place, this test would have failed with // - Expected: FALSE // - Actual : TRUE CPPUNIT_ASSERT_EQUAL(OUString("FALSE"), pDoc->GetString(ScAddress(1,1,0))); } CPPUNIT_TEST_FIXTURE(ScMacrosTest, testMacroButtonFormControlXlsxExport) { // Given a button form control with an associated macro: createScDoc("macro-button-form-control.xlsm"); // When exporting to XLSM: save("Calc MS Excel 2007 VBA XML"); // Then make sure that the macro is associated with the control: xmlDocUniquePtr pSheetDoc = parseExport("xl/worksheets/sheet1.xml"); CPPUNIT_ASSERT(pSheetDoc); // Without the fix in place, this test would have failed with: // - XPath '//x:controlPr' no attribute 'macro' exist // i.e. the macro was lost on export. assertXPath(pSheetDoc, "//x:controlPr"_ostr, "macro"_ostr, "Module1.Button1_Click"); // Then also make sure that there is no defined name for the macro, which is only needed for // XLS: xmlDocUniquePtr pWorkbookDoc = parseExport("xl/workbook.xml"); CPPUNIT_ASSERT(pWorkbookDoc); assertXPath(pWorkbookDoc, "//x:workbook/definedNames"_ostr, 0); } CPPUNIT_TEST_FIXTURE(ScMacrosTest, testTdf104902) { createScDoc("tdf104902.ods"); executeMacro("vnd.sun.Star.script:Standard.Module1.display_bug?language=Basic&location=document"); // Export to ODS saveAndReload("calc8"); ScDocument* pDoc = getScDoc(); CPPUNIT_ASSERT_EQUAL(OUString("string no newlines"), pDoc->GetString(ScAddress(0, 0, 0))); // Without the fix in place, this test would have failed with // - Expected: string with // newlines // - Actual : string withnewlines CPPUNIT_ASSERT_EQUAL(OUString(u"string with" + OUStringChar(u'\xA') + u"newlines"), pDoc->GetString(ScAddress(0, 1, 0))); } CPPUNIT_TEST_FIXTURE(ScMacrosTest, testTdf64639) { createScDoc("tdf64639.ods"); ScDocument* pDoc = getScDoc(); ScDrawLayer* pDrawLayer = pDoc->GetDrawLayer(); const SdrPage* pPage = pDrawLayer->GetPage(0); CPPUNIT_ASSERT_EQUAL(static_cast(0), pPage->GetObjCount()); // Add and delete the chart a few times // Without the fix in place, this test would have crashed here for (size_t i = 0; i < 5; ++i) { executeMacro("vnd.sun.Star.script:Standard.Module1.DrawGraph?language=Basic&location=document"); CPPUNIT_ASSERT_EQUAL(static_cast(1), pPage->GetObjCount()); executeMacro("vnd.sun.Star.script:Standard.Module1.DeleteGraph?language=Basic&location=document"); CPPUNIT_ASSERT_EQUAL(static_cast(0), pPage->GetObjCount()); } } CPPUNIT_TEST_FIXTURE(ScMacrosTest, testTdf142033) { createScDoc("tdf142033.ods"); executeMacro("vnd.sun.Star.script:Standard.Module1.display_bug?language=Basic&location=document"); // Export to ODS saveAndReload("calc8"); ScDocument* pDoc = getScDoc(); CPPUNIT_ASSERT_EQUAL(OUString("string no newlines"), pDoc->GetString(ScAddress(0,0,0))); CPPUNIT_ASSERT_EQUAL(OUString("string no newlines"), pDoc->GetString(ScAddress(0,1,0))); // Without the fix in place, this test would have failed with // - Expected: string with // newlines // - Actual : string withnewlines CPPUNIT_ASSERT_EQUAL(OUString(u"string with" + OUStringChar(u'\xA') + u"newlines"), pDoc->GetString(ScAddress(1,0,0))); CPPUNIT_ASSERT_EQUAL(OUString(u"string with" + OUStringChar(u'\xA') + u"newlines"), pDoc->GetString(ScAddress(1,1,0))); } CPPUNIT_TEST_FIXTURE(ScMacrosTest, testTdf89920) { createScDoc("tdf89920.ods"); executeMacro("vnd.sun.Star.script:Standard.Module1.SearchAndReplaceNewline?language=Basic&" "location=document"); // Export to ODS saveAndReload("calc8"); xmlDocUniquePtr pContentXml = parseExport("content.xml"); CPPUNIT_ASSERT(pContentXml); assertXPathContent(pContentXml, "/office:document-content/office:body/office:spreadsheet/table:table[1]/" "table:table-row[1]/table:table-cell[1]/text:p[1]"_ostr, "aa bb"); // Without the fix in place, this test would have failed here with // - Expression: xmlXPathNodeSetGetLength(pXmlNodes) > 0 assertXPathContent(pContentXml, "/office:document-content/office:body/office:spreadsheet/table:table[1]/" "table:table-row[1]/table:table-cell[1]/text:p[2]"_ostr, "cc dd"); } CPPUNIT_TEST_FIXTURE(ScMacrosTest, testPasswordProtectedUnicodeString) { const OUString sCorrectString(u"English Русский 中文"_ustr); static constexpr OUString sMacroURL( u"vnd.sun.Star.script:Protected.Module1.TestUnicodeString?language=Basic&location=document"_ustr); static constexpr OUString sLibName(u"Protected"_ustr); createScDoc("tdf57113.ods"); // Check that loading password-protected macro image correctly loads Unicode strings { Any aRet = executeMacro(sMacroURL); OUString aReturnValue; aRet >>= aReturnValue; CPPUNIT_ASSERT_EQUAL(sCorrectString, aReturnValue); } // Unlock and load the library, to regenerate the image on save css::uno::Reference xES(mxComponent, UNO_QUERY_THROW); css::uno::Reference xLC(xES->getBasicLibraries(), UNO_QUERY_THROW); css::uno::Reference xPasswd(xLC, UNO_QUERY_THROW); CPPUNIT_ASSERT(xPasswd->isLibraryPasswordProtected(sLibName)); CPPUNIT_ASSERT(!xPasswd->isLibraryPasswordVerified(sLibName)); CPPUNIT_ASSERT(xPasswd->verifyLibraryPassword(sLibName, "password")); xLC->loadLibrary(sLibName); CPPUNIT_ASSERT(xLC->isLibraryLoaded(sLibName)); // Now check that saving stores Unicode data correctly in image's string pool saveAndReload("calc8"); { Any aRet = executeMacro(sMacroURL); OUString aReturnValue; aRet >>= aReturnValue; CPPUNIT_ASSERT_EQUAL(sCorrectString, aReturnValue); } } CPPUNIT_TEST_FIXTURE(ScMacrosTest, testPasswordProtectedArrayInUserType) { static constexpr OUString sMacroURL( u"vnd.sun.Star.script:Protected.Module1.TestMyType?language=Basic&location=document"_ustr); static constexpr OUString sLibName(u"Protected"_ustr); createScDoc("ProtectedArrayInCustomType.ods"); // Check that loading password-protected macro image correctly loads array bounds { Any aRet = executeMacro(sMacroURL); sal_Int16 nReturnValue; aRet >>= nReturnValue; CPPUNIT_ASSERT_EQUAL(sal_Int16(1), nReturnValue); } // Unlock and load the library, to regenerate the image on save css::uno::Reference xES(mxComponent, UNO_QUERY_THROW); css::uno::Reference xLC(xES->getBasicLibraries(), UNO_QUERY_THROW); css::uno::Reference xPasswd(xLC, UNO_QUERY_THROW); CPPUNIT_ASSERT(xPasswd->isLibraryPasswordProtected(sLibName)); CPPUNIT_ASSERT(!xPasswd->isLibraryPasswordVerified(sLibName)); CPPUNIT_ASSERT(xPasswd->verifyLibraryPassword(sLibName, "password")); xLC->loadLibrary(sLibName); CPPUNIT_ASSERT(xLC->isLibraryLoaded(sLibName)); // Now check that saving stores array bounds correctly saveAndReload("calc8"); { Any aRet = executeMacro(sMacroURL); sal_Int16 nReturnValue; aRet >>= nReturnValue; CPPUNIT_ASSERT_EQUAL(sal_Int16(1), nReturnValue); } } CPPUNIT_TEST_FIXTURE(ScMacrosTest, testTdf114427) { createScDoc("tdf114427.ods"); uno::Reference< sheet::XSpreadsheetDocument > xDoc(mxComponent, UNO_QUERY_THROW); uno::Reference< container::XIndexAccess > xIA(xDoc->getSheets(), UNO_QUERY_THROW); uno::Reference< drawing::XDrawPageSupplier > xDrawPageSupplier( xIA->getByIndex(0), UNO_QUERY_THROW); uno::Reference< container::XIndexAccess > xDraws(xDrawPageSupplier->getDrawPage(), UNO_QUERY_THROW); CPPUNIT_ASSERT_EQUAL(static_cast(1), xDraws->getCount()); // Without the fix in place, it would have crashed here executeMacro("vnd.sun.Star.script:Standard.Module1.DeletingFrame?language=Basic&location=document"); CPPUNIT_ASSERT_EQUAL(static_cast(0), xDraws->getCount()); } CPPUNIT_TEST_FIXTURE(ScMacrosTest, testTdf131296_legacy) { // For legacy password-protected library images, we must correctly get the constants' values, // and also - for Integer - the type. const std::vector> aTests({ { "TestIntConst", "Integer: 123" }, { "TestLongConst", "Double: 123" }, { "TestSingleConst", "Double: 123" }, { "TestDoubleConst", "Double: 123" }, }); createScDoc("tdf131296_legacy.ods"); { for (auto& [sTestName, sExpected] : aTests) { Any aRet = executeMacro("vnd.sun.Star.script:Protected.Module1." + sTestName + "?language=Basic&location=document"); OUString aReturnValue; aRet >>= aReturnValue; CPPUNIT_ASSERT_EQUAL_MESSAGE(sTestName.toUtf8().getStr(), sExpected, aReturnValue); } } } CPPUNIT_TEST_FIXTURE(ScMacrosTest, testTdf131296_new) { // For new password-protected library images, we must correctly get both the constants' values // and their types. const std::vector> aTests({ { "TestIntConst", "Integer: 123" }, { "TestLongConst", "Long: 123" }, { "TestSingleConst", "Single: 123" }, { "TestDoubleConst", "Double: 123" }, { "TestCurrencyConst", "Currency: 123.0000" }, }); createScDoc("tdf131296_new.ods"); { for (auto& [sTestName, sExpected] : aTests) { Any aRet = executeMacro("vnd.sun.Star.script:Protected.Module1." + sTestName + "?language=Basic&location=document"); OUString aReturnValue; aRet >>= aReturnValue; CPPUNIT_ASSERT_EQUAL_MESSAGE(sTestName.toUtf8().getStr(), sExpected, aReturnValue); } } } CPPUNIT_TEST_FIXTURE(ScMacrosTest, testTdf46119) { createScDoc("tdf46119.ods"); ScDocument* pDoc = getScDoc(); executeMacro("vnd.sun.Star.script:Standard.Module1.Main?language=Basic&location=document"); CPPUNIT_ASSERT_EQUAL(OUString("0.074"), pDoc->GetString(ScAddress(2, 24, 0))); CPPUNIT_ASSERT_EQUAL(OUString("0.067"), pDoc->GetString(ScAddress(2, 25, 0))); CPPUNIT_ASSERT_EQUAL(OUString("0.273"), pDoc->GetString(ScAddress(2, 26, 0))); CPPUNIT_ASSERT_EQUAL(OUString("0.259"), pDoc->GetString(ScAddress(2, 27, 0))); CPPUNIT_ASSERT_EQUAL(OUString("0.097"), pDoc->GetString(ScAddress(3, 24, 0))); CPPUNIT_ASSERT_EQUAL(OUString("0.087"), pDoc->GetString(ScAddress(3, 25, 0))); CPPUNIT_ASSERT_EQUAL(OUString("0.311"), pDoc->GetString(ScAddress(3, 26, 0))); CPPUNIT_ASSERT_EQUAL(OUString("0.296"), pDoc->GetString(ScAddress(3, 27, 0))); CPPUNIT_ASSERT_EQUAL(OUString("0.149"), pDoc->GetString(ScAddress(4, 24, 0))); CPPUNIT_ASSERT_EQUAL(OUString("0.134"), pDoc->GetString(ScAddress(4, 25, 0))); CPPUNIT_ASSERT_EQUAL(OUString("0.386"), pDoc->GetString(ScAddress(4, 26, 0))); CPPUNIT_ASSERT_EQUAL(OUString("0.366"), pDoc->GetString(ScAddress(4, 27, 0))); } CPPUNIT_TEST_FIXTURE(ScMacrosTest, testTdf128218) { createScDoc("tdf128218.ods"); Any aRet = executeMacro("vnd.sun.Star.script:Standard.Module1.TestRAND?language=Basic&location=document"); OUString aReturnValue; aRet >>= aReturnValue; // Without the fix in place, this test would have failed with // - Expected: Double // - Actual : Object() CPPUNIT_ASSERT_EQUAL(OUString("Double"), aReturnValue); } CPPUNIT_TEST_FIXTURE(ScMacrosTest, testTdf71271) { createScDoc(); { uno::Reference xDoc(mxComponent, uno::UNO_QUERY_THROW); uno::Reference xIndex(xDoc->getSheets(), uno::UNO_QUERY_THROW); uno::Reference xSheet(xIndex->getByIndex(0), uno::UNO_QUERY_THROW); uno::Reference xProps(xSheet, uno::UNO_QUERY_THROW); xProps->setPropertyValue("CodeName", uno::Any(OUString("NewCodeName"))); } saveAndReload(""); { uno::Reference xDoc(mxComponent, uno::UNO_QUERY_THROW); uno::Reference xIndex(xDoc->getSheets(), uno::UNO_QUERY_THROW); uno::Reference xSheet(xIndex->getByIndex(0), uno::UNO_QUERY_THROW); OUString sCodeName; uno::Reference xProps(xSheet, uno::UNO_QUERY_THROW); // Without the fix in place the codename would not have been saved xProps->getPropertyValue("CodeName") >>= sCodeName; CPPUNIT_ASSERT_EQUAL(OUString("NewCodeName"), sCodeName); } } CPPUNIT_TEST_FIXTURE(ScMacrosTest, testTdf43003) { createScDoc("tdf43003.ods"); ScDocument* pDoc = getScDoc(); // Without the fix in place, the values of the specified cells won't be changed pDoc->SetValue(ScAddress(0, 0, 0), 2); CPPUNIT_ASSERT_EQUAL(3.0, pDoc->GetValue(ScAddress(1, 0, 0))); CPPUNIT_ASSERT_EQUAL(4.0, pDoc->GetValue(ScAddress(2, 0, 0))); } CPPUNIT_TEST_FIXTURE(ScMacrosTest, testTdf75263) { createScDoc("tdf75263.xlsm"); { ScDocument* pDoc = getScDoc(); pDoc->CalcAll(); // A1 contains formula with user-defined function, and the function is defined in VBA. CPPUNIT_ASSERT_EQUAL(u"проба"_ustr, pDoc->GetString(ScAddress(0, 0, 0))); } saveAndReload("Calc MS Excel 2007 VBA XML"); { ScDocument* pDoc = getScDoc(); pDoc->CalcAll(); // Without the accompanying fix in place, this test would have failed with: // - Expected: проба (sample) // - Actual : ????? CPPUNIT_ASSERT_EQUAL(u"проба"_ustr, pDoc->GetString(ScAddress(0, 0, 0))); } } CPPUNIT_TEST_FIXTURE(ScMacrosTest, testTdf133887) { createScDoc("tdf133887.ods"); css::uno::Any aRet; css::uno::Sequence aOutParamIndex; css::uno::Sequence aOutParam; css::uno::Sequence aParams{ css::uno::Any(sal_Int16(0)) }; SfxObjectShell::CallXScript( mxComponent, "vnd.sun.Star.script:Standard.Module1.TestInvoke?language=Basic&location=document", aParams, aRet, aOutParamIndex, aOutParam); double aReturnValue; aOutParam[0] >>= aReturnValue; // Without the fix in place, this test would have failed with // - Expected: 6.75 // - Actual : 7 CPPUNIT_ASSERT_EQUAL(6.75, aReturnValue); } CPPUNIT_TEST_FIXTURE(ScMacrosTest, testTdf133889) { createScDoc("tdf133889.ods"); css::uno::Any aRet; css::uno::Sequence aOutParamIndex; css::uno::Sequence aOutParam; css::uno::Sequence aParams{ css::uno::Any(sal_Int32(0)) }; SfxObjectShell::CallXScript( mxComponent, "vnd.sun.Star.script:Standard.Module1.TestInvoke?language=Basic&location=document", aParams, aRet, aOutParamIndex, aOutParam); sal_Int32 aReturnValue; aOutParam[0] >>= aReturnValue; // Without the fix in place, this test would have failed with // - Expected: 100000 // - Actual : 0 CPPUNIT_ASSERT_EQUAL(sal_Int32(100000), aReturnValue); } CPPUNIT_TEST_FIXTURE(ScMacrosTest, testTdf143582) { createScDoc("tdf143582.ods"); Any aRet = executeMacro("vnd.sun.Star.script:Standard.Module1.TestScriptInvoke?language=Basic&location=document"); OUString aReturnValue; aRet >>= aReturnValue; // Without the fix in place, this test would have failed with // - Expected: Test6 // - Actual : TeTest8 CPPUNIT_ASSERT_EQUAL(OUString("Test6"), aReturnValue); } CPPUNIT_TEST_FIXTURE(ScMacrosTest, testTdf144085) { createScDoc("tdf144085.ods"); Any aRet = executeMacro("vnd.sun.Star.script:Standard.Module1.TestScriptInvoke?language=Basic&location=document"); OUString aReturnValue; aRet >>= aReturnValue; // Without the fix in place, this test would have failed with // - Expected: $Sheet1.$B$5:$E$17 // - Actual : $Sheet1.$B$5:$C$10 CPPUNIT_ASSERT_EQUAL(OUString("$Sheet1.$B$5:$E$17"), aReturnValue); } CPPUNIT_TEST_FIXTURE(ScMacrosTest, testTdf125800) { createScDoc("tdf125800.ods"); ScDocument* pDoc = getScDoc(); ScConditionalFormat* pFormat = pDoc->GetCondFormat(1, 2, 0); CPPUNIT_ASSERT(!pFormat); // Without the fix in place, this test would have failed with // - Expression: false // - Unexpected dialog: Error: Inadmissible value or data type. Index out of defined range. Any aRet = executeMacro("vnd.sun.Star.script:Standard.cf.doItForThisSheetindexThisRange?language=Basic&location=document"); OUString aReturnValue; aRet >>= aReturnValue; pFormat = pDoc->GetCondFormat(1, 2, 0); CPPUNIT_ASSERT(pFormat); const ScFormatEntry* pEntry = pFormat->GetEntry(0); CPPUNIT_ASSERT(pEntry); CPPUNIT_ASSERT_EQUAL(ScFormatEntry::Type::Condition, pEntry->GetType()); const ScCondFormatEntry* pCondition = static_cast(pEntry); CPPUNIT_ASSERT_EQUAL(ScConditionMode::Direct, pCondition->GetOperation()); } CPPUNIT_TEST_FIXTURE(ScMacrosTest, testTdf130307) { createScDoc("tdf130307.ods"); Any aRet = executeMacro("vnd.sun.Star.script:Standard.Module1.ForEachSheets?language=Basic&location=document"); OUString aReturnValue; aRet >>= aReturnValue; // Without the fix in place, this test would have crashed here CPPUNIT_ASSERT_EQUAL(OUString("Sheet1Sheet2"), aReturnValue); } CPPUNIT_TEST_FIXTURE(ScMacrosTest, testTdf144970) { createScDoc("tdf144970.ods"); ScDocument* pDoc = getScDoc(); formula::FormulaGrammar::Grammar eGram = formula::FormulaGrammar::GRAM_ENGLISH_XL_A1; pDoc->SetGrammar(eGram); ScDrawLayer* pDrawLayer = pDoc->GetDrawLayer(); const SdrPage* pPage = pDrawLayer->GetPage(0); CPPUNIT_ASSERT_EQUAL(static_cast(0), pPage->GetObjCount()); // Without the fix in place, this test would have failed with // - Expression: false // - Unexpected dialog: Error: BASIC runtime error. // An exception occurred // Type: com.sun.star.lang.IllegalArgumentException executeMacro("vnd.sun.Star.script:Standard.Module1.Main?language=Basic&location=document"); CPPUNIT_ASSERT_EQUAL(static_cast(1), pPage->GetObjCount()); } CPPUNIT_TEST_FIXTURE(ScMacrosTest, testTdf138646) { createScDoc("tdf138646.ods"); ScDocument* pDoc = getScDoc(); // Without the fix in place, changing the grammar from GRAM_NATIVE to either GRAM_NATIVE_XL_A1 // or GRAM_NATIVE_XL_R1C1 would cause a Basic exception/error in the following script. pDoc->SetGrammar(formula::FormulaGrammar::Grammar::GRAM_NATIVE_XL_R1C1); const std::vector> aTests({ { "GlobalNamedCell", "GlobalNamedCell" }, { "GlobalNamedCellSheet", "GlobalNamedCell" }, { "LocalNamedCell", "LocalNamedCell" }, { "LocalNamedCellAccessError", "Exception" } }); { for (auto& [sTestName, sExpected] : aTests) { Any aRet = executeMacro("vnd.sun.Star.script:Standard.Module1." + sTestName + "?language=Basic&location=document"); OUString aReturnValue; aRet >>= aReturnValue; CPPUNIT_ASSERT_EQUAL_MESSAGE(sTestName.toUtf8().getStr(), sExpected, aReturnValue); } } } CPPUNIT_TEST_FIXTURE(ScMacrosTest, testTdf105558) { createScDoc("tdf105558.ods"); ScDocument* pDoc = getScDoc(); // Without the fix in place, this test would have failed with // - Expected: 5.5 // - Actual : 0 CPPUNIT_ASSERT_EQUAL(5.5, pDoc->GetValue(ScAddress(0, 0, 0))); } CPPUNIT_TEST_FIXTURE(ScMacrosTest, testTdf107572) { createScDoc(); // insert initial library css::uno::Reference xDocScr(mxComponent, UNO_QUERY_THROW); auto xLibs = xDocScr->getBasicLibraries(); auto xLibrary = xLibs->createLibrary("TestLibrary"); xLibrary->insertByName( "TestModule", uno::Any( OUString("Function Main\n" " thisComponent.Sheets(0).getCellRangeByName(\"A1:F14\").autoformat(\"Default\")\n" "End Function\n"))); // Without the fix in place, this test would have crashed executeMacro("vnd.sun.Star.script:TestLibrary.TestModule.Main?language=Basic&location=document"); ScDocument* pDoc = getScDoc(); //Check the autoformat has been applied for (SCCOL i = 0; i < 5; ++i) { const ScPatternAttr* pAttr = pDoc->GetPattern(i, 0, 0); const SfxPoolItem& rItem = pAttr->GetItem(ATTR_BACKGROUND); const SvxBrushItem& rBackground = static_cast(rItem); const Color& rColor = rBackground.GetColor(); CPPUNIT_ASSERT_EQUAL(Color(0x0, 0x0, 0x80), rColor); } for (SCROW i = 1; i < 13; ++i) { const ScPatternAttr* pAttr = pDoc->GetPattern(0, i, 0); const SfxPoolItem& rItem = pAttr->GetItem(ATTR_BACKGROUND); const SvxBrushItem& rBackground = static_cast(rItem); const Color& rColor = rBackground.GetColor(); CPPUNIT_ASSERT_EQUAL(Color(0x4d, 0x4d, 0x4d), rColor); const ScPatternAttr* pAttr2 = pDoc->GetPattern(5, i, 0); const SfxPoolItem& rItem2 = pAttr2->GetItem(ATTR_BACKGROUND); const SvxBrushItem& rBackground2 = static_cast(rItem2); const Color& rColor2 = rBackground2.GetColor(); CPPUNIT_ASSERT_EQUAL(Color(0xcc, 0xcc, 0xcc), rColor2); } } CPPUNIT_TEST_FIXTURE(ScMacrosTest, testShapeLayerId) { createScDoc(); // insert initial library css::uno::Reference xDocScr(mxComponent, UNO_QUERY_THROW); auto xLibs = xDocScr->getBasicLibraries(); auto xLibrary = xLibs->createLibrary("TestLibrary"); xLibrary->insertByName( "TestModule", uno::Any( OUString("Function TestLayerID\n" " xShape = thisComponent.createInstance(\"com.sun.star.drawing.TextShape\")\n" " thisComponent.DrawPages(0).Add(xShape)\n" " origID = xShape.LayerID\n" " On Error Goto handler\n" " xShape.LayerID = 257 ' 1 if wrongly converted to unsigned 8-bit type\n" " TestLayerID = origID & \" \" & xShape.LayerID ' Should not happen\n" " Exit Function\n" "handler:\n" " ' This is expected to happen\n" " TestLayerID = origID & \" Expected runtime error happened\"\n" "End Function\n"))); Any aRet = executeMacro("vnd.sun.Star.script:TestLibrary.TestModule.TestLayerID?language=Basic&location=document"); // Without the fix in place, this test would have failed in non-debug builds with // - Expected : // - Actual : // In debug builds, it would crash on assertion inside strong_int ctor. // The LayerID property of com.sun.star.drawing.Shape service has 'short' IDL type. // The expected run-time error is because there are only 5 layers there. CPPUNIT_ASSERT_EQUAL(Any(OUString("0 Expected runtime error happened")), aRet); } CPPUNIT_TEST_FIXTURE(ScMacrosTest, testFunctionAccessIndirect) { OUString aFileName = loadFromFile(u"tdf120161.ods"); // just some document with known values in cells const OUString aReference = "'" + aFileName + "'#$Sheet1.A1"; css::uno::Reference xFunc( comphelper::getProcessServiceFactory()->createInstance("com.sun.star.sheet.FunctionAccess"), UNO_QUERY_THROW); // tdf#148040: without the fix in place, this would have failed with: // An uncaught exception of type com.sun.star.lang.IllegalArgumentException // because of disallowed external link update (needed to obtain the cell value). css::uno::Any aResult = xFunc->callFunction("INDIRECT", {css::uno::Any(aReference)}); CPPUNIT_ASSERT_EQUAL(css::uno::Any(OUString("a1")), aResult); } CPPUNIT_TEST_FIXTURE(ScMacrosTest, testTdf147122) { createScDoc(); css::uno::Reference xDocScr(mxComponent, UNO_QUERY_THROW); auto xLibs = xDocScr->getBasicLibraries(); auto xLibrary = xLibs->createLibrary("TestLibrary"); xLibrary->insertByName( "TestModule", uno::Any( OUString("Function TestMergedSelection\n" // Insert test string into cell A1 " oActiveSheet = ThisComponent.CurrentController.ActiveSheet\n" " oActiveCell = oActiveSheet.getCellRangeByName(\"A1\")\n" " oActiveCell.setString(\"This is a test\")\n" // Merge A1:B2 cell range and return the content of the merged range " oRange = oActiveSheet.getCellRangeByName(\"A1:B2\")\n" " ThisComponent.getCurrentController.Select(oRange)\n" " oActiveCell = ThisComponent.CurrentSelection\n" " oActiveCell.Merge(True)\n" " TestMergedSelection = ThisComponent.getCurrentSelection().getString()\n" "End Function\n"))); Any aRet = executeMacro("vnd.sun.Star.script:TestLibrary.TestModule.TestMergedSelection?" "language=Basic&location=document"); // Without the fix in place, this test would have failed with // - Expression: false // - Unexpected dialog: Error: BASIC runtime error. // Property or method not found: getString. CPPUNIT_ASSERT_EQUAL(Any(OUString("This is a test")), aRet); } CPPUNIT_TEST_FIXTURE(ScMacrosTest, testTdf154803) { createScDoc(); css::uno::Reference xDocScr(mxComponent, UNO_QUERY_THROW); auto xLibs = xDocScr->getBasicLibraries(); auto xLibrary = xLibs->createLibrary("TestLibrary"); xLibrary->insertByName( "TestModule", uno::Any( OUString("Function TestExtendedMergedSelection\n" // Merge A1:B2 cell range " oActiveSheet = ThisComponent.CurrentController.ActiveSheet\n" " oRange = oActiveSheet.getCellRangeByName(\"A1:B2\")\n" " ThisComponent.getCurrentController.Select(oRange)\n" " oActiveCell = ThisComponent.CurrentSelection\n" " oActiveCell.Merge(True)\n" // Select A1:B3 range and check for its implementation name " oRange = oActiveSheet.getCellRangeByName(\"A1:B3\")\n" " ThisComponent.getCurrentController.Select(oRange)\n" " TestExtendedMergedSelection = ThisComponent.CurrentSelection.ImplementationName\n" "End Function\n"))); Any aRet = executeMacro("vnd.sun.Star.script:TestLibrary.TestModule.TestExtendedMergedSelection?" "language=Basic&location=document"); // Without the fix in place, this test would have failed with // - Expected : ScCellRangeObj // - Actual : ScCellObj // i.e. the selection was interpreted as a single cell instead of a range CPPUNIT_ASSERT_EQUAL(Any(OUString("ScCellRangeObj")), aRet); } CPPUNIT_TEST_FIXTURE(ScMacrosTest, testTdf116127) { createScDoc(); css::uno::Reference xDocScr(mxComponent, UNO_QUERY_THROW); auto xLibs = xDocScr->getBasicLibraries(); auto xLibrary = xLibs->createLibrary("TestLibrary"); xLibrary->insertByName( "TestModule", uno::Any(OUString( "Function TestClearContents\n" // Insert test string into cell A1 " oActiveSheet = ThisComponent.CurrentController.ActiveSheet\n" " oActiveCell = oActiveSheet.getCellRangeByName(\"A1\")\n" " oActiveCell.setString(\"Italic Test\")\n" // Create a text cursor and change the first letter to italic " oCursor = oActiveCell.Text.createTextCursor()\n" " oCursor.gotoStart(False)\n" " oCursor.goRight(1, True)\n" " oCursor.CharPosture = com.sun.star.awt.FontSlant.ITALIC\n" // Clear contents using EDITATTR cell flag to clear the italic char posture " oActiveCell.clearContents(com.sun.star.sheet.CellFlags.EDITATTR)\n" // Check the char posture of the first letter " oCursor.gotoStart(False)\n" " oCursor.goRight(1, True)\n" " TestClearContents = oCursor.CharPosture <> com.sun.star.awt.FontSlant.ITALIC\n" "End Function\n"))); Any aRet = executeMacro("vnd.sun.Star.script:TestLibrary.TestModule.TestClearContents?" "language=Basic&location=document"); // Without the fix in place, this test would have failed with // - Expected : true // - Actual : false // i.e. the formatting within parts of the cell contents (EDITATTR) were not deleted CPPUNIT_ASSERT_EQUAL(Any(true), aRet); } ScMacrosTest::ScMacrosTest() : ScModelTestBase("/sc/qa/extras/testdocuments") { } CPPUNIT_PLUGIN_IMPLEMENT(); /* vim:set shiftwidth=4 softtabstop=4 expandtab: */