You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ad...@apache.org on 2019/03/30 09:37:07 UTC

svn commit: r1856613 - in /ofbiz/ofbiz-framework/trunk/applications/product: groovyScripts/product/test/ProductFeatureTypeTests.groovy testdef/ProductTest.xml

Author: adityasharma
Date: Sat Mar 30 09:37:07 2019
New Revision: 1856613

URL: http://svn.apache.org/viewvc?rev=1856613&view=rev
Log:
Added: Unit test case for service - createProductFeatureType
(OFBIZ-9089)
Slightly modified patch. Improved class name and file name.
Thanks Pradhan Yash Sharma for reporting and initial patch & Yogesh Naroliya for providing updated patch

Added:
    ofbiz/ofbiz-framework/trunk/applications/product/groovyScripts/product/test/ProductFeatureTypeTests.groovy   (with props)
Modified:
    ofbiz/ofbiz-framework/trunk/applications/product/testdef/ProductTest.xml

Added: ofbiz/ofbiz-framework/trunk/applications/product/groovyScripts/product/test/ProductFeatureTypeTests.groovy
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/applications/product/groovyScripts/product/test/ProductFeatureTypeTests.groovy?rev=1856613&view=auto
==============================================================================
--- ofbiz/ofbiz-framework/trunk/applications/product/groovyScripts/product/test/ProductFeatureTypeTests.groovy (added)
+++ ofbiz/ofbiz-framework/trunk/applications/product/groovyScripts/product/test/ProductFeatureTypeTests.groovy Sat Mar 30 09:37:07 2019
@@ -0,0 +1,39 @@
+/*******************************************************************************
+ * 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.
+ *******************************************************************************/
+
+
+import org.apache.ofbiz.entity.GenericValue
+import org.apache.ofbiz.entity.util.EntityQuery
+import org.apache.ofbiz.service.ServiceUtil
+import org.apache.ofbiz.testtools.GroovyScriptTestCase
+
+class ProductFeatureTypeTests extends GroovyScriptTestCase {
+    void testCreateProductFeatureType() {
+        Map serviceCtx = [:]
+        serviceCtx.productFeatureTypeId = 'testProdFeat'
+        serviceCtx.description = 'Test Description'
+        serviceCtx.hasTable = 'N'
+        serviceCtx.userLogin = EntityQuery.use(delegator).from('UserLogin').where('userLoginId', 'system').cache().queryOne()
+        Map result = dispatcher.runSync('createProductFeatureType', serviceCtx)
+        assert ServiceUtil.isSuccess(result)
+
+        GenericValue productFeatureType = EntityQuery.use(delegator).from('ProductFeatureType').where('productFeatureTypeId', 'testProdFeat').queryOne()
+        assert productFeatureType.productFeatureTypeId == 'testProdFeat'
+    }
+}

Propchange: ofbiz/ofbiz-framework/trunk/applications/product/groovyScripts/product/test/ProductFeatureTypeTests.groovy
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/ofbiz-framework/trunk/applications/product/groovyScripts/product/test/ProductFeatureTypeTests.groovy
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/ofbiz-framework/trunk/applications/product/groovyScripts/product/test/ProductFeatureTypeTests.groovy
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: ofbiz/ofbiz-framework/trunk/applications/product/testdef/ProductTest.xml
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/applications/product/testdef/ProductTest.xml?rev=1856613&r1=1856612&r2=1856613&view=diff
==============================================================================
--- ofbiz/ofbiz-framework/trunk/applications/product/testdef/ProductTest.xml (original)
+++ ofbiz/ofbiz-framework/trunk/applications/product/testdef/ProductTest.xml Sat Mar 30 09:37:07 2019
@@ -33,4 +33,7 @@ under the License.
     <test-case case-name="product-tests">
         <groovy-test-suite location="component://product/groovyScripts/test/ProductTests.groovy"/>
     </test-case>
-</test-suite>
\ No newline at end of file
+</test-suite>    <test-case case-name="testCreateProductFeatureType">
+        <groovy-test-suite location="component://product/groovyScripts/product/test/ProductFeatureTypeTests.groovy"/>
+    </test-case>
+</test-suite>