You are viewing a plain text version of this content. The canonical link for it is here.
Posted to hise-commits@incubator.apache.org by rr...@apache.org on 2010/02/24 12:04:21 UTC

svn commit: r915761 [1/3] - in /incubator/hise/trunk: hise-bundle/soapui-tests/hise-soapui-project.xml hise-web/soapui-tests/hise-soapui-project.xml itest/ itest/addUsers.sh itest/addUsers.sql itest/hise-soapui-project.xml

Author: rr
Date: Wed Feb 24 12:04:20 2010
New Revision: 915761

URL: http://svn.apache.org/viewvc?rev=915761&view=rev
Log:
Added itest dir for integration tests

Added:
    incubator/hise/trunk/itest/
    incubator/hise/trunk/itest/addUsers.sh   (with props)
    incubator/hise/trunk/itest/addUsers.sql   (with props)
    incubator/hise/trunk/itest/hise-soapui-project.xml   (with props)
Removed:
    incubator/hise/trunk/hise-bundle/soapui-tests/hise-soapui-project.xml
    incubator/hise/trunk/hise-web/soapui-tests/hise-soapui-project.xml

Added: incubator/hise/trunk/itest/addUsers.sh
URL: http://svn.apache.org/viewvc/incubator/hise/trunk/itest/addUsers.sh?rev=915761&view=auto
==============================================================================
--- incubator/hise/trunk/itest/addUsers.sh (added)
+++ incubator/hise/trunk/itest/addUsers.sh Wed Feb 24 12:04:20 2010
@@ -0,0 +1 @@
+java -cp h2-1.1.117.jar org.h2.tools.RunScript -url 'jdbc:h2:file:hise-h2-db;DB_CLOSE_ON_EXIT=false' -user sa -showResults -script addUsers.sql

Propchange: incubator/hise/trunk/itest/addUsers.sh
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/hise/trunk/itest/addUsers.sql
URL: http://svn.apache.org/viewvc/incubator/hise/trunk/itest/addUsers.sql?rev=915761&view=auto
==============================================================================
--- incubator/hise/trunk/itest/addUsers.sql (added)
+++ incubator/hise/trunk/itest/addUsers.sql Wed Feb 24 12:04:20 2010
@@ -0,0 +1,5 @@
+insert into ORG_ENTITY (name, type, userpassword) values ('user1', 'USER', 'pass1');
+insert into ORG_ENTITY (name, type, userpassword) values ('user2', 'USER', 'pass2');
+insert into ORG_ENTITY (name, type, userpassword) values ('user5', 'USER', 'pass5');
+insert into ORG_ENTITY (name, type, userpassword) values ('group1', 'GROUP', null);
+insert into USER_GROUPS (USERGROUPS_NAME, ORGENTITY_NAME) values ('user1', 'group1');

Propchange: incubator/hise/trunk/itest/addUsers.sql
------------------------------------------------------------------------------
    svn:eol-style = native