5767N/A<?xml version="1.0" encoding="UTF-8" standalone="no"?>
5767N/A<!DOCTYPE stax SYSTEM "/shared/stax.dtd">
5767N/A<!--
5767N/A ! CDDL HEADER START
5767N/A !
5767N/A ! The contents of this file are subject to the terms of the
5767N/A ! Common Development and Distribution License, Version 1.0 only
5767N/A ! (the "License"). You may not use this file except in compliance
5767N/A ! with the License.
5767N/A !
5767N/A ! You can obtain a copy of the license at
5767N/A ! trunk/opends/resource/legal-notices/CDDLv1_0.txt
5767N/A ! or http://forgerock.org/license/CDDLv1.0.html.
5767N/A ! See the License for the specific language governing permissions
5767N/A ! and limitations under the License.
5767N/A !
5767N/A ! When distributing Covered Code, include this CDDL HEADER in each
5767N/A ! file and include the License file at
5767N/A ! trunk/opends/resource/legal-notices/CDDLv1_0.txt. If applicable,
5767N/A ! add the following below this CDDL HEADER, with the fields enclosed
5767N/A ! by brackets "[]" replaced with your own identifying information:
5767N/A ! Portions Copyright [yyyy] [name of copyright owner]
5767N/A !
5767N/A ! CDDL HEADER END
5767N/A !
5767N/A ! Copyright 2012 ForgeRock AS.
5767N/A ! -->
5767N/A<stax>
5767N/A <defaultcall function="main_snmp_traps"/>
5767N/A <function name="main_snmp_traps" scope="local">
5767N/A <sequence>
5767N/A <block name="'main_snmp_traps'">
5767N/A <try>
5767N/A <sequence>
5767N/A <script>
5767N/A CurrentTestPath['group']='snmp'
5767N/A CurrentTestPath['suite']='traps'
5767N/A
5767N/A __group=CurrentTestPath['group']
5767N/A __groupdir='%s/testcases/%s' % (TESTS_DIR,__group)
5767N/A </script>
5767N/A
5767N/A <!--- Test Suite information
5770N/A #@TestSuiteName SNMP traps test suite
5770N/A #@TestSuitePurpose Verify SNMP traps
5767N/A #@TestSuiteID traps
5767N/A #@TestSuiteGroup snmp
5767N/A #@TestGroup snmp
5767N/A #@TestScript snmp.xml
5767N/A #@TestHTMLLink http://www.forgerock.org/
5767N/A -->
5767N/A <call function="'testSuite_Preamble'"/>
5767N/A
5767N/A <try>
5767N/A <sequence>
5767N/A
5767N/A <!-- List of Import of Test Functions -->
5767N/A <script>
5767N/A importList=[]
5767N/A importList.append('traps/snmp_traps_defaultconf_tests')
5767N/A importList.append('traps/snmp_traps_customconf_tests')
5767N/A </script>
5767N/A
5767N/A <!-- Import the files for this test suite -->
5767N/A <iterate var="__import" in="importList">
5767N/A <import machine="STAF_LOCAL_HOSTNAME"
5767N/A file="'%s/%s.xml' % (__groupdir,__import)"/>
5767N/A </iterate>
5767N/A
5767N/A <!-- Specific to traps SNMP tests -->
5767N/A <script>
5767N/A # Default
5767N/A trapsCommunity = '%s' % SNMP_PROPERTIES['traps-community']
5767N/A outputFile = '%s/timer.out' % DIRECTORY_INSTANCE_DIR
5767N/A timerDuration = '5m'
5767N/A
5767N/A # Custom
5767N/A defTrapsCommunityProp = '%s' % SNMP_PROPERTIES['traps-community']
5767N/A newTrapsCommunityProp = 'myCommunity'
5767N/A newTrapsDestProp = DIRECTORY_INSTANCE_HOST
5767N/A wrongTrapsDestProp = 'wrongtrapdestination'
5767N/A outputFile2 = '%s/timer.out' % DIRECTORY_INSTANCE_DIR
5767N/A timerDuration2 = '5m'
5767N/A serverLogFile = '%s/%s/logs/server.out' \
5767N/A % (DIRECTORY_INSTANCE_DIR, OPENDSNAME)
5767N/A </script>
5767N/A
5767N/A <!-- List of Test Cases -->
5767N/A <script>
5767N/A testsList=[]
5767N/A testsList.append('snmp_traps_default_001')
5767N/A testsList.append('snmp_traps_default_002')
5767N/A testsList.append('snmp_traps_default_003')
5767N/A testsList.append('snmp_traps_custom_001')
5767N/A testsList.append('snmp_traps_custom_002')
5767N/A testsList.append('snmp_traps_custom_003')
5767N/A testsList.append('snmp_traps_custom_004')
5767N/A testsList.append('snmp_traps_custom_005')
5767N/A </script>
5767N/A
5767N/A <!-- Execute the Tests -->
5767N/A <iterate var="__test" in="testsList">
5767N/A <sequence>
5767N/A <call function="'%s' % (__test)" />
5767N/A </sequence>
5767N/A </iterate>
5767N/A
5767N/A </sequence>
5767N/A <catch exception="'STAFException.TestSuite.SetupException'">
5767N/A <sequence>
5767N/A <message log="1" level="'fatal'">
5767N/A 'Setup of test suite failed.'
5767N/A </message>
5767N/A <rethrow/>
5767N/A </sequence>
5767N/A </catch>
5767N/A
5767N/A <finally>
5767N/A <message>'Test Cases Completed.'</message>
5767N/A </finally>
5767N/A
5767N/A </try>
5767N/A
5767N/A </sequence>
5767N/A
5767N/A <finally>
5767N/A <sequence>
5767N/A <!-- Test Suite Cleanup -->
5821N/A <message>'Finally: Global Cleanup.'</message>
5767N/A <try>
5767N/A <message>'No Test Suite Cleanup'</message>
5767N/A <catch exception="'STAFException'">
5767N/A <sequence>
5767N/A <message log="1" level="'fatal'">'Cleanup of test suite failed.'</message>
5767N/A </sequence>
5767N/A </catch>
5767N/A <finally>
5767N/A <call function="'testSuite_Postamble'"/>
5767N/A </finally>
5767N/A </try>
5767N/A </sequence>
5767N/A </finally>
5767N/A
5767N/A </try>
5767N/A </block>
5767N/A </sequence>
5767N/A </function>
5767N/A</stax>