summaryrefslogtreecommitdiff
path: root/writerfilter/qa
diff options
context:
space:
mode:
authorBjoern Michaelsen <bjoern.michaelsen@canonical.com>2011-06-20 09:54:52 +0200
committerBjoern Michaelsen <bjoern.michaelsen@canonical.com>2011-06-20 09:54:52 +0200
commit6f7b36ecd838fd3ed00cebb2973d3d2e66ae5ca5 (patch)
tree1c21f92f10ec2b3811349b1920d3ad7710c9f20b /writerfilter/qa
parentae2ebf8fac893aeb2a328918ce1b12ef6834f16d (diff)
remove merge trash
Diffstat (limited to 'writerfilter/qa')
-rw-r--r--writerfilter/qa/cppunittests/doctok/testdoctok.cxx.orig288
1 files changed, 0 insertions, 288 deletions
diff --git a/writerfilter/qa/cppunittests/doctok/testdoctok.cxx.orig b/writerfilter/qa/cppunittests/doctok/testdoctok.cxx.orig
deleted file mode 100644
index 6912a8da8c40..000000000000
--- a/writerfilter/qa/cppunittests/doctok/testdoctok.cxx.orig
+++ /dev/null
@@ -1,288 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-// autogenerated file with codegen.pl
-
-#include <sal/cppunit.h>
-#include <osl/process.h>
-#include <cppuhelper/bootstrap.hxx>
-#include <ucbhelper/contentbroker.hxx>
-#include <com/sun/star/io/XInputStream.hpp>
-#include <com/sun/star/ucb/XSimpleFileAccess.hpp>
-#include <com/sun/star/lang/XMultiServiceFactory.hpp>
-#include <iostream>
-
-#include <doctok/WW8Document.hxx>
-
-namespace testdoctok
-{
-using namespace ::std;
-using namespace ::com::sun::star;
-using namespace ::writerfilter::doctok;
-
-uno::Reference<io::XInputStream> xStream;
-uno::Reference<uno::XComponentContext> xContext;
-WW8Document::Pointer_t pDocument;
-uno::Reference< ::com::sun::star::ucb::XSimpleFileAccess > xSimpleFileAccess;
-
-class test : public CppUnit::TestFixture
-{
-
-public:
- // initialise your test code values here.
- void setUp()
- {
- }
-
- void tearDown()
- {
- }
-
- void testInitUno()
- {
- bool bResult = false;
-
- // initialise UCB-Broker
- uno::Reference<uno::XComponentContext>
- xComponentContext
- (::cppu::defaultBootstrap_InitialComponentContext());
- OSL_ASSERT( xComponentContext.is() );
-
- xContext = xComponentContext;
-
- uno::Reference<lang::XMultiComponentFactory>
- xFactory(xComponentContext->getServiceManager() );
- OSL_ASSERT(xFactory.is());
-
- uno::Sequence<uno::Any> aUcbInitSequence(2);
- aUcbInitSequence[0] <<=
- rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("Local"));
- aUcbInitSequence[1] <<=
- rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("Office"));
-
- uno::Reference<lang::XMultiServiceFactory>
- xServiceFactory(xFactory, uno::UNO_QUERY);
- OSL_ASSERT( xServiceFactory.is() );
-
- if (xServiceFactory.is())
- {
- sal_Bool bRet =
- ::ucbhelper::ContentBroker::initialize(xServiceFactory,
- aUcbInitSequence);
-
- OSL_ASSERT(bRet);
- if (bRet)
- {
- uno::Reference< ::com::sun::star::ucb::XSimpleFileAccess >
- xNameContainer(xFactory->createInstanceWithContext
- (::rtl::OUString::createFromAscii
- ("com.sun.star.ucb.SimpleFileAccess" ),
- xComponentContext), uno::UNO_QUERY );
-
- if (xNameContainer.is())
- {
-<<<<<<< HEAD
- xSimpleFileAccess = xNameContainer;
-
- bResult = true;
-=======
- uno::Reference< ::com::sun::star::ucb::XSimpleFileAccess >
- xNameContainer(xFactory->createInstanceWithContext
- (::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM
- ("com.sun.star.ucb.SimpleFileAccess" )),
- xComponentContext), uno::UNO_QUERY );
-
- if (xNameContainer.is())
- {
- xSimpleFileAccess = xNameContainer;
-
- bResult = true;
- }
->>>>>>> master
- }
- }
- }
-
- CPPUNIT_ASSERT_MESSAGE("UNO initialization failed",
- bResult);
- }
-
- // insert your test code here.
- void testOpenFile()
- {
- try
- {
- rtl_uString *dir=NULL;
- osl_getProcessWorkingDir(&dir);
- rtl_uString *fname=NULL;
- //rtl_uString_newFromAscii(&fname, "/OpenDocument-v1.doc");
- rtl_uString_newFromAscii(&fname, "/test.doc");
- //rtl_uString_newFromAscii(&fname, "/numbers.doc");
- rtl_uString *absfile=NULL;
- rtl_uString_newConcat(&absfile, dir, fname);
-
- rtl::OUString sInputFileURL( absfile );
-
- for (sal_Int32 n = 0; n < sInputFileURL.getLength(); ++n)
- {
-<<<<<<< HEAD
- sal_uChar nC = sInputFileURL[n];
-=======
- rtl_uString *dir=NULL;
- osl_getProcessWorkingDir(&dir);
- rtl_uString *fname=NULL;
- rtl_uString_newFromAscii(&fname, "/test.doc");
- rtl_uString *absfile=NULL;
- rtl_uString_newConcat(&absfile, dir, fname);
-
- rtl::OUString sInputFileURL( absfile );
-
- for (sal_uInt32 n = 0; n < sInputFileURL.getLength(); ++n)
- {
- sal_uChar nC = sInputFileURL[n];
-
- if (nC < 0xff && isprint(nC))
- clog << static_cast<char>(nC);
- else
- clog << ".";
- }
->>>>>>> master
-
- if (nC < 0xff && isprint(nC))
- clog << static_cast<char>(nC);
- else
- clog << ".";
- }
-
- clog << endl;
-
- xStream = xSimpleFileAccess->openFileRead(sInputFileURL);
-
-<<<<<<< HEAD
- WW8Stream::Pointer_t pStream =
- WW8DocumentFactory::createStream(xContext, xStream);
-=======
- pDocument = WW8DocumentFactory::createDocument(pStream);
- }
- catch (doctok::Exception)
- {
- clog << "Exception!!" << endl;
- }
->>>>>>> master
-
- pDocument.reset(WW8DocumentFactory::createDocument(pStream));
- }
- catch (writerfilter::Exception e)
- {
-<<<<<<< HEAD
- clog << "Exception!!" << endl;
-=======
-#endif
- sal_uInt32 nResult = 0;
-
- try
- {
- WW8DocumentIterator::Pointer_t pIt = pDocument->begin();
- WW8DocumentIterator::Pointer_t pItEnd = pDocument->end();
-
- while (! pIt->equal(*pItEnd))
- {
- pIt->dump(clog);
-
- clog << endl;
-
- WW8PropertySet::Pointer_t pAttrs = pIt->getProperties();
-
- if (pAttrs != NULL)
- {
- pAttrs->dump(clog);
- }
-
- pIt->getText().dump(clog);
- ++(*pIt);
- ++nResult;
- }
- }
- catch (doctok::Exception)
- {
- clog << "Exception!!" << endl;
- }
-
- char sBuffer[256];
- snprintf(sBuffer, 255, "%d", nResult);
- clog << "Iterator steps:" << sBuffer << endl;
-
- CPPUNIT_ASSERT_MESSAGE("traversing document failed",
- nResult > 0);
->>>>>>> master
- }
-
- CPPUNIT_ASSERT_MESSAGE("creating document failed",
- pDocument != NULL);
- }
-
- void testEvents()
- {
- try
- {
- ::writerfilter::Stream::Pointer_t pStream = ::writerfilter::createStreamHandler();
-
-<<<<<<< HEAD
- pDocument->resolve(*pStream);
-=======
- pDocument->resolve(*pStream);
- }
- catch (doctok::Exception)
- {
- clog << "Exception!!" << endl;
- }
->>>>>>> master
- }
- catch (writerfilter::Exception e)
- {
- clog << "Exception!!" << endl;
- }
- }
-
- void testEnd()
- {
- ::ucbhelper::ContentBroker::deinitialize();
- }
-
-<<<<<<< HEAD
- // Change the following lines only, if you add, remove or rename
- // member functions of the current class,
- // because these macros are need by auto register mechanism.
-
- CPPUNIT_TEST_SUITE(test);
- CPPUNIT_TEST(testInitUno);
- CPPUNIT_TEST(testOpenFile);
- CPPUNIT_TEST(testEvents);
- CPPUNIT_TEST(testEnd);
- CPPUNIT_TEST_SUITE_END();
-}; // class test
-
-// -----------------------------------------------------------------------------
-CPPUNIT_TEST_SUITE_NAMED_REGISTRATION(testdoctok::test, "doctok");
-=======
- // Change the following lines only, if you add, remove or rename
- // member functions of the current class,
- // because these macros are need by auto register mechanism.
-
- CPPUNIT_TEST_SUITE(test);
- CPPUNIT_TEST(testInitUno);
- CPPUNIT_TEST(testOpenFile);
- CPPUNIT_TEST(testEvents);
- CPPUNIT_TEST(testEnd);
- CPPUNIT_TEST_SUITE_END();
- }; // class test
-
- // -----------------------------------------------------------------------------
- CPPUNIT_TEST_SUITE_NAMED_REGISTRATION(testdoctok::test, "doctok");
->>>>>>> master
-} // namespace doctok
-
-
-// -----------------------------------------------------------------------------
-
-CPPUNIT_PLUGIN_IMPLEMENT();
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */