office-gobmx/basic/qa/cppunit/test_vba.cxx
Balazs Varga b6775ce2b3 Temporarily skip unit tests on native arm64 build
which indicating unit test fails.

Change-Id: I2689b0dda888e15e52ca60cc18e1705a1aefe968
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/173143
Reviewed-by: Stephan Bergmann <stephan.bergmann@allotropia.de>
Reviewed-by: Balazs Varga <balazs.varga.extern@allotropia.de>
Tested-by: Jenkins
2024-09-12 09:37:26 +02:00

274 lines
8.2 KiB
C++

/* -*- 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 "basictest.hxx"
#include <unotools/syslocaleoptions.hxx>
#ifdef _WIN32
#include <string.h>
#include <comphelper/processfactory.hxx>
#include <o3tl/char16_t2wchar_t.hxx>
#include <systools/win32/odbccp32.hxx>
#endif
using namespace ::com::sun::star;
namespace
{
class VBATest : public test::BootstrapFixture
{
public:
VBATest() : BootstrapFixture(true, false) {}
void testMiscVBAFunctions();
void testMiscOLEStuff();
// Adds code needed to register the test suite
CPPUNIT_TEST_SUITE(VBATest);
// Declares the method as a test to call
CPPUNIT_TEST(testMiscVBAFunctions);
CPPUNIT_TEST(testMiscOLEStuff);
// End of test suite definition
CPPUNIT_TEST_SUITE_END();
};
void VBATest::testMiscVBAFunctions()
{
const char* macroSource[] = {
"bytearraystring.vb",
#ifdef _WIN32
"cdec.vb", // currently CDec is implemented only on Windows
#endif
"constants.vb",
// datevalue test seems to depend on both locale and language
// settings, should try and rewrite the test to deal with that
// for some reason tinderboxes don't seem to complain leaving enabled
// for the moment
"datevalue.vb",
"partition.vb",
"strconv.vb",
"dateserial.vb",
"format.vb",
"replace.vb",
"stringplusdouble.vb",
"chr.vb",
"chrw.vb",
"abs.vb",
"array.vb",
"asc.vb",
"atn.vb",
"booltypename.vb",
"cbool.vb",
"cdate.vb",
"cdbl.vb",
"choose.vb",
"cos.vb",
"cint.vb",
"clng.vb",
"collection.vb",
"csng.vb",
"cstr.vb",
"cvdate.vb",
"cverr.vb",
"dateadd.vb",
"datediff.vb",
"datepart.vb",
"day.vb",
"enum.vb",
"error.vb",
"error_message.vb",
"Err.Raise.vb",
"exp.vb",
"fix.vb",
"gosub_goto.vb",
"hex.vb",
"hour.vb",
"for.vb",
"formatnumber.vb",
"formatpercent.vb",
"if.vb",
"iif.vb",
"instr.vb",
"instrrev.vb",
"int.vb",
"iserror.vb",
"ismissing.vb",
"isnull.vb",
"isobject.vb",
"join.vb",
"lbound.vb",
"isarray.vb",
"isdate.vb",
"isempty.vb",
"isnumeric.vb",
"lcase.vb",
"left.vb",
"len.vb",
"log.vb",
"ltrim.vb",
"mid.vb",
"minute.vb",
"month.vb",
"monthname.vb",
"like.vb",
"oct.vb",
"optional_paramters.vb",
"qbcolor.vb",
"rgb.vb",
"rtrim.vb",
"right.vb",
"second.vb",
"sgn.vb",
"sin.vb",
"space.vb",
"split.vb",
"sqr.vb",
"str.vb",
"strcomp.vb",
"string.vb",
"strreverse.vb",
"switch.vb",
"tdf147089_idiv.vb",
"tdf147529_optional_parameters_msgbox.vb",
"tdf148358_non_ascii_names.vb",
"timeserial.vb",
"timevalue.vb",
"trim.vb",
"typename.vb",
"ubound.vb",
"ucase.vb",
"val.vb",
"vartype.vb",
"weekday.vb",
"weekdayname.vb",
"year.vb",
#ifndef _WIN32 // missing 64bit Currency marshalling.
"win32compat.vb", // windows compatibility hooks.
#endif
"win32compatb.vb" // same methods, different signatures.
};
OUString sMacroPathURL = m_directories.getURLFromSrc(u"/basic/qa/vba_tests/");
OUString sMacroUtilsURL = m_directories.getURLFromSrc(u"/basic/qa/cppunit/_test_asserts.vb");
// Some test data expects the uk locale
LanguageTag aLocale(LANGUAGE_ENGLISH_UK);
SvtSysLocaleOptions aLocalOptions;
aLocalOptions.SetLocaleConfigString( aLocale.getBcp47() );
for ( size_t i=0; i<std::size( macroSource ); ++i )
{
OUString sMacroURL = sMacroPathURL
+ OUString::createFromAscii( macroSource[ i ] );
MacroSnippet myMacro;
myMacro.LoadSourceFromFile(u"TestUtil"_ustr, sMacroUtilsURL);
myMacro.LoadSourceFromFile(u"TestModule"_ustr, sMacroURL);
SbxVariableRef pReturn = myMacro.Run();
CPPUNIT_ASSERT_MESSAGE("No return variable huh?", pReturn.is());
fprintf(stderr, "macro result for %s\n", macroSource[i]);
fprintf(stderr, "macro returned:\n%s\n",
OUStringToOString(pReturn->GetOUString(), RTL_TEXTENCODING_UTF8).getStr());
CPPUNIT_ASSERT_EQUAL_MESSAGE("Result not as expected", u"OK"_ustr,
pReturn->GetOUString());
}
}
void VBATest::testMiscOLEStuff()
{
// Not much point even trying to run except on Windows.
// (Without Excel doesn't really do anything anyway,
// see "so skip test" below.)
// Since some time, on a properly updated Windows 10, this works
// only with a 64-bit LibreOffice
#if defined _WIN32 && defined _ARM64_
// skip for windows arm64 build
// Avoid "this method is empty and should be removed" warning
(void) 42;
#elif defined(_WIN64)
// test if we have the necessary runtime environment
// to run the OLE tests.
uno::Reference< lang::XMultiServiceFactory > xOLEFactory;
uno::Reference< uno::XComponentContext > xContext(
comphelper::getProcessComponentContext() );
if( xContext.is() )
{
uno::Reference<lang::XMultiComponentFactory> xSMgr = xContext->getServiceManager();
xOLEFactory.set( xSMgr->createInstanceWithContext( "com.sun.star.bridge.OleObjectFactory", xContext ),
uno::UNO_QUERY );
}
bool bOk = false;
if( xOLEFactory.is() )
{
uno::Reference< uno::XInterface > xADODB = xOLEFactory->createInstance( "ADODB.Connection" );
bOk = xADODB.is();
}
if ( !bOk )
return; // can't do anything, skip test
const int nBufSize = 1024 * 4;
wchar_t sBuf[nBufSize];
if (!sal::systools::odbccp32().SQLGetInstalledDrivers(sBuf, nBufSize))
return;
const wchar_t *pODBCDriverName = sBuf;
bool bFound = false;
for (; wcslen( pODBCDriverName ) != 0; pODBCDriverName += wcslen( pODBCDriverName ) + 1 ) {
if( wcscmp( pODBCDriverName, L"Microsoft Excel Driver (*.xls)" ) == 0 ||
wcscmp( pODBCDriverName, L"Microsoft Excel Driver (*.xls, *.xlsx, *.xlsm, *.xlsb)" ) == 0 ) {
bFound = true;
break;
}
}
if ( !bFound )
return; // can't find ODBC driver needed test, so skip test
const char* macroSource[] = {
"ole_ObjAssignNoDflt.vb",
"ole_ObjAssignToNothing.vb",
};
OUString sMacroPathURL = m_directories.getURLFromSrc(u"/basic/qa/vba_tests/");
// path to test document
OUString sPath = m_directories.getPathFromSrc(u"/basic/qa/vba_tests/data/ADODBdata.xls");
sPath = sPath.replaceAll( "/", "\\" );
uno::Sequence< uno::Any > aArgs
{
uno::Any(sPath),
uno::Any(OUString(o3tl::toU(pODBCDriverName)))
};
for ( sal_uInt32 i=0; i<std::size( macroSource ); ++i )
{
OUString sMacroURL = sMacroPathURL
+ OUString::createFromAscii( macroSource[ i ] );
MacroSnippet myMacro;
myMacro.LoadSourceFromFile("TestModule", sMacroURL);
SbxVariableRef pReturn = myMacro.Run( aArgs );
CPPUNIT_ASSERT_MESSAGE("No return variable huh?", pReturn.is());
fprintf(stderr, "macro result for %s\n", macroSource[i]);
fprintf(stderr, "macro returned:\n%s\n",
OUStringToOString(pReturn->GetOUString(), RTL_TEXTENCODING_UTF8).getStr());
CPPUNIT_ASSERT_EQUAL_MESSAGE("Result not as expected", OUString("OK"),
pReturn->GetOUString());
}
#else
// Avoid "this method is empty and should be removed" warning
(void) 42;
#endif
}
// Put the test suite in the registry
CPPUNIT_TEST_SUITE_REGISTRATION(VBATest);
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */