From 782f998757d6b57c39a74f4b9121b438a402407d Mon Sep 17 00:00:00 2001
From: maudj <maudj@localhost>
Date: Thu, 06 Aug 2009 14:51:20 +0000
Subject: [PATCH] remove obsolete files - maudj
---
/dev/null | 98 -------------------------------------------------
1 files changed, 0 insertions(+), 98 deletions(-)
diff --git a/opendj-sdk/opends/tests/staf-tests/functional-tests/testcases/backends/backend_cleanup.xml b/opendj-sdk/opends/tests/staf-tests/functional-tests/testcases/backends/backend_cleanup.xml
deleted file mode 100755
index 1d15bad..0000000
--- a/opendj-sdk/opends/tests/staf-tests/functional-tests/testcases/backends/backend_cleanup.xml
+++ /dev/null
@@ -1,103 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!DOCTYPE stax SYSTEM "../../../shared/stax.dtd">
-<!--
- ! CDDL HEADER START
- !
- ! The contents of this file are subject to the terms of the
- ! Common Development and Distribution License, Version 1.0 only
- ! (the "License"). You may not use this file except in compliance
- ! with the License.
- !
- ! You can obtain a copy of the license at
- ! trunk/opends/resource/legal-notices/OpenDS.LICENSE
- ! or https://OpenDS.dev.java.net/OpenDS.LICENSE.
- ! See the License for the specific language governing permissions
- ! and limitations under the License.
- !
- ! When distributing Covered Code, include this CDDL HEADER in each
- ! file and include the License file at
- ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
- ! add the following below this CDDL HEADER, with the fields enclosed
- ! by brackets "[]" replaced with your own identifying information:
- ! Portions Copyright [yyyy] [name of copyright owner]
- !
- ! CDDL HEADER END
- !
- ! Copyright 2008 Sun Microsystems, Inc.
- ! -->
-<stax>
-
- <defaultcall function="backend_cleanup"/>
-
- <function name="backend_cleanup">
- <function-map-args>
- <function-arg-def name="stopDS" type="optional" default="True">
- <function-arg-description>
- Optional stop the Directory Server
- </function-arg-description>
- <function-arg-property name="type" value="boolean"/>
- </function-arg-def>
- </function-map-args>
-
- <sequence>
-
- <block name="'cleanup'">
-
- <sequence>
-
- <if expr="stopDS == True">
- <block name="'Block DS Process Stop'">
- <!--- Stop DS -->
- <sequence>
- <message>
- 'Stop DS running on port %s' % (DIRECTORY_INSTANCE_PORT)
- </message>
-
- <call function="'StopDsWithScript'">
- { 'location' : STAF_REMOTE_HOSTNAME,
- 'dsHost' : DIRECTORY_INSTANCE_HOST,
- 'dsAdminPort' : DIRECTORY_INSTANCE_ADMIN_PORT,
- 'dsBindDN' : DIRECTORY_INSTANCE_DN,
- 'dsBindPwd' : DIRECTORY_INSTANCE_PSWD }
- </call>
-
- <call function="'checkRC'">
- { 'returncode' : RC ,
- 'result' : STAXResult }
- </call>
-
- </sequence>
- <!--- End Block DS Process Stop -->
- </block>
- </if>
-
-
-
- <block name="'Block Remove DS Topology'">
- <!-- Remove the topology created for the test suite -->
- <sequence>
-
- <message>
- 'Remove DS topology created for the Test Suite'
- </message>
-
- <call function="'removeTopology'"/>
-
- <call function="'checkRC'">
- { 'returncode' : RC ,
- 'result' : STAXResult }
- </call>
-
- </sequence>
- <!-- End Block Remove DS Topology-->
- </block>
-
-
- </sequence>
- </block>
-
- </sequence>
-
- </function>
-
-</stax>
diff --git a/opendj-sdk/opends/tests/staf-tests/functional-tests/testcases/backends/backend_setup.xml b/opendj-sdk/opends/tests/staf-tests/functional-tests/testcases/backends/backend_setup.xml
deleted file mode 100755
index 877754a..0000000
--- a/opendj-sdk/opends/tests/staf-tests/functional-tests/testcases/backends/backend_setup.xml
+++ /dev/null
@@ -1,140 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!DOCTYPE stax SYSTEM "../../../shared/stax.dtd">
-<!--
- ! CDDL HEADER START
- !
- ! The contents of this file are subject to the terms of the
- ! Common Development and Distribution License, Version 1.0 only
- ! (the "License"). You may not use this file except in compliance
- ! with the License.
- !
- ! You can obtain a copy of the license at
- ! trunk/opends/resource/legal-notices/OpenDS.LICENSE
- ! or https://OpenDS.dev.java.net/OpenDS.LICENSE.
- ! See the License for the specific language governing permissions
- ! and limitations under the License.
- !
- ! When distributing Covered Code, include this CDDL HEADER in each
- ! file and include the License file at
- ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
- ! add the following below this CDDL HEADER, with the fields enclosed
- ! by brackets "[]" replaced with your own identifying information:
- ! Portions Copyright [yyyy] [name of copyright owner]
- !
- ! CDDL HEADER END
- !
- ! Copyright 2008 Sun Microsystems, Inc.
- ! -->
-<stax>
-
- <defaultcall function="backend_setup"/>
-
- <function name="backend_setup">
- <function-map-args>
- <function-arg-def name="startDS" type="optional" default="True">
- <function-arg-description>
- Optional start the Directory Server
- </function-arg-description>
- <function-arg-property name="type" value="boolean"/>
- </function-arg-def>
- <function-arg-def name="loadBackend" type="optional" default="False">
- <function-arg-description>
- Specifies whether the backend should be loaded with some data.
- </function-arg-description>
- <function-arg-property name="type" value="boolean"/>
- </function-arg-def>
- </function-map-args>
-
- <sequence>
-
- <block name="'setup'">
-
- <sequence>
-
-
- <block name="'Block Create DS Topology'">
- <!-- Create the topology necessary to the test group/suite -->
- <sequence>
-
- <message>
- 'Create DS topology as described in config.py'
- </message>
-
- <call function="'createTopology'">
- { 'initialiseInstance' : False }
- </call>
-
- <call function="'checkRC'">
- { 'returncode' : RC ,
- 'result' : STAXResult }
- </call>
-
- </sequence>
- <!--- End Block Create DS Topology -->
- </block>
-
-
-
- <if expr="loadBackend == True">
- <block name="'Block DS Load Data'">
- <!-- Load the data needed by the test suite -->
- <sequence>
-
- <message>
- 'Backend: Backend Setup for Export, Backup, and Restore Tests'
- </message>
- <call function="'importLdif'">
- { 'ldifFile' : '%s/backends/backend_start.ldif' % remote.data }
- </call>
-
- <call function="'checkRC'">
- { 'returncode' : RC ,
- 'result' : STAXResult }
- </call>
-
- </sequence>
- <!--- End Block DS Load Data -->
- </block>
- </if>
-
-
- <if expr="startDS == True">
- <block name="'Block DS Process Active'">
- <!--- Start DS -->
- <sequence>
-
- <message>
- 'Start DS to run on port %s' % (DIRECTORY_INSTANCE_PORT)
- </message>
-
- <!--- Start DS -->
- <call function="'StartDsWithScript'">
- { 'location' : STAF_REMOTE_HOSTNAME }
- </call>
-
- <call function="'checkRC'">
- { 'returncode' : RC ,
- 'result' : STAXResult }
- </call>
-
- <!--- Check that DS started -->
- <call function="'isAlive'">
- { 'noOfLoops' : 10 ,
- 'noOfMilliSeconds' : 2000 }
- </call>
-
- </sequence>
- <!--- End Block DS Process Active -->
- </block>
- </if>
-
-
-
- </sequence>
- </block>
-
- </sequence>
-
- </function>
-
-</stax>
diff --git a/opendj-sdk/opends/tests/staf-tests/functional-tests/testcases/backends/backendsetup.xml b/opendj-sdk/opends/tests/staf-tests/functional-tests/testcases/backends/backendsetup.xml
deleted file mode 100644
index 65b754d..0000000
--- a/opendj-sdk/opends/tests/staf-tests/functional-tests/testcases/backends/backendsetup.xml
+++ /dev/null
@@ -1,98 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!DOCTYPE stax SYSTEM "../../../shared/stax.dtd">
-<!--
- ! CDDL HEADER START
- !
- ! The contents of this file are subject to the terms of the
- ! Common Development and Distribution License, Version 1.0 only
- ! (the "License"). You may not use this file except in compliance
- ! with the License.
- !
- ! You can obtain a copy of the license at
- ! trunk/opends/resource/legal-notices/OpenDS.LICENSE
- ! or https://OpenDS.dev.java.net/OpenDS.LICENSE.
- ! See the License for the specific language governing permissions
- ! and limitations under the License.
- !
- ! When distributing Covered Code, include this CDDL HEADER in each
- ! file and include the License file at
- ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
- ! add the following below this CDDL HEADER, with the fields enclosed
- ! by brackets "[]" replaced with your own identifying information:
- ! Portions Copyright [yyyy] [name of copyright owner]
- !
- ! CDDL HEADER END
- !
- ! Copyright 2008-2009 Sun Microsystems, Inc.
- ! -->
-
-<stax>
-
- <defaultcall function="main_backend-setup"/>
-
- <function name="main_backend-setup">
-
- <sequence>
-
- <block name="'setup'">
-
- <sequence>
-
- <script>
- CurrentTestPath['suite']=STAXCurrentBlock
- </script>
-
- <call function="'testSuite_Preamble'"/>
-
- <!--- Test Suite information
- #@TestSuiteName Backend Setup
- #@TestSuitePurpose Verify that the basic import functionality is working in the Directory Server.
- #@TestSuiteID Import Tests
- #@TestSuiteGroup Import
- #@TestGroup Backend
- #@TestScript import.xml
- #@TestHTMLLink http://opends.dev.java.net/
- -->
-
- <!--- Test Case information
- #@TestMarker Backend Export, Backup, and Restore Tests
- #@TestName Import: LDIF Default
- #@TestID LDIF Default
- #@TestPurpose Add entries that are required for these Backend Tests.
- #@TestPreamble
- #@TestSteps ./import-ldif.sh -l data/backends/backend_start.ldif -n "userRoot"
- #@TestPostamble
- #@TestResult
- -->
-
- <testcase name="getTestCaseName('Backend Setup')">
-
- <sequence>
-
- <call function="'testCase_Preamble'"/>
-
- <message>
- 'Backend: Backend Setup for Export, Backup, and Restore Tests'
- </message>
- <call function="'ImportLdifWithScript'">
- { 'dsLdifFile' : '%s/backends/backend_start.ldif' % remote.data ,
- 'dsBackEnd' : DIRECTORY_INSTANCE_BE }
- </call>
-
- <call function="'testCase_Postamble'"/>
-
- </sequence>
-
- </testcase>
-
- <call function="'testSuite_Postamble'"/>
-
- </sequence>
-
- </block>
-
- </sequence>
-
- </function>
-
-</stax>
--
Gitblit v1.10.0