blob: 0303b6ce734fafda8254fe58e8c28d90588fcda4 [file] [log] [blame]
<?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-v2.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>