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
|
/* -*- 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 <osl/file.hxx>
#include <i18nlangtag/languagetag.hxx>
#include <test/bootstrapfixture.hxx>
#include <unotools/syslocaleoptions.hxx>
namespace
{
class Coverage : public test::BootstrapFixture
{
private:
void process_directory(const OUString& sDirName);
std::vector< OUString > get_subdirnames( const OUString& sDirName );
public:
Coverage();
void Coverage_Iterator();
// Adds code needed to register the test suite
CPPUNIT_TEST_SUITE(Coverage);
// Declares the method as a test to call
CPPUNIT_TEST(Coverage_Iterator);
// End of test suite definition
CPPUNIT_TEST_SUITE_END();
};
Coverage::Coverage()
: BootstrapFixture(true, false)
{
}
std::vector< OUString > Coverage::get_subdirnames( const OUString& sDirName )
{
std::vector< OUString > sSubDirNames;
osl::Directory aDir(sDirName);
osl::DirectoryItem aItem;
osl::FileStatus aFileStatus(osl_FileStatus_Mask_FileURL|osl_FileStatus_Mask_Type);
if(aDir.open() == osl::FileBase::E_None)
{
while (aDir.getNextItem(aItem) == osl::FileBase::E_None)
{
aItem.getFileStatus(aFileStatus);
if(aFileStatus.isDirectory())
sSubDirNames.push_back( aFileStatus.getFileURL() );
}
}
return sSubDirNames;
}
void Coverage::process_directory(const OUString& sDirName)
{
osl::Directory aDir(sDirName);
osl::DirectoryItem aItem;
osl::FileStatus aFileStatus(osl_FileStatus_Mask_FileURL|osl_FileStatus_Mask_Type);
OUString sMacroUtilsURL = m_directories.getURLFromSrc(u"basic/qa/cppunit/_test_asserts.bas");
if(aDir.open() == osl::FileBase::E_None)
{
while (aDir.getNextItem(aItem) == osl::FileBase::E_None)
{
aItem.getFileStatus(aFileStatus);
if(aFileStatus.isRegular())
{
OUString sFileURL = aFileStatus.getFileURL();
if (sFileURL.endsWith(".bas"))
{
MacroSnippet testMacro;
testMacro.LoadSourceFromFile(u"TestUtil"_ustr, sMacroUtilsURL);
testMacro.LoadSourceFromFile(u"TestModule"_ustr, sFileURL);
SbxVariableRef pReturn = testMacro.Run();
CPPUNIT_ASSERT_MESSAGE("No return variable huh?", pReturn.is());
fprintf(stderr, "macro result for %s\n", OUStringToOString(sFileURL,RTL_TEXTENCODING_UTF8).getStr());
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());
}
}
}
}
fprintf(stderr,"end process directory\n");
}
void Coverage::Coverage_Iterator()
{
OUString sDirName = m_directories.getURLFromSrc(u"basic/qa/basic_coverage");
CPPUNIT_ASSERT(!sDirName.isEmpty());
process_directory(sDirName); // any files in the root test dir are run in test harness default locale ( en-US )
std::vector< OUString > sLangDirs = get_subdirnames( sDirName );
for (auto const& langDir : sLangDirs)
{
sal_Int32 nSlash = langDir.lastIndexOf('/');
if ( nSlash != -1 )
{
OUString sLangISO = langDir.copy( nSlash + 1 );
LanguageTag aLocale( sLangISO );
if ( aLocale.isValidBcp47() )
{
SvtSysLocaleOptions aLocalOptions;
// set locale for test dir
aLocalOptions.SetLocaleConfigString( sLangISO );
process_directory(langDir);
}
}
}
}
CPPUNIT_TEST_SUITE_REGISTRATION(Coverage);
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|