From 2787179fe97c0dac5e1857aad28c165a260292de Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Tue, 14 Jun 2011 00:56:56 +0100 Subject: add regression test --- hwpfilter/CppunitTest_hwpfilter_test_hwpfilter.mk | 84 +++++++++++ hwpfilter/Module_hwpfilter.mk | 4 + hwpfilter/prj/build.lst | 2 +- hwpfilter/qa/cppunit/data/fail/.gitignore | 0 hwpfilter/qa/cppunit/test_hwpfilter.cxx | 171 ++++++++++++++++++++++ 5 files changed, 260 insertions(+), 1 deletion(-) create mode 100644 hwpfilter/CppunitTest_hwpfilter_test_hwpfilter.mk delete mode 100644 hwpfilter/qa/cppunit/data/fail/.gitignore create mode 100644 hwpfilter/qa/cppunit/test_hwpfilter.cxx diff --git a/hwpfilter/CppunitTest_hwpfilter_test_hwpfilter.mk b/hwpfilter/CppunitTest_hwpfilter_test_hwpfilter.mk new file mode 100644 index 000000000000..0f7ea418115e --- /dev/null +++ b/hwpfilter/CppunitTest_hwpfilter_test_hwpfilter.mk @@ -0,0 +1,84 @@ +#************************************************************************* +# Version: MPL 1.1 / GPLv3+ / LGPLv3+ +# +# The contents of this file are subject to the Mozilla Public License Version +# 1.1 (the "License"); you may not use this file except in compliance with +# the License or as specified alternatively below. You may obtain a copy of +# the License at http://www.mozilla.org/MPL/ +# +# Software distributed under the License is distributed on an "AS IS" basis, +# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License +# for the specific language governing rights and limitations under the +# License. +# +# The Initial Developer of the Original Code is +# Bjoern Michaelsen, Canonical Ltd. +# Portions created by the Initial Developer are Copyright (C) 2010 the +# Initial Developer. All Rights Reserved. +# +# Major Contributor(s): +# Caolán McNamara, Red Hat, Inc. +# David Tardon, Red Hat Inc. +# +# For minor contributions see the git repository. +# +# Alternatively, the contents of this file may be used under the terms of +# either the GNU General Public License Version 3 or later (the "GPLv3+"), or +# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"), +# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable +# instead of those above. +#************************************************************************* + +$(eval $(call gb_CppunitTest_CppunitTest,hwpfilter_test_hwpfilter)) + +$(eval $(call gb_CppunitTest_add_exception_objects,hwpfilter_test_hwpfilter, \ + hwpfilter/qa/cppunit/test_hwpfilter \ +)) + +$(eval $(call gb_CppunitTest_add_linked_libs,hwpfilter_test_hwpfilter, \ + ucbhelper \ + comphelper \ + cppu \ + cppuhelper \ + sal \ + vcl \ + $(gb_STDLIBS) \ +)) + +$(eval $(call gb_CppunitTest_set_include,hwpfilter_test_hwpfilter,\ + $$(INCLUDE) \ + -I$(OUTDIR)/inc/offuh \ + -I$(OUTDIR)/inc \ +)) + +$(eval $(call gb_CppunitTest_uses_ure,hwpfilter_test_hwpfilter)) + +$(eval $(call gb_CppunitTest_add_type_rdbs,hwpfilter_test_hwpfilter,\ + types \ +)) + +$(eval $(call gb_CppunitTest_add_service_rdbs,hwpfilter_test_hwpfilter,\ + hwpfilter_test_hwpfilter \ +)) + +$(eval $(call gb_CppunitTest_set_args,hwpfilter_test_hwpfilter,\ + --headless \ + --invisible \ +)) + +$(eval $(call gb_RdbTarget_RdbTarget,hwpfilter_test_hwpfilter)) + +$(eval $(call gb_RdbTarget_add_components,hwpfilter_test_hwpfilter,\ + hwpfilter/source/hwp,\ +)) + +$(eval $(call gb_RdbTarget_add_old_components,hwpfilter_test_hwpfilter,\ + ucb1 \ + ucpfile1 \ +)) + +# we need to explicitly depend on library hwp because it is not implied +# by a link relation +$(call gb_CppunitTest_get_target,hwpfilter_test_hwpfilter) : $(call gb_Library_get_target,hwp) + +# vim: set noet sw=4: diff --git a/hwpfilter/Module_hwpfilter.mk b/hwpfilter/Module_hwpfilter.mk index b4e55302daba..9985b7e6034e 100644 --- a/hwpfilter/Module_hwpfilter.mk +++ b/hwpfilter/Module_hwpfilter.mk @@ -31,4 +31,8 @@ $(eval $(call gb_Module_add_targets,hwpfilter,\ Library_hwp \ )) +$(eval $(call gb_Module_add_check_targets,hwpfilter,\ + CppunitTest_hwpfilter_test_hwpfilter \ +)) + # vim: set noet ts=4 sw=4: diff --git a/hwpfilter/prj/build.lst b/hwpfilter/prj/build.lst index f17ca9d58c5e..3fa47f767bfe 100644 --- a/hwpfilter/prj/build.lst +++ b/hwpfilter/prj/build.lst @@ -1,2 +1,2 @@ -hw hwpfilter : offuh cppuhelper ZLIB:zlib LIBXSLT:libxslt ure NULL +hw hwpfilter : offuh cppuhelper ZLIB:zlib LIBXSLT:libxslt ucbhelper ucb ure NULL hw hwpfilter\prj nmake - all hw_prj NULL diff --git a/hwpfilter/qa/cppunit/data/fail/.gitignore b/hwpfilter/qa/cppunit/data/fail/.gitignore deleted file mode 100644 index e69de29bb2d1..000000000000 diff --git a/hwpfilter/qa/cppunit/test_hwpfilter.cxx b/hwpfilter/qa/cppunit/test_hwpfilter.cxx new file mode 100644 index 000000000000..56c887f51612 --- /dev/null +++ b/hwpfilter/qa/cppunit/test_hwpfilter.cxx @@ -0,0 +1,171 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * Version: MPL 1.1 / GPLv3+ / LGPLv3+ + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Initial Developer of the Original Code is + * Caolán McNamara (Red Hat, Inc.) + * Portions created by the Initial Developer are Copyright (C) 2011 the + * Initial Developer. All Rights Reserved. + * + * Contributor(s): Caolán McNamara + * + * Alternatively, the contents of this file may be used under the terms of + * either the GNU General Public License Version 3 or later (the "GPLv3+"), or + * the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"), + * in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable + * instead of those above. + */ + +#include + +#include +#include + +#include +#include +#include + +#include +#include +#include + +#include + +using namespace ::com::sun::star; + +namespace +{ + class HwpFilterTest : public ::CppUnit::TestFixture + { + public: + HwpFilterTest(); + ~HwpFilterTest(); + + virtual void setUp(); + virtual void tearDown(); + + void recursiveScan(const rtl::OUString &rURL, bool bExpected); + bool load(const rtl::OUString &rURL); + void test(); + + CPPUNIT_TEST_SUITE(HwpFilterTest); + CPPUNIT_TEST(test); + CPPUNIT_TEST_SUITE_END(); + private: + uno::Reference m_xContext; + uno::Reference m_xFactory; + uno::Reference m_xMSF; + uno::Reference m_xFilter; + + ::rtl::OUString m_aSrcRoot; + int m_nLoadedDocs; + }; + + HwpFilterTest::HwpFilterTest() : m_aSrcRoot( RTL_CONSTASCII_USTRINGPARAM( "file://" ) ), m_nLoadedDocs(0) + { + m_xContext = cppu::defaultBootstrap_InitialComponentContext(); + m_xFactory = m_xContext->getServiceManager(); + m_xMSF = uno::Reference(m_xFactory, uno::UNO_QUERY_THROW); + m_xFilter = uno::Reference< document::XFilter >(m_xMSF->createInstance( + ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.comp.hwpimport.HwpImportFilter"))), + uno::UNO_QUERY_THROW); + + const char* pSrcRoot = getenv( "SRC_ROOT" ); + CPPUNIT_ASSERT_MESSAGE("SRC_ROOT env variable not set", pSrcRoot != NULL && pSrcRoot[0] != 0); + +#ifdef WNT + if (pSrcRoot[1] == ':') + m_aSrcRoot += rtl::OUString::createFromAscii( "/" ); +#endif + m_aSrcRoot += rtl::OUString::createFromAscii( pSrcRoot ); + + //Without this we're crashing because callees are using + //getProcessServiceFactory. In general those should be removed in favour + //of retaining references to the root ServiceFactory as its passed around + comphelper::setProcessServiceFactory(m_xMSF); + + // initialise UCB-Broker + uno::Sequence aUcbInitSequence(2); + aUcbInitSequence[0] <<= rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("Local")); + aUcbInitSequence[1] <<= rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("Office")); + bool bInitUcb = ucbhelper::ContentBroker::initialize(m_xMSF, aUcbInitSequence); + CPPUNIT_ASSERT_MESSAGE("Should be able to initialize UCB", bInitUcb); + + uno::Reference xUcb = + ucbhelper::ContentBroker::get()->getContentProviderManagerInterface(); + uno::Reference xFileProvider(m_xMSF->createInstance( + rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.ucb.FileContentProvider"))), uno::UNO_QUERY); + xUcb->registerContentProvider(xFileProvider, rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("file")), sal_True); + } + + HwpFilterTest::~HwpFilterTest() + { + } + + void HwpFilterTest::setUp() + { + } + + void HwpFilterTest::tearDown() + { + } + + bool HwpFilterTest::load(const rtl::OUString &rURL) + { + uno::Sequence< beans::PropertyValue > aDescriptor(1); + aDescriptor[0].Name = rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("URL")); + aDescriptor[0].Value <<= rURL; + sal_Bool bRet = m_xFilter->filter(aDescriptor); + + ++m_nLoadedDocs; + + return bRet; + } + + void HwpFilterTest::recursiveScan(const rtl::OUString &rURL, bool bExpected) + { + osl::Directory aDir(rURL); + + CPPUNIT_ASSERT(osl::FileBase::E_None == aDir.open()); + osl::DirectoryItem aItem; + osl::FileStatus aFileStatus(osl_FileStatus_Mask_FileURL|osl_FileStatus_Mask_Type); + while (aDir.getNextItem(aItem) == osl::FileBase::E_None) + { + aItem.getFileStatus(aFileStatus); + rtl::OUString sURL = aFileStatus.getFileURL(); + if (aFileStatus.getFileType() == osl::FileStatus::Directory) + recursiveScan(sURL, bExpected); + else + { + bool bRes = load(sURL); + rtl::OString aRes(rtl::OUStringToOString(sURL, osl_getThreadTextEncoding())); + CPPUNIT_ASSERT_MESSAGE(aRes.getStr(), bRes == bExpected); + } + } + CPPUNIT_ASSERT(osl::FileBase::E_None == aDir.close()); + } + + void HwpFilterTest::test() + { + recursiveScan(m_aSrcRoot + rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("/clone/filters/hwpfilter/qa/cppunit/data/pass")), true); + recursiveScan(m_aSrcRoot + rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("/clone/filters/hwpfilter/qa/cppunit/data/fail/")), false); + + printf("HwpFilter: tested %d files\n", m_nLoadedDocs); + } + + CPPUNIT_TEST_SUITE_REGISTRATION(HwpFilterTest); +} + +CPPUNIT_PLUGIN_IMPLEMENT(); + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit