Files
libreoffice/cppuhelper/test/testdefaultbootstrapping.pl

200 lines
5.5 KiB
Perl
Raw Normal View History

:
eval 'exec perl -wS $0 ${1+"$@"}'
if 0;
#*************************************************************************
#
# $RCSfile: testdefaultbootstrapping.pl,v $
#
# $Revision: 1.1 $
#
# last change: $Author: kr $ $Date: 2001-07-24 12:20:32 $
#
# 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 WARRUNTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING,
# WITHOUT LIMITATION, WARRUNTIES 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): _______________________________________
#
#
#
#*************************************************************************
#
# deliver.pl - copy from module output tree to solver
#
my $testexe;
if ($ENV{GUI} eq "WNT") {
%services = (
'com.sun.star.uno.NamingService' => 'namingservice.dll',
'com.sun.star.script.Invocation' => 'inv.dll',
'com.sun.star.script.Converter' => 'tcv.dll'
);
$testexe = "testdefaultbootstrapping.exe";
}
else {
%services = (
'com.sun.star.uno.NamingService' => 'libnamingservice.so',
'com.sun.star.script.Invocation' => 'libinv.so',
'com.sun.star.script.Converter' => 'libtcv.so'
);
$testexe = $ENV{PWD} . "/testdefaultbootstrapping";
}
sub unregisterService($){
my $service_name = shift;
my $rdb_name = $service_name . '.rdb';
unlink $rdb_name;
return 1;
}
sub testForServices($$) {
my $services = shift;
my $pars = shift;
# my $rc = system 'echo', $testexe, @{$services}, $pars;
my $rc = system $testexe, @{$services}, $pars;
return $rc >> 8;
}
sub registerService($$){
my $service_name = shift;
my $service_lib = shift;
my $rdb_name = $service_name . '.rdb';
my $rc = system "regcomp -register -r " . $rdb_name . " -c $service_lib";
return ! ( $rc >> 8 );
}
my $state = 1;
my @allservices;
my $allservices_rdbs;
my $rc;
my $comment;
# ensure that services can not be instantiated
foreach $service ( keys %services ) {
# ensure that the current service is not reachable
unregisterService($service);
$rc = !testForServices([$service], "");
if(!$rc) {
$comment = $comment . "couldn't unregister service " . $service . "\n";
$state = 0;
}
# register the service and ensure that it is reachable
$rc = registerService($service, $services{$service});
if(!$rc) {
$comment = $comment . "couldn't register service " . $service . "\n";
$state = 0;
}
$rc = testForServices([$service], "-env:UNO_SERVICES=" . $service . ".rdb");
if(!$rc) {
$comment = $comment . "couldn't reeach service " . $service . "\n";
$state = 0;
}
# memorize all services
$allservices_rdbs = $allservices_rdbs . $service . ".rdb" . " ";
push @allservices, $service;
}
#print "alls:", @allservices, $allservices_rdbs, "\n";
#test indirection
$rc = testForServices(['com.sun.star.script.Invocation'], '-env:UNO_SERVICES=${testrc:Tests:TestKey1}');
if (!$rc) {
$comment = $comment . "indirection test not passed\n";
$state = 0;
}
# test that all services are reachable through different rdbs
# change the directory to ensure, that all paths become expanded
chdir "..";
$rc = testForServices(\@allservices, "-env:UNO_SERVICES=" . $allservices_rdbs);
if (!$rc) {
$comment = $comment. "multi rdb test not passed\n";
$state = 0;
}
print "**************************\n";
if($state) {
print "****** tests passed ******\n";
}
else {
print "**** tests NOT passed ****\n";
print "Commnent:", $comment, "\n";
}
print "**************************\n";