5693N/A<?xml version="1.0" encoding="UTF-8" standalone="no"?>
5693N/A<!DOCTYPE stax SYSTEM "/shared/stax.dtd">
5693N/A<!--
5693N/A ! CDDL HEADER START
5693N/A !
5693N/A ! The contents of this file are subject to the terms of the
5693N/A ! Common Development and Distribution License, Version 1.0 only
5693N/A ! (the "License"). You may not use this file except in compliance
5693N/A ! with the License.
6982N/A !
6982N/A ! You can obtain a copy of the license at legal-notices/CDDLv1_0.txt
5693N/A ! or http://forgerock.org/license/CDDLv1.0.html.
5693N/A ! See the License for the specific language governing permissions
5693N/A ! and limitations under the License.
6982N/A !
5693N/A ! When distributing Covered Code, include this CDDL HEADER in each
6982N/A ! file and include the License file at legal-notices/CDDLv1_0.txt.
6982N/A ! If applicable, add the following below this CDDL HEADER, with the
6982N/A ! fields enclosed by brackets "[]" replaced with your own identifying
6982N/A ! information:
5693N/A ! Portions Copyright [yyyy] [name of copyright owner]
5693N/A !
5693N/A ! CDDL HEADER END
5693N/A !
5693N/A ! Copyright 2012 ForgeRock AS.
5693N/A ! -->
5693N/A<stax>
5693N/A
5693N/A <!-- Definition of Test Cases -->
5693N/A
5693N/A <!--- Test Cases : ImportLDIF: Binary Attributes -->
5693N/A
5693N/A <!--- Test Case information
5693N/A #@TestMarker ImportLDIF: Binary Attributes
5693N/A #@TestName ImportLDIF: Binary Attributes
5693N/A #@TestID importldif_binary_attributes_001
5693N/A #@TestPurpose Verify basic 100k import LDIF operations
5693N/A #@TestPreamble Common Setup
5693N/A #@TestStep Make template for makeldif.
5693N/A #@TestStep Create ldif file for import using makeldif.
5693N/A #@TestStep Import the LDIF file.
5693N/A #@TestStep Start the Directory Server.
5693N/A #@TestStep Verify import LDIF operations.
5693N/A #@TestStep Delete the ldif file.
5693N/A #@TestStep Delete the template file.
5693N/A #@TestPostamble Common Cleanup
5693N/A #@TestResult Test is successful if the result code is 0
5693N/A -->
5693N/A <function name="importldif_binary_attributes_001" scope="local">
5693N/A <testcase name="getTestCaseName('Binary Attributes 100k')">
5693N/A <sequence>
5693N/A <try>
5693N/A <sequence>
5693N/A
5693N/A <call function="'testCase_Preamble'"/>
5693N/A <message>
5693N/A 'Test Name = %s' % STAXCurrentTestcase
5693N/A </message>
5693N/A
5693N/A <script>
5693N/A timerDuration = '620m'
5693N/A numberOfEntries = 100000
5693N/A totalEntries = numberOfEntries + 2
5693N/A
5693N/A ldifTemplate = '%s/%s_entries.template' % (remote.temp, numberOfEntries)
5693N/A ldifFile = '%s/%s_entries.ldif' % (remote.temp, numberOfEntries)
5693N/A </script>
5693N/A
5693N/A <!-- StopDS -->
5693N/A <call function="'StopDsWithScript'">
5693N/A { 'location' : STAF_REMOTE_HOSTNAME }
5693N/A </call>
5693N/A
5693N/A <!-- Check if 'ldifFile' exists -->
5693N/A <call function="'GetEntry'">
5693N/A {
5693N/A 'location' : STAF_REMOTE_HOSTNAME ,
5693N/A 'entry' : ldifFile ,
5693N/A 'attribute' : 'TYPE'
5693N/A }
5693N/A </call>
5693N/A <if expr="RC == 48">
5693N/A <sequence>
5693N/A
5693N/A <call function="'testStep'">
5693N/A { 'stepMessage' : 'Make template for makeldif.' }
5693N/A </call>
5693N/A
5693N/A <call function="'MakeAMakeLdifTemplate'">
5693N/A {
5693N/A 'numEntries' : numberOfEntries ,
5693N/A 'additionalAttributes' : True ,
5693N/A 'templateFile' : ldifTemplate ,
5693N/A 'templateLocation' : STAF_REMOTE_HOSTNAME
5693N/A }
5693N/A </call>
5693N/A
5693N/A <call function="'testStep'">
5693N/A { 'stepMessage' : 'Create ldif file for import using makeldif.' }
5693N/A </call>
5693N/A
5693N/A <call function="'MakeLdifWithScript'">
5693N/A {
5693N/A 'location' : STAF_REMOTE_HOSTNAME ,
5693N/A 'templateFile' : ldifTemplate ,
5693N/A 'ldifFile' : ldifFile
5693N/A }
5693N/A </call>
5693N/A </sequence>
5693N/A <else>
5693N/A <call function="'testStep'">
5693N/A { 'stepMessage' : 'Template and ldif file already created.' }
5693N/A </call>
5693N/A </else>
5693N/A </if>
5693N/A
5693N/A <call function="'testStep'">
5693N/A { 'stepMessage' : 'Import the LDIF file.' }
5693N/A </call>
5693N/A
5693N/A <call function="'ImportLdifWithScript'">
5693N/A {
5693N/A 'location' : STAF_REMOTE_HOSTNAME ,
5693N/A 'ldifFile' : ldifFile ,
5693N/A 'backEnd' : 'userRoot'
5693N/A }
5693N/A </call>
5693N/A
5693N/A <script>
5693N/A returnString = STAXResult[0][1]
5693N/A msg = 'Processed %s entries, imported %s, skipped 0, rejected 0' \
5693N/A % (totalEntries,totalEntries)
5693N/A </script>
5693N/A
5693N/A <call function="'checktestString'">
5693N/A {
5693N/A 'returnString' : returnString ,
5693N/A 'expectedString' : msg
5693N/A }
5693N/A </call>
5693N/A
5693N/A <call function="'testStep'">
5693N/A { 'stepMessage' : 'Start the Directory Server.' }
5693N/A </call>
5693N/A
5693N/A <call function="'StartDsWithScript'">
5693N/A { 'location' : STAF_REMOTE_HOSTNAME }
5693N/A </call>
5693N/A
5693N/A <script>
5693N/A returnString = STAXResult[0][1]
5693N/A msg = 'The database backend userRoot containing %s entries has started' \
5693N/A % totalEntries
5693N/A </script>
5693N/A
5693N/A <call function="'checktestString'">
5693N/A {
5693N/A 'returnString' : returnString ,
5693N/A 'expectedString' : msg
5693N/A }
5693N/A </call>
5693N/A
5693N/A <!--- Check that DS started -->
5693N/A <call function="'isAlive'">
5693N/A {
5693N/A 'noOfLoops' : 10 ,
5693N/A 'noOfMilliSeconds' : 5000
5693N/A }
5693N/A </call>
5693N/A
5693N/A <call function="'testStep'">
5693N/A { 'stepMessage' : 'Verify import LDIF operations.' }
5693N/A </call>
5693N/A
5693N/A <call function="'checkImport'">
5693N/A {
5693N/A 'expectedEntries' : ['uid=user.0,ou=People,dc=com' ,
5693N/A 'uid=user.10000,ou=People,dc=com' ,
5693N/A 'uid=user.20000,ou=People,dc=com' ,
5693N/A 'uid=user.30000,ou=People,dc=com' ,
5693N/A 'uid=user.40000,ou=People,dc=com' ,
5693N/A 'uid=user.50000,ou=People,dc=com' ,
5693N/A 'uid=user.60000,ou=People,dc=com' ,
5693N/A 'uid=user.70000,ou=People,dc=com' ,
5693N/A 'uid=user.80000,ou=People,dc=com' ,
5693N/A 'uid=user.90000,ou=People,dc=com' ,
5693N/A 'uid=user.99999,ou=People,dc=com'] ,
5693N/A 'startDS' : 'no'
5693N/A }
5693N/A </call>
5693N/A
5693N/A <call function="'testStep'">
5693N/A { 'stepMessage' : 'Delete the ldif file.' }
5693N/A </call>
5693N/A
5693N/A <call function="'deleteFile'">
5693N/A {
5693N/A 'location' : STAF_REMOTE_HOSTNAME,
5693N/A 'filename' : ldifFile
5693N/A }
5693N/A </call>
5693N/A
5693N/A <call function="'testStep'">
5693N/A { 'stepMessage' : 'Delete the template file.' }
5693N/A </call>
5693N/A
5693N/A <call function="'deleteFile'">
5693N/A {
5693N/A 'location' : STAF_REMOTE_HOSTNAME,
5693N/A 'filename' : ldifTemplate
5693N/A }
5693N/A </call>
5693N/A
5693N/A </sequence>
5693N/A
5693N/A <catch exception="'STAXException'" typevar="eType" var="eInfo">
5693N/A <message log="1" level="'fatal'">
5693N/A '%s: Test failed. eInfo(%s)' % (eType,eInfo)
5693N/A </message>
5693N/A </catch>
5693N/A <finally>
5693N/A <sequence>
5693N/A <call function="'testCase_Postamble'"/>
5693N/A </sequence>
5693N/A </finally>
5693N/A </try>
5693N/A </sequence>
5693N/A </testcase>
5693N/A </function>
5693N/A
5693N/A <!--- Test Case information
5693N/A #@TestMarker ImportLDIF: Binary Attributes
5693N/A #@TestName ImportLDIF: Binary Attributes
5693N/A #@TestID importldif_binary_attributes_002
5693N/A #@TestPurpose Verify basic 6m import LDIF operations
5693N/A #@TestPreamble Common Setup
5693N/A #@TestStep Make template for makeldif.
5693N/A #@TestStep Create ldif file for import using makeldif.
5693N/A #@TestStep Import the LDIF file.
5693N/A #@TestStep Start the Directory Server.
5693N/A #@TestStep Verify import LDIF operations.
5693N/A #@TestStep Delete the ldif file.
5693N/A #@TestStep Delete the template file.
5693N/A #@TestPostamble Common Cleanup
5693N/A #@TestResult Test is successful if the result code is 0
5693N/A -->
5693N/A <function name="importldif_binary_attributes_002" scope="local">
5693N/A <testcase name="getTestCaseName('Binary Attributes 6m')">
5693N/A <sequence>
5693N/A <try>
5693N/A <sequence>
5693N/A
5693N/A <call function="'testCase_Preamble'"/>
5693N/A <message>
5693N/A 'Test Name = %s' % STAXCurrentTestcase
5693N/A </message>
5693N/A
5693N/A <script>
5693N/A timerDuration = '620m'
5693N/A numberOfEntries = 6000000
5693N/A totalEntries = numberOfEntries + 2
5693N/A
5693N/A ldifTemplate = '%s/%s_entries.template' % (remote.temp, numberOfEntries)
5693N/A ldifFile = '%s/%s_entries.ldif' % (remote.temp, numberOfEntries)
5693N/A </script>
5693N/A
5693N/A <!-- StopDS -->
5693N/A <call function="'StopDsWithScript'">
5693N/A { 'location' : STAF_REMOTE_HOSTNAME }
5693N/A </call>
5693N/A
5693N/A <message>
5693N/A 'Update java.properties file %s/%s/config/java.properties' \
5693N/A % (DIRECTORY_INSTANCE_DIR,OPENDSNAME)
5693N/A </message>
5693N/A
5693N/A <call function="'copyFile'">
5693N/A {
5693N/A 'location' : STAF_REMOTE_HOSTNAME ,
5693N/A 'srcfile' : '%s/%s/config/java.properties' % (DIRECTORY_INSTANCE_DIR,OPENDSNAME) ,
5693N/A 'destfile' : '%s/java.properties' % local.temp ,
5693N/A 'remotehost' : STAXServiceMachine
5693N/A }
5693N/A </call>
5693N/A <script>
5693N/A rc = java_properties('%s/java.properties' % local.temp,
5693N/A 'import-ldif.offline',
5693N/A [ "-server", "-Xms2048m", "-Xmx3072m" ])
5693N/A </script>
5693N/A <message>'RC %s' % rc</message>
5693N/A <call function="'copyFile'">
5693N/A {
5693N/A 'location' : STAXServiceMachine ,
5693N/A 'srcfile' : '%s/java.properties' % local.temp ,
5693N/A 'destfile' : '%s/%s/config/java.properties' % (DIRECTORY_INSTANCE_DIR,OPENDSNAME) ,
5693N/A 'remotehost' : STAF_REMOTE_HOSTNAME
5693N/A }
5693N/A </call>
5693N/A
5693N/A <call function="'dsJavaPropertiesWithScript'">
5693N/A { 'location' : STAF_REMOTE_HOSTNAME }
5693N/A </call>
5693N/A
5693N/A <!-- Check if 'ldifFile' exists -->
5693N/A <call function="'GetEntry'">
5693N/A {
5693N/A 'location' : STAF_REMOTE_HOSTNAME ,
5693N/A 'entry' : ldifFile ,
5693N/A 'attribute' : 'TYPE'
5693N/A }
5693N/A </call>
5693N/A <if expr="RC == 48">
5693N/A <sequence>
5693N/A
5693N/A <call function="'testStep'">
5693N/A { 'stepMessage' : 'Make template for makeldif.' }
5693N/A </call>
5693N/A
5693N/A <call function="'MakeAMakeLdifTemplate'">
5693N/A {
5693N/A 'numEntries' : numberOfEntries ,
5693N/A 'additionalAttributes' : True ,
5693N/A 'templateFile' : ldifTemplate ,
5693N/A 'templateLocation' : STAF_REMOTE_HOSTNAME
5693N/A }
5693N/A </call>
5693N/A
5693N/A <call function="'testStep'">
5693N/A { 'stepMessage' : 'Create ldif file for import using makeldif.' }
5693N/A </call>
5693N/A
5693N/A <call function="'MakeLdifWithScript'">
5693N/A {
5693N/A 'location' : STAF_REMOTE_HOSTNAME ,
5693N/A 'templateFile' : ldifTemplate ,
5693N/A 'ldifFile' : ldifFile
5693N/A }
5693N/A </call>
5693N/A </sequence>
5693N/A <else>
5693N/A <call function="'testStep'">
5693N/A { 'stepMessage' : 'Template and ldif file already created.' }
5693N/A </call>
5693N/A </else>
5693N/A </if>
5693N/A
5693N/A <call function="'testStep'">
5693N/A { 'stepMessage' : 'Import the LDIF file.' }
5693N/A </call>
5693N/A
5693N/A <call function="'ImportLdifWithScript'">
5693N/A {
5693N/A 'location' : STAF_REMOTE_HOSTNAME ,
5693N/A 'ldifFile' : ldifFile ,
5693N/A 'backEnd' : 'userRoot'
5693N/A }
5693N/A </call>
5693N/A
5693N/A <script>
5693N/A returnString = STAXResult[0][1]
5693N/A msg = 'Processed %s entries, imported %s, skipped 0, rejected 0' \
5693N/A % (totalEntries,totalEntries)
5693N/A </script>
5693N/A
5693N/A <call function="'checktestString'">
5693N/A {
5693N/A 'returnString' : returnString ,
5693N/A 'expectedString' : msg
5693N/A }
5693N/A </call>
5693N/A
5693N/A <call function="'testStep'">
5693N/A { 'stepMessage' : 'Start the Directory Server.' }
5693N/A </call>
5693N/A
5693N/A <call function="'StartDsWithScript'">
5693N/A { 'location' : STAF_REMOTE_HOSTNAME }
5693N/A </call>
5693N/A
5693N/A <script>
5693N/A returnString = STAXResult[0][1]
5693N/A msg = 'The database backend userRoot containing %s entries has started' \
5693N/A % totalEntries
5693N/A </script>
5693N/A
5693N/A <call function="'checktestString'">
5693N/A {
5693N/A 'returnString' : returnString ,
5693N/A 'expectedString' : msg
5693N/A }
5693N/A </call>
5693N/A
5693N/A <!--- Check that DS started -->
5693N/A <call function="'isAlive'">
5693N/A {
5693N/A 'noOfLoops' : 10 ,
5693N/A 'noOfMilliSeconds' : 5000
5693N/A }
5693N/A </call>
5693N/A
5693N/A <call function="'testStep'">
5693N/A { 'stepMessage' : 'Verify import LDIF operations.' }
5693N/A </call>
5693N/A
5693N/A <call function="'checkImport'">
5693N/A {
5693N/A 'expectedEntries' : ['uid=user.0,ou=People,dc=com' ,
5693N/A 'uid=user.1000000,ou=People,dc=com' ,
5693N/A 'uid=user.1500000,ou=People,dc=com' ,
5693N/A 'uid=user.2000000,ou=People,dc=com' ,
5693N/A 'uid=user.2500000,ou=People,dc=com' ,
5693N/A 'uid=user.3000000,ou=People,dc=com' ,
5693N/A 'uid=user.3500000,ou=People,dc=com' ,
5693N/A 'uid=user.4000000,ou=People,dc=com' ,
5693N/A 'uid=user.4500000,ou=People,dc=com' ,
5693N/A 'uid=user.5000000,ou=People,dc=com' ,
5693N/A 'uid=user.5999999,ou=People,dc=com'] ,
5693N/A 'startDS' : 'no'
5693N/A }
5693N/A </call>
5693N/A
5693N/A <call function="'testStep'">
5693N/A { 'stepMessage' : 'Delete the ldif file.' }
5693N/A </call>
5693N/A
5693N/A <call function="'deleteFile'">
5693N/A {
5693N/A 'location' : STAF_REMOTE_HOSTNAME,
5693N/A 'filename' : ldifFile
5693N/A }
5693N/A </call>
5693N/A
5693N/A <call function="'testStep'">
5693N/A { 'stepMessage' : 'Delete the template file.' }
5693N/A </call>
5693N/A
5693N/A <call function="'deleteFile'">
5693N/A {
5693N/A 'location' : STAF_REMOTE_HOSTNAME,
5693N/A 'filename' : ldifTemplate
5693N/A }
5693N/A </call>
5693N/A
5693N/A </sequence>
5693N/A
5693N/A <catch exception="'STAXException'" typevar="eType" var="eInfo">
5693N/A <message log="1" level="'fatal'">
5693N/A '%s: Test failed. eInfo(%s)' % (eType,eInfo)
5693N/A </message>
5693N/A </catch>
5693N/A <finally>
5693N/A <sequence>
5693N/A <call function="'testCase_Postamble'"/>
5693N/A </sequence>
5693N/A </finally>
5693N/A </try>
5693N/A </sequence>
5693N/A </testcase>
5693N/A </function>
5693N/A
5693N/A <!--- Test Case information
5693N/A #@TestMarker ImportLDIF: Binary Attributes
5693N/A #@TestName ImportLDIF: Binary Attributes
5693N/A #@TestID importldif_binary_attributes_003
5693N/A #@TestPurpose Verify basic 10m import LDIF operations
5693N/A #@TestPreamble Common Setup
5693N/A #@TestStep Make template for makeldif.
5693N/A #@TestStep Create ldif file for import using makeldif.
5693N/A #@TestStep Import the LDIF file.
5693N/A #@TestStep Start the Directory Server.
5693N/A #@TestStep Verify import LDIF operations.
5693N/A #@TestStep Delete the ldif file.
5693N/A #@TestStep Delete the template file.
5693N/A #@TestPostamble Common Cleanup
5693N/A #@TestResult Test is successful if the result code is 0
5693N/A -->
5693N/A <function name="importldif_binary_attributes_003" scope="local">
5693N/A <testcase name="getTestCaseName('Binary Attributes 10m')">
5693N/A <sequence>
5693N/A <try>
5693N/A <sequence>
5693N/A
5693N/A <call function="'testCase_Preamble'"/>
5693N/A <message>
5693N/A 'Test Name = %s' % STAXCurrentTestcase
5693N/A </message>
5693N/A
5693N/A <script>
5693N/A timerDuration = '620m'
5693N/A numberOfEntries = 10000000
5693N/A totalEntries = numberOfEntries + 2
5693N/A
5693N/A ldifTemplate = '%s/%s_entries.template' % (remote.temp, numberOfEntries)
5693N/A ldifFile = '%s/%s_entries.ldif' % (remote.temp, numberOfEntries)
5693N/A </script>
5693N/A
5693N/A <message>
5693N/A 'Import Ldif: Binary Attribute: Create custom indexes'
5693N/A </message>
5693N/A
5693N/A <call function="'dsconfig'">
5693N/A {
5693N/A 'dsInstanceHost' : DIRECTORY_INSTANCE_HOST ,
5693N/A 'dsInstanceDn' : DIRECTORY_INSTANCE_DN ,
5693N/A 'dsInstancePswd' : DIRECTORY_INSTANCE_PSWD ,
5693N/A 'subcommand' : 'create-local-db-index' ,
5693N/A 'objectType' : 'backend-name' ,
5693N/A 'objectName' : DIRECTORY_INSTANCE_BE ,
5693N/A 'optionsString' : '--index-name st --set index-type:equality --set index-type:substring'
5693N/A }
5693N/A </call>
5693N/A
5693N/A <call function="'dsconfig'">
5693N/A {
5693N/A 'dsInstanceHost' : DIRECTORY_INSTANCE_HOST ,
5693N/A 'dsInstanceDn' : DIRECTORY_INSTANCE_DN ,
5693N/A 'dsInstancePswd' : DIRECTORY_INSTANCE_PSWD ,
5693N/A 'subcommand' : 'create-local-db-index' ,
5693N/A 'objectType' : 'backend-name' ,
5693N/A 'objectName' : DIRECTORY_INSTANCE_BE ,
5693N/A 'optionsString' : '--index-name l --set index-type:presence --set index-type:substring'
5693N/A }
5693N/A </call>
5693N/A
5693N/A <!-- StopDS -->
5693N/A <call function="'StopDsWithScript'">
5693N/A { 'location' : STAF_REMOTE_HOSTNAME }
5693N/A </call>
5693N/A
5693N/A <message>
5693N/A 'Update java.properties file %s/%s/config/java.properties' \
5693N/A % (DIRECTORY_INSTANCE_DIR,OPENDSNAME)
5693N/A </message>
5693N/A
5693N/A <call function="'copyFile'">
5693N/A {
5693N/A 'location' : STAF_REMOTE_HOSTNAME ,
5693N/A 'srcfile' : '%s/%s/config/java.properties' % (DIRECTORY_INSTANCE_DIR,OPENDSNAME) ,
5693N/A 'destfile' : '%s/java.properties' % local.temp ,
5693N/A 'remotehost' : STAXServiceMachine
5693N/A }
5693N/A </call>
5693N/A <script>
5693N/A rc = java_properties('%s/java.properties' % local.temp,
5693N/A 'import-ldif.offline',
5693N/A [ "-server", "-Xms2048m", "-Xmx3072m" ])
5693N/A </script>
5693N/A <message>'RC %s' % rc</message>
5693N/A <call function="'copyFile'">
5693N/A {
5693N/A 'location' : STAXServiceMachine ,
5693N/A 'srcfile' : '%s/java.properties' % local.temp ,
5693N/A 'destfile' : '%s/%s/config/java.properties' % (DIRECTORY_INSTANCE_DIR,OPENDSNAME) ,
5693N/A 'remotehost' : STAF_REMOTE_HOSTNAME
5693N/A }
5693N/A </call>
5693N/A
5693N/A <call function="'dsJavaPropertiesWithScript'">
5693N/A { 'location' : STAF_REMOTE_HOSTNAME }
5693N/A </call>
5693N/A
5693N/A <!-- Check if 'ldifFile' exists -->
5693N/A <call function="'GetEntry'">
5693N/A {
5693N/A 'location' : STAF_REMOTE_HOSTNAME ,
5693N/A 'entry' : ldifFile ,
5693N/A 'attribute' : 'TYPE'
5693N/A }
5693N/A </call>
5693N/A <if expr="RC == 48">
5693N/A <sequence>
5693N/A
5693N/A <call function="'testStep'">
5693N/A { 'stepMessage' : 'Make template for makeldif.' }
5693N/A </call>
5693N/A
5693N/A <call function="'MakeAMakeLdifTemplate'">
5693N/A {
5693N/A 'numEntries' : numberOfEntries ,
5693N/A 'additionalAttributes' : True ,
5693N/A 'templateFile' : ldifTemplate ,
5693N/A 'templateLocation' : STAF_REMOTE_HOSTNAME
5693N/A }
5693N/A </call>
5693N/A
5693N/A <call function="'testStep'">
5693N/A { 'stepMessage' : 'Create ldif file for import using makeldif.' }
5693N/A </call>
5693N/A
5693N/A <call function="'MakeLdifWithScript'">
5693N/A {
5693N/A 'location' : STAF_REMOTE_HOSTNAME ,
5693N/A 'templateFile' : ldifTemplate ,
5693N/A 'ldifFile' : ldifFile
5693N/A }
5693N/A </call>
5693N/A </sequence>
5693N/A <else>
5693N/A <call function="'testStep'">
5693N/A { 'stepMessage' : 'Template and ldif file already created.' }
5693N/A </call>
5693N/A </else>
5693N/A </if>
5693N/A
5693N/A <call function="'testStep'">
5693N/A { 'stepMessage' : 'Import the LDIF file.' }
5693N/A </call>
5693N/A
5693N/A <call function="'ImportLdifWithScript'">
5693N/A {
5693N/A 'location' : STAF_REMOTE_HOSTNAME ,
5693N/A 'ldifFile' : ldifFile ,
5693N/A 'backEnd' : 'userRoot'
5693N/A }
5693N/A </call>
5693N/A
5693N/A <script>
5693N/A returnString = STAXResult[0][1]
5693N/A msg = 'Processed %s entries, imported %s, skipped 0, rejected 0' \
5693N/A % (totalEntries,totalEntries)
5693N/A </script>
5693N/A
5693N/A <call function="'checktestString'">
5693N/A {
5693N/A 'returnString' : returnString ,
5693N/A 'expectedString' : msg
5693N/A }
5693N/A </call>
5693N/A
5693N/A <call function="'testStep'">
5693N/A { 'stepMessage' : 'Start the Directory Server.' }
5693N/A </call>
5693N/A
5693N/A <call function="'StartDsWithScript'">
5693N/A { 'location' : STAF_REMOTE_HOSTNAME }
5693N/A </call>
5693N/A
5693N/A <script>
5693N/A returnString = STAXResult[0][1]
5693N/A msg = 'The database backend userRoot containing %s entries has started' \
5693N/A % totalEntries
5693N/A </script>
5693N/A
5693N/A <call function="'checktestString'">
5693N/A {
5693N/A 'returnString' : returnString ,
5693N/A 'expectedString' : msg
5693N/A }
5693N/A </call>
5693N/A
5693N/A <!--- Check that DS started -->
5693N/A <call function="'isAlive'">
5693N/A {
5693N/A 'noOfLoops' : 10 ,
5693N/A 'noOfMilliSeconds' : 5000
5693N/A }
5693N/A </call>
5693N/A
5693N/A <call function="'testStep'">
5693N/A { 'stepMessage' : 'Verify import LDIF operations.' }
5693N/A </call>
5693N/A
5693N/A <call function="'checkImport'">
5693N/A {
5693N/A 'expectedEntries' : ['uid=user.0,ou=People,dc=com' ,
5693N/A 'uid=user.1000000,ou=People,dc=com' ,
5693N/A 'uid=user.1500000,ou=People,dc=com' ,
5693N/A 'uid=user.2000000,ou=People,dc=com' ,
5693N/A 'uid=user.2500000,ou=People,dc=com' ,
5693N/A 'uid=user.3000000,ou=People,dc=com' ,
5693N/A 'uid=user.3500000,ou=People,dc=com' ,
5693N/A 'uid=user.4000000,ou=People,dc=com' ,
5693N/A 'uid=user.4500000,ou=People,dc=com' ,
5693N/A 'uid=user.5000000,ou=People,dc=com' ,
5693N/A 'uid=user.5999999,ou=People,dc=com'] ,
5693N/A 'startDS' : 'no'
5693N/A }
5693N/A </call>
5693N/A
5693N/A <call function="'testStep'">
5693N/A { 'stepMessage' : 'Delete the ldif file.' }
5693N/A </call>
5693N/A
5693N/A <call function="'deleteFile'">
5693N/A {
5693N/A 'location' : STAF_REMOTE_HOSTNAME,
5693N/A 'filename' : ldifFile
5693N/A }
5693N/A </call>
5693N/A
5693N/A <call function="'testStep'">
5693N/A { 'stepMessage' : 'Delete the template file.' }
5693N/A </call>
5693N/A
5693N/A <call function="'deleteFile'">
5693N/A {
5693N/A 'location' : STAF_REMOTE_HOSTNAME,
5693N/A 'filename' : ldifTemplate
5693N/A }
5693N/A </call>
5693N/A
5693N/A </sequence>
5693N/A
5693N/A <catch exception="'STAXException'" typevar="eType" var="eInfo">
5693N/A <message log="1" level="'fatal'">
5693N/A '%s: Test failed. eInfo(%s)' % (eType,eInfo)
5693N/A </message>
5693N/A </catch>
5693N/A <finally>
5693N/A <sequence>
5693N/A <call function="'testCase_Postamble'"/>
5693N/A </sequence>
5693N/A </finally>
5693N/A </try>
5693N/A </sequence>
5693N/A </testcase>
5693N/A </function>
5693N/A
5693N/A</stax>