summaryrefslogtreecommitdiff
path: root/cppu/test/test_sec.cxx
diff options
context:
space:
mode:
authorDaniel Boelzle <dbo@openoffice.org>2000-12-21 13:41:57 +0000
committerDaniel Boelzle <dbo@openoffice.org>2000-12-21 13:41:57 +0000
commite76d5e77bee63f41561e9f2b23b1c8b77a00278a (patch)
tree270d0316fd85e6d27d80804de702655a58797d14 /cppu/test/test_sec.cxx
parent9299a24bf6fcc04b9453a4a3cf5d718bcf05012e (diff)
new
Diffstat (limited to 'cppu/test/test_sec.cxx')
-rw-r--r--cppu/test/test_sec.cxx245
1 files changed, 245 insertions, 0 deletions
diff --git a/cppu/test/test_sec.cxx b/cppu/test/test_sec.cxx
new file mode 100644
index 000000000000..1c5a5e7e2a76
--- /dev/null
+++ b/cppu/test/test_sec.cxx
@@ -0,0 +1,245 @@
+/*************************************************************************
+ *
+ * $RCSfile: test_sec.cxx,v $
+ *
+ * $Revision: 1.1 $
+ *
+ * last change: $Author: dbo $ $Date: 2000-12-21 14:41:57 $
+ *
+ * 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: 2000 by Sun Microsystems, Inc.
+ *
+ * All Rights Reserved.
+ *
+ * Contributor(s): _______________________________________
+ *
+ *
+ ************************************************************************/
+
+#include <stdio.h>
+
+#include <vos/conditn.hxx>
+#include <vos/thread.hxx>
+
+#include <uno/current_context.hxx>
+
+#include <cppuhelper/implbase1.hxx>
+
+#include <com/sun/star/lang/XMultiServiceFactory.hpp>
+#include <com/sun/star/lang/XSingleServiceFactory.hpp>
+#include <com/sun/star/loader/XImplementationLoader.hpp>
+#include <com/sun/star/container/XNameContainer.hpp>
+
+using namespace rtl;
+using namespace vos;
+using namespace cppu;
+using namespace com::sun::star::uno;
+using namespace com::sun::star::security;
+using namespace com::sun::star::lang;
+using namespace com::sun::star::loader;
+using namespace com::sun::star::registry;
+using namespace com::sun::star::container;
+
+
+static inline void out( const sal_Char * p )
+{
+ ::fprintf( stderr, p );
+}
+static inline void out( const OUString & r )
+{
+ OString aStr( OUStringToOString( r, RTL_TEXTENCODING_ASCII_US ) );
+ out( aStr.getStr() );
+}
+
+
+static Reference< XInterface > load(
+ const Reference< XMultiServiceFactory > & xMgr,
+ const char * service,
+ const char * implName, const char * activator, const char * loc ) throw ()
+{
+ Reference< XInterface > xRet(
+ xMgr->createInstance( OUString::createFromAscii( service ) ) );
+ if (xRet.is())
+ return xRet;
+
+ try
+ {
+ Reference< XImplementationLoader > xLoader(
+ xMgr->createInstance( OUString::createFromAscii( activator ) ), UNO_QUERY );
+ if (xLoader.is())
+ {
+ Reference< XSingleServiceFactory > xFac( xLoader->activate(
+ OUString::createFromAscii( implName ), OUString(),
+ OUString::createFromAscii( loc ),
+ Reference< XRegistryKey >() ), UNO_QUERY );
+ if (xFac.is())
+ return xFac->createInstance();
+ }
+ else
+ {
+ out( "### cannot activate loader \"" );
+ out( activator );
+ out( "\"!\n" );
+ }
+ }
+ catch (Exception &)
+ {
+ out( "### cannot activate service \"" );
+ out( service );
+ out( "\"!\n" );
+ }
+ return Reference< XInterface >();
+}
+
+static void setEnv( const Reference< XMultiServiceFactory > & xMgr ) throw ()
+{
+ OSL_ASSERT( xMgr.is() );
+ Reference< XNameContainer > xContext( getCurrentContext(), UNO_QUERY );
+ OSL_ASSERT( xContext.is() );
+
+ try
+ {
+ xContext->insertByName(
+ OUString( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.lang.ServiceManager") ),
+ makeAny( xMgr ) );
+ xContext->insertByName(
+ OUString( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.security.AccessController") ),
+ makeAny( load( xMgr,
+ "com.sun.star.security.AccessController",
+ "com.sun.star.comp.security.AccessController",
+ "com.sun.star.loader.Java2",
+ "com.sun.star.comp.security.AccessController" ) ) );
+ xContext->insertByName(
+ OUString( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.security.auth.login.LoginContext") ),
+ makeAny( load( xMgr,
+ "com.sun.star.security.auth.login.LoginContext",
+ "com.sun.star.comp.security.auth.login.LoginContext",
+ "com.sun.star.loader.Java2",
+ "com.sun.star.comp.security.auth.login.LoginContext" ) ) );
+ }
+ catch (Exception & rExc)
+ {
+ out( "### exception occured: " );
+ out( rExc.Message );
+ out( "\n" );
+ }
+}
+
+//##################################################################################################
+//##################################################################################################
+//##################################################################################################
+
+struct PrivAction : WeakImplHelper1< XPrivilegedAction >
+{
+ virtual Any SAL_CALL run()
+ throw (Exception)
+ {
+ throw IllegalArgumentException(
+ OUString::createFromAscii("testtest"), (OWeakObject *)this, (sal_Int16)5 );
+ }
+};
+
+struct Thread1 : public OThread
+{
+ Reference< XMultiServiceFactory > _xMgr;
+
+ Thread1( const Reference< XMultiServiceFactory > & xMgr )
+ : _xMgr( xMgr )
+ {}
+
+ void f()
+ {
+ Reference< XNameAccess > xAccess( getCurrentContext(), UNO_QUERY );
+ OSL_ASSERT( xAccess->getByName( OUString::createFromAscii("a") ) == (sal_Int16)5 );
+ Reference< XNameContainer > xCont( getCurrentContext(), UNO_QUERY );
+ xCont->insertByName( OUString::createFromAscii("b"), makeAny( (sal_Int32)6 ) );
+ }
+ virtual void SAL_CALL run()
+ {
+ try
+ {
+ setEnv( _xMgr );
+ Reference< XNameContainer > xCont( getCurrentContext(), UNO_QUERY );
+ xCont->insertByName( OUString::createFromAscii("a"), makeAny( (sal_Int32)5 ) );
+ f();
+ Reference< XNameAccess > xAccess( getCurrentContext(), UNO_QUERY );
+ OSL_ASSERT( xAccess->getByName( OUString::createFromAscii("b") ) == (sal_Int16)6 );
+
+// checkPermission(
+// Permission( OUString::createFromAscii("java.io.FilePermission"),
+// OUString::createFromAscii("f:\\userprofiles.dat"),
+// OUString::createFromAscii("read") ) );
+
+// try
+// {
+// Reference< XCurrentContext > xContext( getCurrentContext() );
+// Reference< XAccessController > xACC( xContext->getAccessController() );
+// xACC->doPrivileged( new PrivAction(), Reference< XAccessControlContext >() );
+// }
+// catch (IllegalArgumentException & r)
+// {
+// OSL_ASSERT( r.ArgumentPosition == 5 &&
+// r.Message.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("testtest") ));
+// }
+ }
+ catch (RuntimeException & rExc)
+ {
+ out( rExc.Message );
+ }
+ }
+};
+
+
+void test_security( const Reference< XMultiServiceFactory > & xMgr ) throw ()
+{
+ setEnv( xMgr );
+ OSL_ASSERT( getCurrentContext()->getServiceManager().is() );
+
+ Thread1 thread1( xMgr );
+ thread1.create();
+ thread1.join();
+ out( "> exiting...\n" );
+}