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/02 13:32:23 UTC

svn commit: r905606 - in /ofbiz/trunk/framework/common: ofbiz-component.xml script/org/ofbiz/common/test/ script/org/ofbiz/common/test/UserLoginTests.xml testdef/ testdef/UserLoginTests.xml

Author: mor
Date: Tue Feb  2 12:32:20 2010
New Revision: 905606

URL: http://svn.apache.org/viewvc?rev=905606&view=rev
Log:
Added a test case for createUserLogin service.

Added:
    ofbiz/trunk/framework/common/script/org/ofbiz/common/test/
    ofbiz/trunk/framework/common/script/org/ofbiz/common/test/UserLoginTests.xml   (with props)
    ofbiz/trunk/framework/common/testdef/
    ofbiz/trunk/framework/common/testdef/UserLoginTests.xml   (with props)
Modified:
    ofbiz/trunk/framework/common/ofbiz-component.xml

Modified: ofbiz/trunk/framework/common/ofbiz-component.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/common/ofbiz-component.xml?rev=905606&r1=905605&r2=905606&view=diff
==============================================================================
--- ofbiz/trunk/framework/common/ofbiz-component.xml (original)
+++ ofbiz/trunk/framework/common/ofbiz-component.xml Tue Feb  2 12:32:20 2010
@@ -62,4 +62,6 @@
     <service-resource type="eca" loader="main" location="servicedef/secas_test.xml"/>
     <service-resource type="eca" loader="main" location="servicedef/secas_cdyne.xml"/>
     <service-resource type="mca" loader="main" location="servicedef/smcas_test.xml"/>
+
+    <test-suite loader="main" location="testdef/UserLoginTests.xml"/>
 </ofbiz-component>

Added: ofbiz/trunk/framework/common/script/org/ofbiz/common/test/UserLoginTests.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/common/script/org/ofbiz/common/test/UserLoginTests.xml?rev=905606&view=auto
==============================================================================
--- ofbiz/trunk/framework/common/script/org/ofbiz/common/test/UserLoginTests.xml (added)
+++ ofbiz/trunk/framework/common/script/org/ofbiz/common/test/UserLoginTests.xml Tue Feb  2 12:32:20 2010
@@ -0,0 +1,38 @@
+<?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="testCreateUserLogin" short-description="Test case for service createUserLogin" login-required="false">
+        <set field="userLoginId" value="demo.person"/>
+        <set field="serviceCtx.userLoginId" from-field="userLoginId"/>
+        <set field="serviceCtx.enabled" value="Y"/>
+        <set field="serviceCtx.currentPassword" value="ofbiz"/>
+        <set field="serviceCtx.currentPasswordVerify" value="ofbiz"/>
+        <call-service service-name="createUserLogin" in-map-name="serviceCtx"/>
+        <entity-one entity-name="UserLogin" value-field="userLogin"/>
+        <assert>
+            <not><if-empty field="userLogin"/></not>
+            <if-compare field="userLogin.enabled" operator="equals" value="Y"/>
+        </assert>
+        <check-errors/>
+    </simple-method>
+</simple-methods>
\ No newline at end of file

Propchange: ofbiz/trunk/framework/common/script/org/ofbiz/common/test/UserLoginTests.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/trunk/framework/common/script/org/ofbiz/common/test/UserLoginTests.xml
------------------------------------------------------------------------------
    svn:keywords = "Date Rev Author URL Id"

Propchange: ofbiz/trunk/framework/common/script/org/ofbiz/common/test/UserLoginTests.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: ofbiz/trunk/framework/common/testdef/UserLoginTests.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/common/testdef/UserLoginTests.xml?rev=905606&view=auto
==============================================================================
--- ofbiz/trunk/framework/common/testdef/UserLoginTests.xml (added)
+++ ofbiz/trunk/framework/common/testdef/UserLoginTests.xml Tue Feb  2 12:32:20 2010
@@ -0,0 +1,29 @@
+<?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.
+-->
+
+<test-suite suite-name="userlogintests"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+        xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/test-suite.xsd">
+
+    <test-case case-name="userlogin-tests">
+        <simple-method-test location="component://common/script/org/ofbiz/common/test/UserLoginTests.xml"/>
+    </test-case>
+
+</test-suite>
\ No newline at end of file

Propchange: ofbiz/trunk/framework/common/testdef/UserLoginTests.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/trunk/framework/common/testdef/UserLoginTests.xml
------------------------------------------------------------------------------
    svn:keywords = "Date Rev Author URL Id"

Propchange: ofbiz/trunk/framework/common/testdef/UserLoginTests.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml