2001-08-30 06:17:44 -05:00
|
|
|
:
|
|
|
|
eval 'exec perl -wS $0 ${1+"$@"}'
|
|
|
|
if 0;
|
|
|
|
#*************************************************************************
|
|
|
|
#
|
|
|
|
# $RCSfile: bootstrap.pl,v $
|
|
|
|
#
|
2004-12-23 04:35:48 -06:00
|
|
|
# $Revision: 1.6 $
|
2001-08-30 06:17:44 -05:00
|
|
|
#
|
2004-12-23 04:35:48 -06:00
|
|
|
# last change: $Author: vg $ $Date: 2004-12-23 11:35:48 $
|
2001-08-30 06:17:44 -05:00
|
|
|
#
|
|
|
|
# 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): _______________________________________
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#*************************************************************************
|
|
|
|
|
|
|
|
|
|
|
|
my $rc;
|
|
|
|
my $state = 1;
|
2004-12-23 04:35:48 -06:00
|
|
|
my $comment = "";
|
2001-08-30 06:17:44 -05:00
|
|
|
|
|
|
|
$ENV{MYBOOTSTRAPTESTVALUE}=0;
|
2004-12-23 04:35:48 -06:00
|
|
|
|
2001-08-30 06:17:44 -05:00
|
|
|
$rc = system "./testbootstrap", 1, "-env:MYBOOTSTRAPTESTVALUE=1";
|
|
|
|
if (!$rc) {
|
|
|
|
$comment = $comment . "commandline over environment test not passed\n";
|
|
|
|
$state = 0;
|
|
|
|
}
|
|
|
|
|
2004-12-23 04:35:48 -06:00
|
|
|
$rc = system "./testbootstrap", "0", "-env:INIFILENAME=";
|
|
|
|
if (!$rc) {
|
|
|
|
$comment = $comment . "exe custom ini test not passed\n";
|
|
|
|
$state = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
delete $ENV{MYBOOTSTRAPTESTVALUE};
|
|
|
|
|
2001-08-30 06:17:44 -05:00
|
|
|
$rc = system "./testbootstrap.bin", "file";
|
|
|
|
if (!$rc) {
|
|
|
|
$comment = $comment . "extensions cut test not passed with .bin\n";
|
|
|
|
$state = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
$rc = system "./testbootstrap.Bin", "file";
|
|
|
|
if (!$rc) {
|
|
|
|
$comment = $comment . "extensions cut test not passed with .Bin\n";
|
|
|
|
$state = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
$rc = system "./testbootstrap.exe", "file";
|
|
|
|
if (!$rc) {
|
|
|
|
$comment = $comment . "extensions cut test not passed with .exe\n";
|
|
|
|
$state = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
$rc = system "./testbootstrap.Exe", "file";
|
|
|
|
if (!$rc) {
|
|
|
|
$comment = $comment . "extensions cut test not passed with .Exe\n";
|
|
|
|
$state = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($ENV{GUI} eq "WNT") {
|
2002-01-07 09:16:14 -06:00
|
|
|
$rc = system "./testbootstrap", "auxaux", "-env:iniName=ini.ini", '-env:MYBOOTSTRAPTESTVALUE=$CUSTOMINIVALUE';
|
2001-08-30 06:17:44 -05:00
|
|
|
}
|
|
|
|
else {
|
2002-01-07 09:16:14 -06:00
|
|
|
$rc = system "./testbootstrap", "auxaux", "-env:iniName=inirc", '-env:MYBOOTSTRAPTESTVALUE=$CUSTOMINIVALUE';
|
2001-08-30 06:17:44 -05:00
|
|
|
}
|
|
|
|
if (!$rc) {
|
|
|
|
$comment = $comment . "custom ini test not passed\n";
|
|
|
|
$state = 0;
|
|
|
|
}
|
|
|
|
|
2001-10-11 07:14:37 -05:00
|
|
|
if ($ENV{GUI} eq "WNT") {
|
|
|
|
$comment = $comment . '$SYSUSERHOME not testable under windows' . "\n";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$rc = system "./testbootstrap", "file://$ENV{HOME}", '-env:MYBOOTSTRAPTESTVALUE=$SYSUSERHOME';
|
|
|
|
if (!$rc) {
|
|
|
|
$comment = $comment . '$SYSUSERHOME test not passed' . "\n";
|
|
|
|
$state = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($ENV{GUI} eq "WNT") {
|
|
|
|
$comment = $comment . '$SYSUSERCONFIG' . " not testable under windows\n";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$rc = system "./testbootstrap", "file://$ENV{HOME}", '-env:MYBOOTSTRAPTESTVALUE=$SYSUSERCONFIG';
|
|
|
|
if (!$rc) {
|
|
|
|
$comment = $comment . '$SYSUSERCONFIG test not passed' . "\n";
|
|
|
|
$state = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($ENV{GUI} eq "WNT") {
|
|
|
|
$comment = $comment . '$SYSBINDIR' . " not testable under windows\n";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$rc = system "./testbootstrap", "file://$ENV{PWD}", '-env:MYBOOTSTRAPTESTVALUE=$SYSBINDIR';
|
|
|
|
if (!$rc) {
|
|
|
|
$comment = $comment . '$SYSBINDIR test not passed' . "\n";
|
|
|
|
$state = 0;
|
|
|
|
}
|
|
|
|
}
|
2001-10-05 02:00:22 -05:00
|
|
|
|
|
|
|
if ($ENV{GUI} eq "WNT") {
|
|
|
|
$rc = system "./testbootstrap", "inherited_value", '-env:MYBOOTSTRAPTESTVALUE=$INHERITED_VALUE', "-env:iniName=ini.ini";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$rc = system "./testbootstrap", "inherited_value", '-env:MYBOOTSTRAPTESTVALUE=$INHERITED_VALUE', "-env:iniName=inirc";
|
|
|
|
}
|
|
|
|
if (!$rc) {
|
|
|
|
$comment = $comment . "inherited value not passed\n";
|
|
|
|
$state = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($ENV{GUI} eq "WNT") {
|
2002-01-07 09:16:14 -06:00
|
|
|
$rc = system "./testbootstrap", "not_overwritten", '-env:MYBOOTSTRAPTESTVALUE=$INHERITED_OVERWRITTEN_VALUE', "-env:iniName=ini.ini";
|
2001-10-05 02:00:22 -05:00
|
|
|
}
|
|
|
|
else {
|
2002-01-07 09:16:14 -06:00
|
|
|
$rc = system "./testbootstrap", "not_overwritten", '-env:MYBOOTSTRAPTESTVALUE=$INHERITED_OVERWRITTEN_VALUE', "-env:iniName=inirc";
|
2001-10-05 02:00:22 -05:00
|
|
|
}
|
|
|
|
if (!$rc) {
|
|
|
|
$comment = $comment . "inherited overwritten value not passed\n";
|
|
|
|
$state = 0;
|
|
|
|
}
|
|
|
|
|
2001-08-30 06:17:44 -05:00
|
|
|
|
2002-01-07 09:16:14 -06:00
|
|
|
$rc = system "./testbootstrap", "defaultvalue", "-env:INIFILENAME=", "-env:Default=defaultvalue", "-env:USEDEFAULT=1";
|
2001-08-30 06:17:44 -05:00
|
|
|
if (!$rc) {
|
2001-11-01 09:44:07 -06:00
|
|
|
$comment = $comment . "default test from parameter not passed\n";
|
2001-08-30 06:17:44 -05:00
|
|
|
$state = 0;
|
|
|
|
}
|
|
|
|
|
2001-11-01 09:44:07 -06:00
|
|
|
if ($ENV{GUI} eq "WNT") {
|
2002-01-07 09:16:14 -06:00
|
|
|
$rc = system "./testbootstrap", "defaultValue", "-env:iniName=default.ini", "-env:INIFILENAME=", "-env:USEDEFAULT=1";
|
2001-11-01 09:44:07 -06:00
|
|
|
}
|
|
|
|
else {
|
2002-01-07 09:16:14 -06:00
|
|
|
$rc = system "./testbootstrap", "defaultValue", "-env:iniName=defaultrc", "-env:INIFILENAME=", "-env:USEDEFAULT=1";
|
2001-11-01 09:44:07 -06:00
|
|
|
}
|
2001-08-30 06:17:44 -05:00
|
|
|
if (!$rc) {
|
2001-11-01 09:44:07 -06:00
|
|
|
$comment = $comment . "default test from custom ini not passed\n";
|
2001-08-30 06:17:44 -05:00
|
|
|
$state = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
# simple macro expansion
|
|
|
|
$rc = system "./testbootstrap",
|
|
|
|
"_first_second_third_",
|
|
|
|
"-env:FIRST=first",
|
|
|
|
"-env:SECOND=second",
|
|
|
|
"-env:THIRD=third",
|
|
|
|
'-env:MYBOOTSTRAPTESTVALUE=_${FIRST}_${SECOND}_${THIRD}_';
|
|
|
|
if (!$rc) {
|
|
|
|
$comment = $comment . "simple macro expansion test not passed\n";
|
|
|
|
$state = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
# simple quoting
|
|
|
|
$rc = system "./testbootstrap",
|
|
|
|
'_${FIRST}_${SECOND}_${THIRD}_',
|
|
|
|
"-env:FIRST=first",
|
|
|
|
"-env:SECOND=second",
|
|
|
|
"-env:THIRD=third",
|
|
|
|
'-env:MYBOOTSTRAPTESTVALUE=_\$\{FIRST\}_\$\{SECOND\}_\$\{THIRD\}_';
|
|
|
|
if (!$rc) {
|
|
|
|
$comment = $comment . "simple macro quoting test not passed\n";
|
|
|
|
$state = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
# simple ini access
|
|
|
|
$rc = system "./testbootstrap",
|
2001-11-01 09:44:07 -06:00
|
|
|
"TheIniKeysValue",
|
|
|
|
'-env:MYBOOTSTRAPTESTVALUE=${./bootstraptest.ini:TheIniKey}';
|
2001-08-30 06:17:44 -05:00
|
|
|
if (!$rc) {
|
|
|
|
$comment = $comment . "simple macro ini access test not passed\n";
|
|
|
|
$state = 0;
|
|
|
|
}
|
|
|
|
|
2001-11-01 09:44:07 -06:00
|
|
|
# simple profile access
|
|
|
|
$rc = system "./testbootstrap",
|
|
|
|
"TheKeysValue",
|
|
|
|
'-env:MYBOOTSTRAPTESTVALUE=${./bootstraptest.ini:TheSection:TheKey}';
|
|
|
|
if (!$rc) {
|
|
|
|
$comment = $comment . "simple macro profile access test not passed\n";
|
|
|
|
$state = 0;
|
|
|
|
}
|
2001-08-30 06:17:44 -05:00
|
|
|
|
2001-11-01 09:44:07 -06:00
|
|
|
# profile access with simple macro expansion
|
2001-08-30 06:17:44 -05:00
|
|
|
$rc = system "./testbootstrap",
|
|
|
|
"TheKeysValue",
|
|
|
|
"-env:ININAME=./bootstraptest.ini",
|
|
|
|
"-env:SECTIONNAME=TheSection",
|
|
|
|
"-env:KEYNAME=TheKey",
|
|
|
|
'-env:MYBOOTSTRAPTESTVALUE=${$ININAME:$SECTIONNAME:$KEYNAME}';
|
|
|
|
if (!$rc) {
|
2001-11-01 09:44:07 -06:00
|
|
|
$comment = $comment . "profile access with simple macro expansion test not passed\n";
|
2001-08-30 06:17:44 -05:00
|
|
|
$state = 0;
|
|
|
|
}
|
|
|
|
|
2001-11-01 09:44:07 -06:00
|
|
|
# profile access with complex macro expansion
|
2001-08-30 06:17:44 -05:00
|
|
|
$rc = system "./testbootstrap",
|
|
|
|
"TheKeysValue",
|
|
|
|
"-env:ININAME=./bootstraptest.ini",
|
|
|
|
'-env:MYBOOTSTRAPTESTVALUE=${$ININAME:${$ININAME:SecondSection:IndirectSection}:${$ININAME:SecondSection:IndirectKey}}';
|
|
|
|
if (!$rc) {
|
2001-11-01 09:44:07 -06:00
|
|
|
$comment = $comment . "profile access with complex macro expansion test not passed\n";
|
2001-08-30 06:17:44 -05:00
|
|
|
$state = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
# test no infinit recursion
|
|
|
|
if ($ENV{GUI} eq "WNT") {
|
|
|
|
$rc = system "./testbootstrap",
|
|
|
|
'"***RECURSION DETECTED***"',
|
|
|
|
'-env:MYBOOTSTRAPTESTVALUE=$MYBOOTSTRAPTESTVALUE';
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$rc = system "./testbootstrap",
|
|
|
|
'***RECURSION DETECTED***',
|
|
|
|
'-env:MYBOOTSTRAPTESTVALUE=$MYBOOTSTRAPTESTVALUE';
|
|
|
|
}
|
|
|
|
if (!$rc) {
|
|
|
|
$comment = $comment . "no infinit recursion test not passed\n";
|
|
|
|
$state = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
# test unicode
|
|
|
|
$rc = system "./testbootstrap",
|
|
|
|
"AAABBBCCC000",
|
|
|
|
'-env:MYBOOTSTRAPTESTVALUE=\u0041\u0041\u0041\u0042\u0042\u0042\u0043\u0043\u0043\u0030\u0030\u0030';
|
|
|
|
if (!$rc) {
|
|
|
|
$comment = $comment . "uncode not passed\n";
|
|
|
|
$state = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
print "**************************\n";
|
|
|
|
if($state) {
|
|
|
|
print "****** tests passed ******\n";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
print "**** tests NOT passed ****\n";
|
|
|
|
print "Commnent:\n", $comment, "\n";
|
|
|
|
}
|
|
|
|
print "**************************\n";
|
|
|
|
|
|
|
|
|
|
|
|
|