environment.xml revision 5688
2788N/A<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2788N/A<!DOCTYPE stax SYSTEM "/stax.dtd">
2788N/A<!--
2788N/A ! CDDL HEADER START
2788N/A !
2788N/A ! The contents of this file are subject to the terms of the
2788N/A ! Common Development and Distribution License, Version 1.0 only
2788N/A ! (the "License"). You may not use this file except in compliance
2788N/A ! with the License.
2788N/A !
2788N/A ! You can obtain a copy of the license at
2788N/A ! trunk/opends/resource/legal-notices/OpenDS.LICENSE
2788N/A ! or https://OpenDS.dev.java.net/OpenDS.LICENSE.
2788N/A ! See the License for the specific language governing permissions
2788N/A ! and limitations under the License.
2788N/A !
2788N/A ! When distributing Covered Code, include this CDDL HEADER in each
2788N/A ! file and include the License file at
2788N/A ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
2788N/A ! add the following below this CDDL HEADER, with the fields enclosed
2788N/A ! by brackets "[]" replaced with your own identifying information:
2788N/A ! Portions Copyright [yyyy] [name of copyright owner]
2788N/A !
2788N/A ! CDDL HEADER END
2788N/A !
5061N/A ! Copyright 2007-2010 Sun Microsystems, Inc.
6063N/A ! Portions Copyright 2011 ForgeRock AS.
2788N/A ! -->
2788N/A<stax>
2788N/A
3853N/A <function name="importSharedLibraries">
3853N/A <function-prolog>
3853N/A This function imports the shared function xml libraries.
3853N/A </function-prolog>
3853N/A
3853N/A <sequence>
3853N/A
3853N/A <!--- Import all the shared xml libraries -->
3853N/A
3853N/A <script>
3853N/A sharedLibs=[]
3853N/A sharedLibs.append('baselib.xml')
3853N/A sharedLibs.append('ldap.xml')
3853N/A sharedLibs.append('utils.xml')
3853N/A sharedLibs.append('stafcmd.xml')
3853N/A sharedLibs.append('staxcmd.xml')
3853N/A sharedLibs.append('dsadm.xml')
3853N/A sharedLibs.append('dsconfig.xml')
3853N/A sharedLibs.append('security.xml')
3853N/A sharedLibs.append('topology.xml')
3853N/A sharedLibs.append('signals.xml')
3853N/A sharedLibs.append('tools.xml')
3853N/A sharedLibs.append('webcontainer.xml')
3853N/A sharedLibs.append('snmp.xml')
6304N/A sharedLibs.append('sdk.xml')
6304N/A </script>
6304N/A
6304N/A <iterate var="sharedLib" in="sharedLibs">
6304N/A <import machine="STAF_LOCAL_HOSTNAME"
6304N/A file="'%s/%s' % (TESTS_FUNCTIONS_DIR,sharedLib)"/>
6304N/A </iterate>
6304N/A
6304N/A </sequence>
6304N/A
6304N/A </function>
6304N/A
6304N/A <function name="importPythonLibraries">
6304N/A <function-prolog>
6304N/A This function imports the Python libraries and objects,
6304N/A both standard and local shared ones.
6304N/A </function-prolog>
6304N/A
6304N/A <sequence>
6304N/A
6304N/A <!-- Load in any standard python libraries -->
6304N/A <script>
6304N/A import re
6304N/A import os
6304N/A import sys
6304N/A from org.python.core import PyString,PyList,PyDictionary
6304N/A </script>
6304N/A
6304N/A <!-- Load in any additional Java classes -->
6304N/A <script>
6304N/A import java.io.FileNotFoundException
6304N/A </script>
6304N/A
6304N/A <!-- Load in any standard python functions -->
6304N/A <script>
6304N/A from time import localtime,strftime
6304N/A </script>
6304N/A
6304N/A <!-- Load in the local shared python objects from libraries -->
6304N/A <script>
6304N/A sys.path.append("%s/shared/python" % TESTS_ROOT )
6304N/A from common import *
6304N/A from security import *
6304N/A from replication import *
6304N/A from snmp import *
6304N/A from schema import *
6304N/A from objects import *
6370N/A </script>
6370N/A
6370N/A
6370N/A </sequence>
6370N/A </function>
6370N/A
6370N/A
6370N/A
6370N/A
6370N/A
6370N/A <function name="initialiseGlobalVariables">
6370N/A <function-prolog>
6370N/A This function initialises a set of global variables.
6370N/A </function-prolog>
6370N/A
6370N/A <sequence>
6370N/A <!-- Default LDAP Server Object -->
6370N/A <script>
6370N/A server=directory_server()
6370N/A server.location = STAF_REMOTE_HOSTNAME
6370N/A server.host = DIRECTORY_INSTANCE_HOST
6370N/A server.port = DIRECTORY_INSTANCE_PORT
6370N/A server.adminport = DIRECTORY_INSTANCE_ADMIN_PORT
6370N/A server.dn = DIRECTORY_INSTANCE_DN
6370N/A server.password = DIRECTORY_INSTANCE_PSWD
6304N/A server.suffix = DIRECTORY_INSTANCE_SFX
6370N/A server.backend = DIRECTORY_INSTANCE_BE
6304N/A
6370N/A TestSuiteStartTime = STAXGlobal([])
6304N/A </script>
6304N/A
6304N/A <!-- Set the signal handlers -->
6304N/A <call function="'signals'"/>
6304N/A
6304N/A <!-- Initialize any global variables -->
6304N/A <script>
6304N/A True = 1
6304N/A False = 0
6304N/A
6304N/A STAXLogMessage = 1
6304N/A if is_windows_platform(STAF_REMOTE_HOSTNAME):
6304N/A fileExt='.bat'
6304N/A scriptExt='.bat'
6304N/A fileFolder='bat'
6304N/A pathSeparator=';'
6304N/A newLine='\r\n'
6304N/A else:
6304N/A fileExt=''
6304N/A scriptExt='.sh'
6304N/A fileFolder='bin'
6304N/A pathSeparator=':'
2788N/A newLine='\n'
4618N/A
2788N/A if DIRECTORY_INSTANCE_BIN != DIRECTORY_INSTANCE_DIR:
2788N/A IPS_PKG = True
4865N/A else:
2788N/A IPS_PKG = False
3853N/A
3853N/A CurrentTestPath={}
3853N/A DSInfoServersDict={}
2788N/A
2788N/A # threshold set so that functions such as getFile may not cause staf
2788N/A # process to run out of memory (value in bytes)
2788N/A MAX_READABLE_SIZE = 104800
2788N/A
5764N/A # this function return a well-formatted testcase name
5764N/A def getTestCaseName(name):
5764N/A return '%s: %s: %s' % (CurrentTestPath['group'],CurrentTestPath['suite'],name)
5764N/A
5764N/A DSCONFIG = 'dsconfig'
5764N/A DSREPLICATION = 'dsreplication'
5764N/A
5764N/A AdminUID = 'admin'
3853N/A AdminPswd = 'admin'
3853N/A
4153N/A # Replication configuration default names
2788N/A MultimasterSync = 'Multimaster Synchronization'
2788N/A MultimasterType = 'multimaster'
2788N/A
2788N/A # Replication execution mode variables: if not defined, set "random"
2788N/A # values:
2788N/A # (day of the month % 4) == 0 --> (split servers, eclmode n/a)
2788N/A # (day of the month % 4) == 1 --> (don't split, opends eclmode)
2788N/A # (day of the month % 4) == 2 --> (don't split, draft eclmode)
2788N/A # (day of the month % 4) == 3 --> (don't split, eclmode n/a)
2788N/A import time
2788N/A monthday = time.localtime()[2]
3853N/A rewriteConfigFile = False
3853N/A
3853N/A if REPLICATION_SPLIT_SERVERS == '':
3853N/A rewriteConfigFile = True
3853N/A oldSplitConfig = """REPLICATION_SPLIT_SERVERS = ''"""
3853N/A if monthday % 4 == 0:
3853N/A REPLICATION_SPLIT_SERVERS = 'true'
3853N/A else:
5551N/A REPLICATION_SPLIT_SERVERS = 'false'
5551N/A newSplitConfig = """REPLICATION_SPLIT_SERVERS = '%s'""" % \
5551N/A REPLICATION_SPLIT_SERVERS
5551N/A else:
5551N/A newSplitConfig = """REPLICATION_SPLIT_SERVERS = '%s'""" % \
5551N/A REPLICATION_SPLIT_SERVERS
2788N/A oldSplitConfig = newSplitConfig
2788N/A
2788N/A if REPLICATION_ECL_MODE == '':
2788N/A rewriteConfigFile = True
2788N/A oldEclmodeConfig = """REPLICATION_ECL_MODE = ''"""
4865N/A if monthday % 4 == 1:
2788N/A REPLICATION_ECL_MODE = 'opends'
2788N/A elif monthday % 4 == 2:
2788N/A REPLICATION_ECL_MODE = 'draft'
2788N/A else:
2788N/A REPLICATION_ECL_MODE = 'n/a'
2788N/A newEclmodeConfig = """REPLICATION_ECL_MODE = '%s'""" % \
2788N/A REPLICATION_ECL_MODE
2788N/A else:
2788N/A newEclmodeConfig = """REPLICATION_ECL_MODE = '%s'""" % \
2788N/A REPLICATION_ECL_MODE
2788N/A oldEclmodeConfig = newEclmodeConfig
4865N/A
2788N/A
2788N/A # Rewrite the randomly chosen variables in config.py file
2788N/A if rewriteConfigFile == True :
2788N/A import re
2788N/A splitRegEx = re.compile(oldSplitConfig)
4865N/A eclmodeRegEx = re.compile(oldEclmodeConfig)
2788N/A
2788N/A configFile = STAXJobScriptFiles[0]
2788N/A configInput = open(configFile, 'r')
2788N/A c0 = configInput.read()
2788N/A c1 = splitRegEx.sub(newSplitConfig, c0)
2788N/A content = eclmodeRegEx.sub(newEclmodeConfig, c1)
2788N/A configInput.close()
2788N/A
2788N/A configOutput = open(configFile,'w')
2788N/A configOutput.write(content)
2788N/A configOutput.close()
2788N/A
2788N/A # Create staf objects
2788N/A LOCAL_STAF_ROOT = test_env.staf(STAF_LOCAL_HOSTNAME).root
2788N/A REMOTE_STAF_ROOT = test_env.staf(STAF_REMOTE_HOSTNAME).root
2788N/A </script>
2788N/A
4865N/A </sequence>
2788N/A </function>
2788N/A
2788N/A <function name="GetDirectoryServerInformation">
2788N/A <function-prolog>
2788N/A This function gets information about the Directory Server
3194N/A </function-prolog>
4618N/A
4618N/A <try>
4618N/A
4618N/A <sequence>
4618N/A
4618N/A <script>
3951N/A InstanceInstallDir= '%s/%s' % (DIRECTORY_INSTANCE_DIR,OPENDSNAME)
3951N/A </script>
3951N/A
3951N/A <!-- Copy DS zip archive to remote host-->
3951N/A <message>
2788N/A 'Copy DS zip archive to %s %s.zip.' % (STAF_REMOTE_HOSTNAME,InstanceInstallDir)
2788N/A </message>
2788N/A <call function="'copyFile'">
2788N/A { 'srcfile' : '%s/%s' % (ZIPPATH,ZIPNAME),
2788N/A 'destfile' : '%s.zip' % InstanceInstallDir,
6370N/A 'remotehost' : STAF_REMOTE_HOSTNAME }
6370N/A </call>
6370N/A
6370N/A <if expr="RC != 0">
6370N/A <return>RC</return>
6370N/A </if>
6370N/A
6370N/A <!-- Install DS into temporary folder -->
6370N/A <message>
6370N/A 'Extract temporary DS zip archive to %s %s.' % (STAF_REMOTE_HOSTNAME,DIRECTORY_INSTANCE_DIR)
6370N/A </message>
6370N/A <call function="'unZipFile'">
6370N/A { 'location' : STAF_REMOTE_HOSTNAME,
6370N/A 'zipfile' : '%s.zip' % InstanceInstallDir,
6370N/A 'unzipdir' : '%s' % DIRECTORY_INSTANCE_DIR }
2788N/A </call>
6370N/A
6370N/A <if expr="RC != 0">
6370N/A <return>RC</return>
6370N/A </if>
6370N/A
2788N/A <!-- Get Directory Server Variables -->
2788N/A <call function="'GetDirectoryServerVars'">
6370N/A { 'location' : STAF_REMOTE_HOSTNAME,
6370N/A 'dsPath' : '%s/%s' % (DIRECTORY_INSTANCE_BIN,OPENDSNAME) }
6370N/A </call>
6370N/A
6370N/A <if expr="RC != 0">
6370N/A <throw exception="'TestExceptionResultFailed'">
6370N/A 'Invalid Result %s' % RC
6370N/A </throw>
6370N/A </if>
6370N/A
6371N/A <!-- Set Directory Server Variables -->
6371N/A <call function="'SetVar'">
6371N/A { 'location' : STAF_REMOTE_HOSTNAME,
6371N/A 'type' : 'shared',
6371N/A 'variable' : 'Job%s_ServerInfo=%s' % (STAXJobID,DSInfoServersDict) }
6371N/A </call>
6371N/A
6371N/A <if expr="RC != 0">
6371N/A <throw exception="'TestExceptionResultFailed'">
6371N/A 'Invalid Result %s' % RC
6371N/A </throw>
6371N/A </if>
6371N/A
6371N/A <!-- Uninstall DS from temporary folder -->
6371N/A <message>
6371N/A 'Remove temporary DS zip archive from %s %s' % (STAF_REMOTE_HOSTNAME,InstanceInstallDir)
6371N/A </message>
6371N/A
6371N/A <call function="'deleteFolder'">
6371N/A { 'location' : STAF_REMOTE_HOSTNAME ,
6370N/A 'foldername' : '%s' % InstanceInstallDir }
6370N/A </call>
6370N/A
2788N/A <call function="'deleteFile'">
2788N/A { 'location' : STAF_REMOTE_HOSTNAME ,
6370N/A 'filename' : '%s.zip' % InstanceInstallDir }
2788N/A </call>
5764N/A
5764N/A </sequence>
5764N/A
2788N/A <catch exception="'TestExceptionResultFailed'" typevar="eType" var="eInfo">
2788N/A <sequence>
2788N/A <message>'caught %s with %s' % (eType,eInfo)</message>
3853N/A <message>
3853N/A 'Remove temporary DS zip archive from %s %s' % (STAF_REMOTE_HOSTNAME,InstanceInstallDir)
3853N/A </message>
3853N/A <call function="'deleteFolder'">
5551N/A { 'location' : STAF_REMOTE_HOSTNAME ,
5551N/A 'foldername' : '%s' % InstanceInstallDir }
5551N/A </call>
5551N/A
2788N/A <call function="'deleteFile'">
2788N/A { 'location' : STAF_REMOTE_HOSTNAME ,
2788N/A 'filename' : '%s.zip' % InstanceInstallDir }
2788N/A </call>
2788N/A
2788N/A </sequence>
2788N/A </catch>
2788N/A
2788N/A </try>
2788N/A
2788N/A </function>
2788N/A
2788N/A <function name="SetFolders">
2788N/A <function-prolog>
2788N/A This function sets the folders to which test data are written.
2788N/A </function-prolog>
2788N/A <function-map-args>
2788N/A <function-arg-def name="sourceDir" type="required">
2788N/A <function-arg-description>
2788N/A A locally accessable directory to the tests source
2788N/A </function-arg-description>
2788N/A <function-arg-property name="type" value="structure"/>
2788N/A </function-arg-def>
4865N/A <function-arg-def name="localDir" type="required">
2788N/A <function-arg-description>
2788N/A A locally accessable directory to write test information
2788N/A </function-arg-description>
2788N/A <function-arg-property name="type" value="structure"/>
2788N/A </function-arg-def>
2788N/A <function-arg-def name="remoteDir" type="required">
2788N/A <function-arg-description>
2788N/A A remotely accessable directory to write test information
2788N/A </function-arg-description>
2788N/A <function-arg-property name="type" value="structure"/>
2788N/A </function-arg-def>
3194N/A </function-map-args>
4618N/A
3951N/A <sequence>
2788N/A
2788N/A <script>
2788N/A logs = test_env.logs(localDir)
2788N/A source = test_env.source(sourceDir,TESTS_TYPE)
2788N/A local = test_env.data(localDir)
6103N/A remote = test_env.data(remoteDir)
6103N/A
6103N/A if host_is_localhost(STAF_REMOTE_HOSTNAME):
6103N/A local.set_data(source.data)
6103N/A remote.set_data(source.data)
6103N/A </script>
6103N/A
6103N/A <message>'source.directory = %s' % source.directory</message>
6103N/A <message>'local.directory = %s' % local.directory</message>
6103N/A <message>'remote.directory = %s' % remote.directory</message>
6103N/A <message>'logs.directory = %s' % logs.directory</message>
6103N/A <message>'source.data = %s' % source.data</message>
6103N/A <message>'local.data = %s' % local.data</message>
6103N/A <message>'remote.data = %s' % remote.data</message>
6103N/A
6103N/A <return>
6103N/A local.directory
6103N/A </return>
6103N/A
6103N/A </sequence>
6103N/A
6103N/A </function>
6103N/A
6103N/A <function name="CreateFolders" scope="local">
6103N/A <function-prolog>
6103N/A This function sets the folders to which logs are written
6103N/A </function-prolog>
6103N/A
6103N/A <sequence>
6103N/A
6103N/A <!-- Create folders -->
6103N/A <message>'Create local folder %s' % logs.reports</message>
6103N/A <call function="'createFolder'">
6103N/A { 'location' : STAF_LOCAL_HOSTNAME,
6103N/A 'foldername' : '%s' % logs.reports }
6103N/A </call>
6103N/A
6103N/A <message>'Create local folder %s' % local.temp</message>
6103N/A <call function="'createFolder'">
6103N/A { 'location' : STAF_LOCAL_HOSTNAME,
6103N/A 'foldername' : '%s' % local.temp }
6103N/A </call>
6103N/A
6103N/A <message>'Create local folder %s' % logs.sut</message>
6103N/A <call function="'createFolder'">
6103N/A { 'location' : STAF_LOCAL_HOSTNAME,
6103N/A 'foldername' : '%s' % logs.sut }
6103N/A </call>
6103N/A
6103N/A <message>'Create local folder %s' % logs.tests</message>
6103N/A <call function="'createFolder'">
6103N/A { 'location' : STAF_LOCAL_HOSTNAME,
6103N/A 'foldername' : '%s' % logs.tests }
6103N/A </call>
6103N/A
6103N/A <message>'Create local folder %s' % local.testdata</message>
6103N/A <call function="'createFolder'">
6103N/A { 'location' : STAF_LOCAL_HOSTNAME,
6103N/A 'foldername' : '%s' % local.testdata }
6103N/A </call>
6103N/A
6103N/A <message>'Create remote folder %s' % remote.temp</message>
6103N/A <call function="'createFolder'">
6103N/A { 'location' : STAF_REMOTE_HOSTNAME,
6103N/A 'foldername' : '%s' % remote.temp }
6103N/A </call>
6103N/A
6103N/A </sequence>
6103N/A
6103N/A </function>
6103N/A
6103N/A <function name="loadGlobalEnvironment">
6103N/A <function-prolog>
6103N/A This function loads the environment (libraries, functions, variables)
6103N/A needed by the global test job farmer.
6103N/A </function-prolog>
6103N/A
6103N/A <sequence>
6103N/A
6103N/A <message>
6103N/A 'Load environment for test suite execution.'
6103N/A </message>
6103N/A
6103N/A <call function="'importSharedLibraries'"/>
6103N/A
6103N/A <call function="'importPythonLibraries'"/>
6103N/A
6103N/A <call function="'initialiseGlobalVariables'"/>
6103N/A
6103N/A <message>
6103N/A 'Remove files from previous runs under %s.' % DIRECTORY_INSTANCE_DIR
6103N/A </message>
6103N/A <call function="'deleteFolder'">
6103N/A { 'location' : STAF_REMOTE_HOSTNAME ,
6103N/A 'foldername' : '%s/%s' % (DIRECTORY_INSTANCE_DIR,OPENDSNAME) }
6103N/A </call>
6103N/A <call function="'createFolder'">
6103N/A { 'location' : STAF_REMOTE_HOSTNAME ,
6103N/A 'foldername' : '%s/%s' % (DIRECTORY_INSTANCE_DIR,OPENDSNAME) }
6103N/A </call>
6103N/A
6103N/A <call function="'GetDirectoryServerInformation'"/>
6103N/A
6103N/A <!-- Set variables to build unique path to store data -->
6103N/A <script>
6103N/A # Private
6103N/A logsArch=\
6103N/A DSInfo.getServerArch(DSInfo.ServerDict['system os'])
6103N/A logsOSName=\
6103N/A DSInfo.getServerOSName(DSInfo.ServerDict['system os'])
6103N/A logsOS='%s-%s' % (logsOSName,logsArch)
6103N/A logsJvm=\
6103N/A DSInfo.getServerJavaMajorMinor(DSInfo.ServerDict['java version'])
6103N/A </script>
6103N/A
6103N/A <call function="'SetFolders'">
6103N/A { 'sourceDir' : '%s' % TESTS_ROOT,
6103N/A 'localDir' : '%s' % LOGS_ROOT,
6103N/A 'remoteDir' : DIRECTORY_INSTANCE_DIR }
6103N/A </call>
6103N/A
6103N/A <call function="'SetVar'">
6103N/A { 'location' : STAF_REMOTE_HOSTNAME,
6103N/A 'type' : 'shared',
6103N/A 'variable' : 'Job%s_LogsDir=%s' % (STAXJobID,local.directory) }
6103N/A </call>
6103N/A
6103N/A <!-- Create the local folders to store data -->
6103N/A <call function="'CreateFolders'"/>
6103N/A
6103N/A <!-- Create folders -->
6103N/A <message>'Copy OpenDS css and png files under %s' % logs.reports</message>
6103N/A <call function="'copyFile'">
6103N/A {
6103N/A 'srcfile' : '%s/opends.css' % TESTS_RESOURCE_DIR,
6103N/A 'destfile' : '%s/opends.css' % logs.reports
6103N/A }
6103N/A </call>
6103N/A <call function="'copyFile'">
6103N/A {
6103N/A 'srcfile' : '%s/opendj_logo.png' % TESTS_RESOURCE_DIR,
6103N/A 'destfile' : '%s/opendj_logo.png' % logs.reports
6103N/A }
6103N/A </call>
6103N/A
6103N/A <message>'Copy xsl files under %s' % logs.reports</message>
6103N/A <call function="'copyFile'">
6103N/A {
6103N/A 'srcfile' : '%s/gen-groups-report.xsl' % TESTS_XSL_DIR,
6103N/A 'destfile' : '%s/gen-groups-report.xsl' % logs.reports
6103N/A }
6103N/A </call>
6103N/A </sequence>
6103N/A
6103N/A </function>
6103N/A
6103N/A <function name="loadJobEnvironment">
6103N/A <function-prolog>
2788N/A This function loads the environment (libraries, functions, variables)
2788N/A needed by the test jobs.
2788N/A </function-prolog>
2788N/A <function-map-args>
2788N/A <function-arg-def name="parent" type="optional" default="''">
2788N/A <function-arg-description>
2788N/A Location of target host
2788N/A </function-arg-description>
2788N/A <function-arg-property name="type" value="integer"/>
2788N/A </function-arg-def>
2788N/A </function-map-args>
2788N/A
4865N/A <sequence>
2788N/A
2788N/A <message>
2788N/A 'Load environment for test suite execution.'
2788N/A </message>
2788N/A
2788N/A <!-- All exceptions are logged to user log -->
2788N/A <script>
2788N/A STAXLogMessage = 1
2788N/A </script>
2788N/A
4865N/A <call function="'importSharedLibraries'"/>
2788N/A
2788N/A <call function="'importPythonLibraries'"/>
2788N/A
2788N/A <call function="'initialiseGlobalVariables'"/>
2788N/A
2788N/A <call function="'GetVar'">
2788N/A { 'location' : STAF_REMOTE_HOSTNAME,
2788N/A 'type' : 'shared',
2788N/A 'variable' : 'Job%s_LogsDir' % parent }
2788N/A </call>
2788N/A
2788N/A <!-- TODO: defend against mangled STAFResult -->
2788N/A <script>
2788N/A parentsLogDir=STAFResult
2788N/A </script>
2788N/A
2788N/A <message>'%s' % parentsLogDir</message>
2788N/A
2788N/A <call function="'SetFolders'">
2788N/A { 'sourceDir' : '%s' % TESTS_ROOT,
2788N/A 'localDir' : '%s' % parentsLogDir,
2788N/A 'remoteDir' : DIRECTORY_INSTANCE_DIR }
2788N/A </call>
3194N/A
3194N/A </sequence>
3194N/A
3194N/A </function>
3194N/A
3194N/A
3194N/A</stax>
3951N/A