You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by mo...@apache.org on 2010/02/07 18:01:23 UTC

svn commit: r907450 - in /ofbiz/trunk/applications/product: script/org/ofbiz/product/test/CategoryTests.xml testdef/CatalogTests.xml

Author: mor
Date: Sun Feb  7 17:01:23 2010
New Revision: 907450

URL: http://svn.apache.org/viewvc?rev=907450&view=rev
Log:
A test case for service getProductCategoryAndLimitedMembers

Added:
    ofbiz/trunk/applications/product/script/org/ofbiz/product/test/CategoryTests.xml   (with props)
Modified:
    ofbiz/trunk/applications/product/testdef/CatalogTests.xml

Added: ofbiz/trunk/applications/product/script/org/ofbiz/product/test/CategoryTests.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/script/org/ofbiz/product/test/CategoryTests.xml?rev=907450&view=auto
==============================================================================
--- ofbiz/trunk/applications/product/script/org/ofbiz/product/test/CategoryTests.xml (added)
+++ ofbiz/trunk/applications/product/script/org/ofbiz/product/test/CategoryTests.xml Sun Feb  7 17:01:23 2010
@@ -0,0 +1,48 @@
+<?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.
+-->
+
+<simple-methods xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+        xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/simple-methods.xsd">
+
+    <simple-method method-name="testGetProductCategoryAndLimitedMembers" short-description="Test case for service getProductCategoryAndLimitedMembers" login-required="false">
+        <set field="serviceCtx.productCategoryId" value="101"/>
+        <set field="serviceCtx.prodCatalogId" value="DemoCatalog"/>
+        <set field="serviceCtx.defaultViewSize" value="10" type="Integer"/>
+        <set field="serviceCtx.limitView" value="true" type="Boolean"/>
+        <call-service service-name="getProductCategoryAndLimitedMembers" in-map-name="serviceCtx">
+            <result-to-field result-name="productCategoryMembers"/>
+            <result-to-field result-name="productCategory"/>
+        </call-service>
+        <assert>
+            <not><if-empty field="productCategory"/></not>
+            <not><if-empty field="productCategoryMembers"/></not>
+            <if-compare field="productCategory.productCategoryId" operator="equals" value="101"/>
+        </assert>
+        <check-errors/>
+        <entity-and entity-name="ProductCategoryMember" list="productCategoryMemberList">
+            <field-map field-name="productCategoryId" value="101"/>
+        </entity-and>
+        <set field="isValid" value="${groovy: productCategoryMemberList.containsAll(productCategoryMembers)}" type="Boolean"/>
+        <assert>
+            <if-compare field="isValid" operator="equals" value="true" type="Boolean"/>
+        </assert>
+        <check-errors/>
+    </simple-method>
+</simple-methods>

Propchange: ofbiz/trunk/applications/product/script/org/ofbiz/product/test/CategoryTests.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/trunk/applications/product/script/org/ofbiz/product/test/CategoryTests.xml
------------------------------------------------------------------------------
    svn:keywords = "Date Rev Author URL Id"

Propchange: ofbiz/trunk/applications/product/script/org/ofbiz/product/test/CategoryTests.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Modified: ofbiz/trunk/applications/product/testdef/CatalogTests.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/testdef/CatalogTests.xml?rev=907450&r1=907449&r2=907450&view=diff
==============================================================================
--- ofbiz/trunk/applications/product/testdef/CatalogTests.xml (original)
+++ ofbiz/trunk/applications/product/testdef/CatalogTests.xml Sun Feb  7 17:01:23 2010
@@ -29,4 +29,8 @@
     <test-case case-name="productPrice-tests">
         <simple-method-test location="component://product/script/org/ofbiz/product/test/ProductPriceTests.xml"/>
     </test-case>
+
+    <test-case case-name="category-tests">
+        <simple-method-test location="component://product/script/org/ofbiz/product/test/CategoryTests.xml"/>
+    </test-case>
 </test-suite>
\ No newline at end of file