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 !
6101N/A ! Copyright 2012-2013 ForgeRock AS.
5767N/A ! -->
5767N/A<stax>
5767N/A <defaultcall function="main_snmp_v3"/>
5767N/A <function name="main_snmp_v3" scope="local">
5767N/A <sequence>
5767N/A <block name="'main_snmp_v3'">
5767N/A <try>
5767N/A <sequence>
5767N/A <script>
5767N/A CurrentTestPath['group']='snmp'
5767N/A CurrentTestPath['suite']='v3'
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 v3 operations
5770N/A #@TestSuitePurpose Check SNMP v3 operations
5767N/A #@TestSuiteGroup SNMP v3 with default configuration
5767N/A #@TestScript snmp_v3.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('v3/snmp_v3_defaultconf_tests')
5767N/A importList.append('v3/snmp_v3_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)"/>
6076N/A </iterate>
5767N/A
5767N/A <!-- Specific to v3 SNMP tests -->
5767N/A <script>
5767N/A # Default
6076N/A securityFile = '%s/manager.security' % remote.temp
5767N/A securityLevel = SNMP_PROPERTIES['security-level']
5767N/A context = SNMP_PROPERTIES['community']
5767N/A oid = 'dsServerType.1'
5767N/A
5767N/A # Custom
5767N/A defContextProp = SNMP_PROPERTIES['community']
5767N/A defUserProp = SNMP_PROPERTIES['allowed-user']
5767N/A defSecurityFileProp = SNMP_PROPERTIES['security-agent-file']
5767N/A defSecurityLevelProp = SNMP_PROPERTIES['security-level']
5767N/A newContextProp = 'myContext'
6076N/A newSecurityFileProp = '%s/agent.security' % remote.temp
5767N/A lowUser = 'myUser1'
5767N/A defUser = 'myUser2'
5767N/A highUser = 'myUser3'
5767N/A otherUser = 'myUser4'
5767N/A lowSecurityLevelProp = 'noauthnopriv'
5767N/A highSecurityLevelProp = 'authpriv'
5767N/A wrongSecurityLevelProp = 'mySecurityLevel'
6076N/A mySecurityFile = '%s/manager.security' % remote.temp
5767N/A oid = 'dsServerType.1'
5767N/A </script>
5767N/A
5767N/A <!-- List of Test Cases -->
5767N/A <script>
5767N/A testsList=[]
5767N/A testsList.append('snmp_v3_default_001')
5767N/A testsList.append('snmp_v3_default_002')
5767N/A testsList.append('snmp_v3_default_003')
5767N/A testsList.append('snmp_v3_default_004')
5767N/A testsList.append('snmp_v3_default_005')
5767N/A testsList.append('snmp_v3_default_006')
5767N/A testsList.append('snmp_v3_default_007')
5767N/A testsList.append('snmp_v3_default_008')
5767N/A testsList.append('snmp_v3_default_009')
5767N/A testsList.append('snmp_v3_default_010')
5767N/A testsList.append('snmp_v3_default_011')
5767N/A testsList.append('snmp_v3_default_012')
5767N/A testsList.append('snmp_v3_custom_001')
5767N/A testsList.append('snmp_v3_custom_002')
5767N/A testsList.append('snmp_v3_custom_003')
5767N/A testsList.append('snmp_v3_custom_004')
5767N/A testsList.append('snmp_v3_custom_005')
5767N/A testsList.append('snmp_v3_custom_006')
5767N/A testsList.append('snmp_v3_custom_007')
5767N/A testsList.append('snmp_v3_custom_008')
5767N/A testsList.append('snmp_v3_custom_009')
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 -->
5767N/A <message>'Finally: Global SNMP 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>