summaryrefslogtreecommitdiff
path: root/ure
diff options
context:
space:
mode:
authorStephan Bergmann <sb@openoffice.org>2005-05-26 08:36:55 +0000
committerStephan Bergmann <sb@openoffice.org>2005-05-26 08:36:55 +0000
commit2e2e1d3335ef835707bbbcef4b083e33031a5e0d (patch)
treed5f7090636d0b9292f3aba105d9c5c73e699f51d /ure
parentd6e2cc0e1ef76644adc28c95febfffb3607554b0 (diff)
#121392# Moved testtools/source/ure/uretest/cppmain.cc 1.1.2.2.
Diffstat (limited to 'ure')
-rw-r--r--ure/source/uretest/cppmain.cc313
1 files changed, 313 insertions, 0 deletions
diff --git a/ure/source/uretest/cppmain.cc b/ure/source/uretest/cppmain.cc
new file mode 100644
index 000000000000..72e5896c1097
--- /dev/null
+++ b/ure/source/uretest/cppmain.cc
@@ -0,0 +1,313 @@
+/*************************************************************************
+ *
+ * $RCSfile: cppmain.cc,v $
+ *
+ * $Revision: 1.1 $
+ *
+ * last change: $Author: sb $ $Date: 2005-05-26 09:36:55 $
+ *
+ * The Contents of this file are made available subject to the terms of
+ * either of the following licenses
+ *
+ * - GNU Lesser General Public License Version 2.1
+ * - Sun Industry Standards Source License Version 1.1
+ *
+ * Sun Microsystems Inc., October, 2000
+ *
+ * GNU Lesser General Public License Version 2.1
+ * =============================================
+ * Copyright 2000 by Sun Microsystems, Inc.
+ * 901 San Antonio Road, Palo Alto, CA 94303, USA
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ *
+ * Sun Industry Standards Source License Version 1.1
+ * =================================================
+ * The contents of this file are subject to the Sun Industry Standards
+ * Source 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.openoffice.org/license.html.
+ *
+ * Software provided under this License is provided on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
+ * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
+ * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
+ * See the License for the specific provisions governing your rights and
+ * obligations concerning the Software.
+ *
+ * The Initial Developer of the Original Code is: Sun Microsystems, Inc.
+ *
+ * Copyright: 2005 by Sun Microsystems, Inc.
+ *
+ * All Rights Reserved.
+ *
+ * Contributor(s): _______________________________________
+ *
+ *
+ ************************************************************************/
+
+#include "sal/config.h"
+
+#include <cstddef>
+#include <new>
+
+#include "com/sun/star/lang/XMain.hpp"
+#include "com/sun/star/lang/XMultiComponentFactory.hpp"
+#include "com/sun/star/uno/Exception.hpp"
+#include "com/sun/star/uno/Reference.hxx"
+#include "com/sun/star/uno/RuntimeException.hpp"
+#include "com/sun/star/uno/Sequence.hxx"
+#include "com/sun/star/uno/XComponentContext.hpp"
+#include "com/sun/star/uno/XInterface.hpp"
+#include "cppuhelper/factory.hxx"
+#include "cppuhelper/implbase1.hxx"
+#include "cppuhelper/implementationentry.hxx"
+#include "cppuhelper/unourl.hxx"
+#include "cppuhelper/weak.hxx"
+#include "osl/thread.h"
+#include "rtl/string.h"
+#include "rtl/ustrbuf.hxx"
+#include "rtl/ustring.h"
+#include "rtl/ustring.hxx"
+#include "sal/types.h"
+#include "salhelper/simplereferenceobject.hxx"
+#include "uno/current_context.hxx"
+#include "uno/environment.h"
+#include "uno/lbnames.h"
+
+#include "test/types/CppTest.hpp"
+#include "test/types/JavaTest.hpp"
+#include "test/types/TestException.hpp"
+#include "test/types/XTest.hpp"
+
+namespace css = ::com::sun::star;
+
+namespace {
+
+class Service: public ::cppu::WeakImplHelper1< ::css::lang::XMain > {
+public:
+ explicit Service(
+ ::css::uno::Reference< ::css::uno::XComponentContext > const & context):
+ context_(context) {}
+
+ virtual ::sal_Int32 SAL_CALL run(
+ ::css::uno::Sequence< ::rtl::OUString > const &)
+ throw (::css::uno::RuntimeException);
+
+private:
+ Service(Service &); // not defined
+ void operator =(Service &); // not defined
+
+ virtual ~Service() {}
+
+ void test(
+ ::css::uno::Reference< test::types::XTest > const & test,
+ ::rtl::OUString const & name);
+
+ ::css::uno::Reference< ::css::uno::XComponentContext > context_;
+};
+
+::sal_Int32 Service::run(::css::uno::Sequence< ::rtl::OUString > const &)
+ throw (::css::uno::RuntimeException)
+{
+ osl_getThreadIdentifier(0); // check for sal
+ (new salhelper::SimpleReferenceObject)->release(); // check for salhelper
+ css::uno::getCurrentContext(); // check for cppu
+ { cppu::UnoUrl dummy(rtl::OUString()); } // check for cppuhelper
+ static char const * const services[] = {
+ "com.sun.star.beans.Introspection",
+ "com.sun.star.bridge.Bridge",
+ "com.sun.star.bridge.BridgeFactory",
+ "com.sun.star.bridge.IiopBridge",
+ "com.sun.star.bridge.UnoUrlResolver",
+ "com.sun.star.bridge.UrpBridge",
+ "com.sun.star.connection.Acceptor",
+ "com.sun.star.connection.Connector",
+ "com.sun.star.io.DataInputStream",
+ "com.sun.star.io.DataOutputStream",
+ "com.sun.star.io.MarkableInputStream",
+ "com.sun.star.io.MarkableOutputStream",
+ "com.sun.star.io.ObjectInputStream",
+ "com.sun.star.io.ObjectOutputStream",
+ "com.sun.star.io.Pipe",
+ "com.sun.star.io.Pump",
+ "com.sun.star.io.TextInputStream",
+ "com.sun.star.io.TextOutputStream",
+ "com.sun.star.java.JavaVirtualMachine",
+ "com.sun.star.lang.MultiServiceFactory",
+ "com.sun.star.lang.RegistryServiceManager",
+ "com.sun.star.lang.ServiceManager",
+ "com.sun.star.loader.Java",
+ "com.sun.star.loader.Java2",
+ "com.sun.star.loader.SharedLibrary",
+ "com.sun.star.reflection.CoreReflection",
+ "com.sun.star.reflection.ProxyFactory",
+ "com.sun.star.reflection.TypeDescriptionManager",
+ "com.sun.star.reflection.TypeDescriptionProvider",
+ "com.sun.star.registry.ImplementationRegistration",
+ "com.sun.star.registry.NestedRegistry",
+ "com.sun.star.registry.SimpleRegistry",
+ "com.sun.star.script.Converter",
+ "com.sun.star.script.Invocation",
+ "com.sun.star.script.InvocationAdapterFactory",
+ "com.sun.star.security.AccessController",
+ "com.sun.star.security.Policy",
+ "com.sun.star.uno.NamingService",
+ "com.sun.star.uri.ExternalUriReferenceTranslator",
+ "com.sun.star.uri.UriReferenceFactory",
+ "com.sun.star.uri.UriSchemeParser_vndDOTsunDOTstarDOTscript",
+ "com.sun.star.uri.VndSunStarPkgUrlReferenceFactory",
+#if defined WNT
+ "com.sun.star.bridge.OleApplicationRegistration",
+ "com.sun.star.bridge.OleBridgeSupplier",
+ "com.sun.star.bridge.OleBridgeSupplier2",
+ "com.sun.star.bridge.OleBridgeSupplierVar1",
+ "com.sun.star.bridge.OleObjectFactory",
+ "com.sun.star.bridge.oleautomation.ApplicationRegistration",
+ "com.sun.star.bridge.oleautomation.BridgeSupplier",
+ "com.sun.star.bridge.oleautomation.Factory",
+#endif
+ // "com.sun.star.beans.PropertyBag",
+ // "com.sun.star.beans.PropertySet",
+ // "com.sun.star.loader.Dynamic",
+ // "com.sun.star.registry.DefaultRegistry",
+ // "com.sun.star.script.AllListenerAdapter",
+ // "com.sun.star.script.Engine",
+ // "com.sun.star.script.JavaScript",
+ // "com.sun.star.test.TestFactory",
+ // "com.sun.star.util.BootstrapMacroExpander",
+ // "com.sun.star.util.MacroExpander",
+ // "com.sun.star.util.logging.Logger",
+ // "com.sun.star.util.logging.LoggerRemote"
+ };
+ ::css::uno::Reference< ::css::lang::XMultiComponentFactory > manager(
+ context_->getServiceManager());
+ if (!manager.is()) {
+ throw ::css::uno::RuntimeException(
+ ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("no service manager")),
+ static_cast< ::cppu::OWeakObject * >(this));
+ }
+ for (::std::size_t i = 0; i < sizeof services / sizeof services[0]; ++i) {
+ ::css::uno::Reference< ::css::uno::XInterface > instance;
+ try {
+ instance = manager->createInstanceWithContext(
+ ::rtl::OUString::createFromAscii(services[i]), context_);
+ } catch (::css::uno::RuntimeException &) {
+ throw;
+ } catch (::css::uno::Exception &) {
+ throw ::css::uno::RuntimeException(
+ ::rtl::OUString(
+ RTL_CONSTASCII_USTRINGPARAM("error creating instance")),
+ static_cast< ::cppu::OWeakObject * >(this));
+ }
+ if (!instance.is()) {
+ throw ::css::uno::RuntimeException(
+ ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("no instance")),
+ static_cast< ::cppu::OWeakObject * >(this));
+ }
+ }
+ static char const * const singletons[] = {
+ "com.sun.star.util.theMacroExpander" };
+ for (::std::size_t i = 0; i < sizeof singletons / sizeof singletons[0]; ++i)
+ {
+ ::rtl::OUStringBuffer b;
+ b.appendAscii(RTL_CONSTASCII_STRINGPARAM("/singletons/"));
+ b.appendAscii(singletons[i]);
+ ::css::uno::Reference< ::css::uno::XInterface > instance(
+ context_->getValueByName(b.makeStringAndClear()),
+ ::css::uno::UNO_QUERY_THROW);
+ }
+ test(
+ ::test::types::CppTest::create(context_),
+ ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("test.types.CppTest")));
+ test(
+ ::test::types::JavaTest::create(context_),
+ ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("test.types.JavaTest")));
+ return 0;
+}
+
+void Service::test(
+ ::css::uno::Reference< test::types::XTest > const & test,
+ ::rtl::OUString const & name)
+{
+ bool ok = false;
+ try {
+ test->throwException();
+ } catch (::test::types::TestException &) {
+ ok = true;
+ }
+ if (!ok) {
+ throw ::css::uno::RuntimeException(
+ (name
+ + ::rtl::OUString(
+ RTL_CONSTASCII_USTRINGPARAM(".throwException failed"))),
+ static_cast< ::cppu::OWeakObject * >(this));
+ }
+}
+
+namespace CppMain {
+
+::css::uno::Reference< ::css::uno::XInterface > create(
+ ::css::uno::Reference< ::css::uno::XComponentContext > const & context)
+ SAL_THROW((::css::uno::Exception))
+{
+ try {
+ return static_cast< ::cppu::OWeakObject * >(new Service(context));
+ } catch (::std::bad_alloc &) {
+ throw ::css::uno::RuntimeException(
+ ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("std::bad_alloc")),
+ ::css::uno::Reference< ::css::uno::XInterface >());
+ }
+}
+
+::rtl::OUString getImplementationName() {
+ return ::rtl::OUString(
+ RTL_CONSTASCII_USTRINGPARAM("test.cpp.cppmain.Component"));
+}
+
+::css::uno::Sequence< ::rtl::OUString > getSupportedServiceNames() {
+ return ::css::uno::Sequence< ::rtl::OUString >();
+}
+
+}
+
+::cppu::ImplementationEntry entries[] = {
+ { CppMain::create, CppMain::getImplementationName,
+ CppMain::getSupportedServiceNames, ::cppu::createSingleComponentFactory,
+ 0, 0 },
+ { 0, 0, 0, 0, 0, 0 } };
+
+}
+
+extern "C" ::sal_Bool SAL_CALL component_writeInfo(
+ void * serviceManager, void * registryKey)
+{
+ return ::cppu::component_writeInfoHelper(
+ serviceManager, registryKey, entries);
+}
+
+extern "C" void * SAL_CALL component_getFactory(
+ char const * implName, void * serviceManager, void * registryKey)
+{
+ return ::cppu::component_getFactoryHelper(
+ implName, serviceManager, registryKey, entries);
+}
+
+extern "C" void SAL_CALL component_getImplementationEnvironment(
+ char const ** envTypeName, ::uno_Environment **)
+{
+ *envTypeName = CPPU_CURRENT_LANGUAGE_BINDING_NAME;
+}