You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lenya.apache.org by an...@apache.org on 2007/02/19 18:27:46 UTC

svn commit: r509263 - in /lenya/trunk/src/modules/development/test: ./ canoo/ canoo/test.xml

Author: andreas
Date: Mon Feb 19 09:27:44 2007
New Revision: 509263

URL: http://svn.apache.org/viewvc?view=rev&rev=509263
Log:
Adding stress test to create multiple documents

Added:
    lenya/trunk/src/modules/development/test/
    lenya/trunk/src/modules/development/test/canoo/
    lenya/trunk/src/modules/development/test/canoo/test.xml

Added: lenya/trunk/src/modules/development/test/canoo/test.xml
URL: http://svn.apache.org/viewvc/lenya/trunk/src/modules/development/test/canoo/test.xml?view=auto&rev=509263
==============================================================================
--- lenya/trunk/src/modules/development/test/canoo/test.xml (added)
+++ lenya/trunk/src/modules/development/test/canoo/test.xml Mon Feb 19 09:27:44 2007
@@ -0,0 +1,67 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+  
+  http://www.apache.org/licenses/LICENSE-2.0
+  
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+
+<project name="Stress test" basedir="." default="main">
+  
+  <import file="${webtest.home}/lib/taskdef.xml"/>
+  
+  <target name="main">
+    
+    <property name="number" value="100"/>
+    
+    <webtest name="Stress test">
+      <config host="localhost" port="8888" protocol="http" basepath="default/authoring">
+        <header name="Accept-Language" value="en"/>
+        <option name="JavaScriptEnabled" value="false"/>
+      </config>
+      <steps>
+        <!-- login page -->
+        <invoke url="index.html" />
+        <verifyTitle text="LOGIN to the DEFAULT Publication" />
+        <setInputField name="username" value="lenya"/>
+        <setInputField name="password" value="levi"/>
+        <clickButton name="submit"/>
+        
+        <!-- create -->
+        <repeat count="${number}">
+          <echo>Creating document #{count} of ${number}</echo>
+          <invoke url="index.html?lenya.usecase=sitemanagement.create&amp;doctype=xhtml"/>
+          <verifyElementText type="h1" text="New xhtml Document"/>
+          <setInputField name="nodeName" value="stresstest#{count}"/>
+          <setInputField name="dublincore.title" value="Stress Test #{count}"/>
+          <setSelectField name="language" value="en"/>
+          <clickButton name="submit"/>
+          <verifyText text="Welcome"/>
+        </repeat>
+        
+        <!-- delete -->
+        <repeat count="${number}">
+          <echo>Deleting document #{count} of ${number}</echo>
+          <invoke url="index/stresstest#{count}.html?lenya.usecase=sitemanagement.delete"/>
+          <verifyElementText type="h1" text="Delete Document"/>
+          <clickButton name="submit"/>
+          <verifyText text="Welcome"/>
+        </repeat>
+        
+        <!-- logout -->
+        <invoke url="index.html?lenya.usecase=ac.logout"/>
+        <clickButton name="submit"/>
+      </steps>
+    </webtest>
+  </target>
+</project>
\ No newline at end of file



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@lenya.apache.org
For additional commands, e-mail: commits-help@lenya.apache.org