You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by dj...@apache.org on 2005/11/03 19:01:01 UTC

svn commit: r330592 - in /db/derby/code/branches/10.1/java/testing/org/apache/derbyTesting/functionTests: master/dcl.out master/j9_13/dcl.out master/jdk15/dcl.out tests/lang/dcl.sql tests/lang/dcl_emc2s.jar

Author: djd
Date: Thu Nov  3 10:00:00 2005
New Revision: 330592

URL: http://svn.apache.org/viewcvs?rev=330592&view=rev
Log:
Fix lang/dcl.sql which was failing due to an expired security certnificate.
Signed the jar with a certificate valid for 100 years, and updated instructions
in the lang/dcl.sql script.

Modified:
    db/derby/code/branches/10.1/java/testing/org/apache/derbyTesting/functionTests/master/dcl.out
    db/derby/code/branches/10.1/java/testing/org/apache/derbyTesting/functionTests/master/j9_13/dcl.out
    db/derby/code/branches/10.1/java/testing/org/apache/derbyTesting/functionTests/master/jdk15/dcl.out
    db/derby/code/branches/10.1/java/testing/org/apache/derbyTesting/functionTests/tests/lang/dcl.sql
    db/derby/code/branches/10.1/java/testing/org/apache/derbyTesting/functionTests/tests/lang/dcl_emc2s.jar

Modified: db/derby/code/branches/10.1/java/testing/org/apache/derbyTesting/functionTests/master/dcl.out
URL: http://svn.apache.org/viewcvs/db/derby/code/branches/10.1/java/testing/org/apache/derbyTesting/functionTests/master/dcl.out?rev=330592&r1=330591&r2=330592&view=diff
==============================================================================
--- db/derby/code/branches/10.1/java/testing/org/apache/derbyTesting/functionTests/master/dcl.out (original)
+++ db/derby/code/branches/10.1/java/testing/org/apache/derbyTesting/functionTests/master/dcl.out Thu Nov  3 10:00:00 2005
@@ -186,8 +186,10 @@
 -- (self signed certificate)
 --
 -- Commands used to sign jar
+-- keytool -delete -alias emccto -keystore emcks -storepass ab987c
 -- keytool -genkey -dname "cn=EMC CTO, ou=EMC APP, o=Easy Mail Company, c=US" -alias emccto -keypass kpi135 -keystore emcks -storepass ab987c
--- keytool -selfcert -alias emccto -keypass kpi135 -keystore emcks -storepass ab987c
+-- keytool -selfcert -alias emccto -keypass kpi135 -validity 36500 -keystore emcks -storepass ab987c
+-- keytool -keystore emcks -storepass ab987c -list -v
 -- jarsigner -keystore emcks -storepass ab987c -keypass kpi135 -signedjar dcl_emc2s.jar dcl_emc2.jar emccto
 --
 --

Modified: db/derby/code/branches/10.1/java/testing/org/apache/derbyTesting/functionTests/master/j9_13/dcl.out
URL: http://svn.apache.org/viewcvs/db/derby/code/branches/10.1/java/testing/org/apache/derbyTesting/functionTests/master/j9_13/dcl.out?rev=330592&r1=330591&r2=330592&view=diff
==============================================================================
--- db/derby/code/branches/10.1/java/testing/org/apache/derbyTesting/functionTests/master/j9_13/dcl.out (original)
+++ db/derby/code/branches/10.1/java/testing/org/apache/derbyTesting/functionTests/master/j9_13/dcl.out Thu Nov  3 10:00:00 2005
@@ -1,253 +1,255 @@
-ij> -- test database class loading.
-maximumdisplaywidth 300;
-ij> create schema emc;
-0 rows inserted/updated/deleted
-ij> set schema emc;
-0 rows inserted/updated/deleted
-ij> create table contacts (id int primary key, e_mail varchar(30));
-0 rows inserted/updated/deleted
-ij> create procedure EMC.ADDCONTACT(id INT, e_mail VARCHAR(30))
-MODIFIES SQL DATA
-external name 'org.apache.derbyTesting.databaseclassloader.emc.addContact'
-language java parameter style java;
-0 rows inserted/updated/deleted
-ij> create function EMC.GETARTICLE(path VARCHAR(40)) RETURNS VARCHAR(256)
-NO SQL
-external name 'org.apache.derbyTesting.databaseclassloader.emc.getArticle'
-language java parameter style java;
-0 rows inserted/updated/deleted
-ij> -- fails because no class in classpath, 
-CALL EMC.ADDCONTACT(1, 'bill@somecompany.com');
-ERROR 42X51: The class 'org.apache.derbyTesting.databaseclassloader.emc' does not exist or is inaccessible. This can happen if the class is not public.
-ERROR XJ001: Java exception: 'org.apache.derbyTesting.databaseclassloader.emc: java.lang.ClassNotFoundException'.
-ij> -- install the jar, copied there by the magic of supportfiles
--- in the test harness (dcl_app.properties). The source for
--- the class is contained within the jar for reference.
-CALL SQLJ.INSTALL_JAR('file:extin/dcl_emc1.jar', 'EMC.MAIL_APP', 0);
-0 rows inserted/updated/deleted
-ij> -- fails because no class not in classpath, jar file not in database classpath.
-CALL EMC.ADDCONTACT(1, 'bill@somecompany.com');
-ERROR 42X51: The class 'org.apache.derbyTesting.databaseclassloader.emc' does not exist or is inaccessible. This can happen if the class is not public.
-ERROR XJ001: Java exception: 'org.apache.derbyTesting.databaseclassloader.emc: java.lang.ClassNotFoundException'.
-ij> -- now add this into the database class path
-call SYSCS_UTIL.SYSCS_SET_DATABASE_PROPERTY('derby.database.classpath', 'EMC.MAIL_APP');
-0 rows inserted/updated/deleted
-ij> -- all should work now
-CALL EMC.ADDCONTACT(1, 'bill@ruletheworld.com');
-0 rows inserted/updated/deleted
-ij> CALL EMC.ADDCONTACT(2, 'penguin@antartic.com');
-0 rows inserted/updated/deleted
-ij> SELECT id, e_mail from EMC.CONTACTS;
-ID         |E_MAIL                        
-------------------------------------------
-1          |bill@ruletheworld.com         
-2          |penguin@antartic.com          
-ij> -- Test resource loading from the jar file
--- Simple path should be prepended with the package name
--- of the class executing the code to find
--- /org/apache/derbyTesting/databaseclassloader/graduation.txt
-VALUES EMC.GETARTICLE('graduate.txt');
-1                                                                                                                                                                                                                                                                                                           
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-The Apache Foundation has released the first version of the open-source Derby database, which also gained support from Sun Microsystems.                                                                                                                                                                    
-ij> -- now an absolute path
-VALUES EMC.GETARTICLE('/article/release.txt');
-1                                                                                                                                                                                                                                                                                                           
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-The Apache Derby development community is pleased to announce its first release after graduating from the Apache Incubator, Apache Derby 10.1.1.0.                                                                                                                                                          
-ij> -- no such resources
-VALUES EMC.GETARTICLE('/article/fred.txt');
-1                                                                                                                                                                                                                                                                                                           
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-NULL                                                                                                                                                                                                                                                                                                        
-ij> VALUES EMC.GETARTICLE('barney.txt');
-1                                                                                                                                                                                                                                                                                                           
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-NULL                                                                                                                                                                                                                                                                                                        
-ij> -- try to read the class file should be disallowed
--- by returning null
-VALUES EMC.GETARTICLE('emc.class');
-1                                                                                                                                                                                                                                                                                                           
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-NULL                                                                                                                                                                                                                                                                                                        
-ij> VALUES EMC.GETARTICLE('/org/apache/derbyTesting/databaseclassloader/emc.class');
-1                                                                                                                                                                                                                                                                                                           
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-NULL                                                                                                                                                                                                                                                                                                        
-ij> -- now the application needs to track if e-mails are valid
-ALTER TABLE EMC.CONTACTS ADD COLUMN OK SMALLINT;
-0 rows inserted/updated/deleted
-ij> SELECT id, e_mail, ok from EMC.CONTACTS;
-ID         |E_MAIL                        |OK    
--------------------------------------------------
-1          |bill@ruletheworld.com         |NULL  
-2          |penguin@antartic.com          |NULL  
-ij> -- well written application, INSERT used explicit column names
--- ok defaults to NULL
-CALL EMC.ADDCONTACT(3, 'big@blue.com');
-0 rows inserted/updated/deleted
-ij> SELECT id, e_mail, ok from EMC.CONTACTS;
-ID         |E_MAIL                        |OK    
--------------------------------------------------
-1          |bill@ruletheworld.com         |NULL  
-2          |penguin@antartic.com          |NULL  
-3          |big@blue.com                  |NULL  
-ij> -- check the roll back of class loading.
--- install a new jar in a transaction, see
--- that the new class is used and then rollback
--- the old class should be used after the rollback.
-AUTOCOMMIT OFF;
-ij> CALL SQLJ.REPLACE_JAR('file:extin/dcl_emc2.jar', 'EMC.MAIL_APP');
-0 rows inserted/updated/deleted
-ij> CALL EMC.ADDCONTACT(99, 'wormspam@soil.com');
-0 rows inserted/updated/deleted
-ij> SELECT id, e_mail, ok from EMC.CONTACTS;
-ID         |E_MAIL                        |OK    
--------------------------------------------------
-1          |bill@ruletheworld.com         |NULL  
-2          |penguin@antartic.com          |NULL  
-3          |big@blue.com                  |NULL  
-99         |wormspam@soil.com             |0     
-ij> rollback;
-ij> AUTOCOMMIT ON;
-ij> SELECT id, e_mail, ok from EMC.CONTACTS;
-ID         |E_MAIL                        |OK    
--------------------------------------------------
-1          |bill@ruletheworld.com         |NULL  
-2          |penguin@antartic.com          |NULL  
-3          |big@blue.com                  |NULL  
-ij> CALL EMC.ADDCONTACT(99, 'wormspam2@soil.com');
-0 rows inserted/updated/deleted
-ij> SELECT id, e_mail, ok from EMC.CONTACTS;
-ID         |E_MAIL                        |OK    
--------------------------------------------------
-1          |bill@ruletheworld.com         |NULL  
-2          |penguin@antartic.com          |NULL  
-3          |big@blue.com                  |NULL  
-99         |wormspam2@soil.com            |NULL  
-ij> DELETE FROM EMC.CONTACTS WHERE ID = 99;
-1 row inserted/updated/deleted
-ij> -- now change the application to run checks on the e-mail
--- address to ensure it is valid (in this case by seeing if
--- simply includes 'spam' in the title.
-CALL SQLJ.REPLACE_JAR('file:extin/dcl_emc2.jar', 'EMC.MAIL_APP');
-0 rows inserted/updated/deleted
-ij> CALL EMC.ADDCONTACT(4, 'spammer@ripoff.com');
-0 rows inserted/updated/deleted
-ij> CALL EMC.ADDCONTACT(5, 'open@source.org');
-0 rows inserted/updated/deleted
-ij> SELECT id, e_mail, ok from EMC.CONTACTS;
-ID         |E_MAIL                        |OK    
--------------------------------------------------
-1          |bill@ruletheworld.com         |NULL  
-2          |penguin@antartic.com          |NULL  
-3          |big@blue.com                  |NULL  
-4          |spammer@ripoff.com            |0     
-5          |open@source.org               |1     
-ij> -- now add another jar in to test two jars and
--- a quoted identifer for the jar names.
-create schema "emcAddOn";
-0 rows inserted/updated/deleted
-ij> set schema emcAddOn;
-ERROR 42Y07: Schema 'EMCADDON' does not exist
-ij> set schema "emcAddOn";
-0 rows inserted/updated/deleted
-ij> create function "emcAddOn".VALIDCONTACT(e_mail VARCHAR(30))
-RETURNS SMALLINT
-READS SQL DATA
-external name 'org.apache.derbyTesting.databaseclassloader.addon.vendor.util.valid'
-language java parameter style java;
-0 rows inserted/updated/deleted
-ij> CALL SQLJ.INSTALL_JAR('file:extin/dcl_emcaddon.jar', '"emcAddOn"."MailAddOn"', 0);
-0 rows inserted/updated/deleted
-ij> call SYSCS_UTIL.SYSCS_SET_DATABASE_PROPERTY('derby.database.classpath', 'EMC.MAIL_APP:"emcAddOn"."MailAddOn"');
-0 rows inserted/updated/deleted
-ij> select e_mail, "emcAddOn".VALIDCONTACT(e_mail) from EMC.CONTACTS;
-E_MAIL                        |2     
--------------------------------------
-bill@ruletheworld.com         |0     
-penguin@antartic.com          |0     
-big@blue.com                  |0     
-spammer@ripoff.com            |0     
-open@source.org               |1     
-ij> -- function that gets the signers of the class (loaded from the jar)
-create function EMC.GETSIGNERS(CLASS_NAME VARCHAR(256))
-RETURNS VARCHAR(60)
-NO SQL
-external name 'org.apache.derbyTesting.databaseclassloader.emc.getSigners'
-language java parameter style java;
-0 rows inserted/updated/deleted
-ij> -- at this point the jar is not signed, NULL expected
-VALUES EMC.GETSIGNERS('org.apache.derbyTesting.databaseclassloader.emc');
-1                                                                                                                                                                                                                                                                                                           
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-NULL                                                                                                                                                                                                                                                                                                        
-ij> -- Replace with a signed jar
--- (self signed certificate)
---
--- Commands used to sign jar
--- keytool -genkey -dname "cn=EMC CTO, ou=EMC APP, o=Easy Mail Company, c=US" -alias emccto -keypass kpi135 -keystore emcks -storepass ab987c
--- keytool -selfcert -alias emccto -keypass kpi135 -keystore emcks -storepass ab987c
--- jarsigner -keystore emcks -storepass ab987c -keypass kpi135 -signedjar dcl_emc2s.jar dcl_emc2.jar emccto
---
---
-CALL SQLJ.REPLACE_JAR('file:extin/dcl_emc2s.jar', 'EMC.MAIL_APP');
-0 rows inserted/updated/deleted
-ij> VALUES EMC.GETSIGNERS('org.apache.derbyTesting.databaseclassloader.emc');
-1                                                                                                                                                                                                                                                                                                           
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-CN=EMC CTO,O=Easy Mail Company,OU=EMC APP,C=US                                                                                                                                                                                                                                                              
-ij> -- other jar should not be signed
-VALUES EMC.GETSIGNERS('org.apache.derbyTesting.databaseclassloader.addon.vendor.util');
-1                                                                                                                                                                                                                                                                                                           
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-NULL                                                                                                                                                                                                                                                                                                        
-ij> -- replace with a hacked jar file, emc.class modified to diable
--- valid e-mail address check but using same signatures.
--- ie direct replacement of the .class file.
-CALL SQLJ.REPLACE_JAR('file:extin/dcl_emc2sm.jar', 'EMC.MAIL_APP');
-0 rows inserted/updated/deleted
-ij> CALL EMC.ADDCONTACT(99, 'spamking@cracker.org');
-0 rows inserted/updated/deleted
-ij> -- replace with a hacked jar file, emc.class modified to 
--- be an invalid jar file (no signing on this jar).
-CALL SQLJ.REPLACE_JAR('file:extin/dcl_emc2l.jar', 'EMC.MAIL_APP');
-0 rows inserted/updated/deleted
-ij> CALL EMC.ADDCONTACT(999, 'spamking2@cracker.org');
-ERROR 42X51: The class 'org.apache.derbyTesting.databaseclassloader.emc' does not exist or is inaccessible. This can happen if the class is not public.
-ERROR XJ001: Java exception: 'org.apache.derbyTesting.databaseclassloader.emc : (org/apache/derbyTesting/databaseclassloader/emc) unknown constant pool entry tag at offset=10: java.lang.ClassNotFoundException'.
-ij> -- cleanup
-CALL SQLJ.REMOVE_JAR('EMC.MAIL_APP', 0);
-ERROR X0X07: Cannot drop jar file '"EMC"."MAIL_APP"' because its on your db2j.database.classpath '"EMC"."MAIL_APP"'.
-ij> call SYSCS_UTIL.SYSCS_SET_DATABASE_PROPERTY('derby.database.classpath', '"emcAddOn"."MailAddOn"');
-0 rows inserted/updated/deleted
-ij> CALL EMC.ADDCONTACT(99, 'cash@venture.com');
-ERROR 42X51: The class 'org.apache.derbyTesting.databaseclassloader.emc' does not exist or is inaccessible. This can happen if the class is not public.
-ERROR XJ001: Java exception: 'org.apache.derbyTesting.databaseclassloader.emc: java.lang.ClassNotFoundException'.
-ij> CALL SQLJ.REMOVE_JAR('EMC.MAIL_APP', 0);
-0 rows inserted/updated/deleted
-ij> DROP PROCEDURE EMC.ADDCONTACT;
-0 rows inserted/updated/deleted
-ij> DROP FUNCTION EMC.GETSIGNERS;
-0 rows inserted/updated/deleted
-ij> select e_mail, "emcAddOn".VALIDCONTACT(e_mail) from EMC.CONTACTS;
-E_MAIL                        |2     
--------------------------------------
-bill@ruletheworld.com         |0     
-penguin@antartic.com          |0     
-big@blue.com                  |0     
-spammer@ripoff.com            |0     
-open@source.org               |1     
-spamking@cracker.org          |1     
-ij> call SYSCS_UTIL.SYSCS_SET_DATABASE_PROPERTY('derby.database.classpath', '');
-0 rows inserted/updated/deleted
-ij> select e_mail, "emcAddOn".VALIDCONTACT(e_mail) from EMC.CONTACTS;
-ERROR 42X51: The class 'org.apache.derbyTesting.databaseclassloader.addon.vendor.util' does not exist or is inaccessible. This can happen if the class is not public.
-ERROR XJ001: Java exception: 'org.apache.derbyTesting.databaseclassloader.addon.vendor.util: java.lang.ClassNotFoundException'.
-ij> CALL SQLJ.REMOVE_JAR('"emcAddOn"."MailAddOn"', 0);
-0 rows inserted/updated/deleted
-ij> DROP FUNCTION "emcAddOn".VALIDCONTACT;
-0 rows inserted/updated/deleted
-ij> DROP TABLE EMC.CONTACTS;
-0 rows inserted/updated/deleted
-ij> 
+ij> -- test database class loading.
+maximumdisplaywidth 300;
+ij> create schema emc;
+0 rows inserted/updated/deleted
+ij> set schema emc;
+0 rows inserted/updated/deleted
+ij> create table contacts (id int primary key, e_mail varchar(30));
+0 rows inserted/updated/deleted
+ij> create procedure EMC.ADDCONTACT(id INT, e_mail VARCHAR(30))
+MODIFIES SQL DATA
+external name 'org.apache.derbyTesting.databaseclassloader.emc.addContact'
+language java parameter style java;
+0 rows inserted/updated/deleted
+ij> create function EMC.GETARTICLE(path VARCHAR(40)) RETURNS VARCHAR(256)
+NO SQL
+external name 'org.apache.derbyTesting.databaseclassloader.emc.getArticle'
+language java parameter style java;
+0 rows inserted/updated/deleted
+ij> -- fails because no class in classpath, 
+CALL EMC.ADDCONTACT(1, 'bill@somecompany.com');
+ERROR 42X51: The class 'org.apache.derbyTesting.databaseclassloader.emc' does not exist or is inaccessible. This can happen if the class is not public.
+ERROR XJ001: Java exception: 'org.apache.derbyTesting.databaseclassloader.emc: java.lang.ClassNotFoundException'.
+ij> -- install the jar, copied there by the magic of supportfiles
+-- in the test harness (dcl_app.properties). The source for
+-- the class is contained within the jar for reference.
+CALL SQLJ.INSTALL_JAR('file:extin/dcl_emc1.jar', 'EMC.MAIL_APP', 0);
+0 rows inserted/updated/deleted
+ij> -- fails because no class not in classpath, jar file not in database classpath.
+CALL EMC.ADDCONTACT(1, 'bill@somecompany.com');
+ERROR 42X51: The class 'org.apache.derbyTesting.databaseclassloader.emc' does not exist or is inaccessible. This can happen if the class is not public.
+ERROR XJ001: Java exception: 'org.apache.derbyTesting.databaseclassloader.emc: java.lang.ClassNotFoundException'.
+ij> -- now add this into the database class path
+call SYSCS_UTIL.SYSCS_SET_DATABASE_PROPERTY('derby.database.classpath', 'EMC.MAIL_APP');
+0 rows inserted/updated/deleted
+ij> -- all should work now
+CALL EMC.ADDCONTACT(1, 'bill@ruletheworld.com');
+0 rows inserted/updated/deleted
+ij> CALL EMC.ADDCONTACT(2, 'penguin@antartic.com');
+0 rows inserted/updated/deleted
+ij> SELECT id, e_mail from EMC.CONTACTS;
+ID         |E_MAIL                        
+------------------------------------------
+1          |bill@ruletheworld.com         
+2          |penguin@antartic.com          
+ij> -- Test resource loading from the jar file
+-- Simple path should be prepended with the package name
+-- of the class executing the code to find
+-- /org/apache/derbyTesting/databaseclassloader/graduation.txt
+VALUES EMC.GETARTICLE('graduate.txt');
+1                                                                                                                                                                                                                                                                                                           
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+The Apache Foundation has released the first version of the open-source Derby database, which also gained support from Sun Microsystems.                                                                                                                                                                    
+ij> -- now an absolute path
+VALUES EMC.GETARTICLE('/article/release.txt');
+1                                                                                                                                                                                                                                                                                                           
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+The Apache Derby development community is pleased to announce its first release after graduating from the Apache Incubator, Apache Derby 10.1.1.0.                                                                                                                                                          
+ij> -- no such resources
+VALUES EMC.GETARTICLE('/article/fred.txt');
+1                                                                                                                                                                                                                                                                                                           
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+NULL                                                                                                                                                                                                                                                                                                        
+ij> VALUES EMC.GETARTICLE('barney.txt');
+1                                                                                                                                                                                                                                                                                                           
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+NULL                                                                                                                                                                                                                                                                                                        
+ij> -- try to read the class file should be disallowed
+-- by returning null
+VALUES EMC.GETARTICLE('emc.class');
+1                                                                                                                                                                                                                                                                                                           
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+NULL                                                                                                                                                                                                                                                                                                        
+ij> VALUES EMC.GETARTICLE('/org/apache/derbyTesting/databaseclassloader/emc.class');
+1                                                                                                                                                                                                                                                                                                           
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+NULL                                                                                                                                                                                                                                                                                                        
+ij> -- now the application needs to track if e-mails are valid
+ALTER TABLE EMC.CONTACTS ADD COLUMN OK SMALLINT;
+0 rows inserted/updated/deleted
+ij> SELECT id, e_mail, ok from EMC.CONTACTS;
+ID         |E_MAIL                        |OK    
+-------------------------------------------------
+1          |bill@ruletheworld.com         |NULL  
+2          |penguin@antartic.com          |NULL  
+ij> -- well written application, INSERT used explicit column names
+-- ok defaults to NULL
+CALL EMC.ADDCONTACT(3, 'big@blue.com');
+0 rows inserted/updated/deleted
+ij> SELECT id, e_mail, ok from EMC.CONTACTS;
+ID         |E_MAIL                        |OK    
+-------------------------------------------------
+1          |bill@ruletheworld.com         |NULL  
+2          |penguin@antartic.com          |NULL  
+3          |big@blue.com                  |NULL  
+ij> -- check the roll back of class loading.
+-- install a new jar in a transaction, see
+-- that the new class is used and then rollback
+-- the old class should be used after the rollback.
+AUTOCOMMIT OFF;
+ij> CALL SQLJ.REPLACE_JAR('file:extin/dcl_emc2.jar', 'EMC.MAIL_APP');
+0 rows inserted/updated/deleted
+ij> CALL EMC.ADDCONTACT(99, 'wormspam@soil.com');
+0 rows inserted/updated/deleted
+ij> SELECT id, e_mail, ok from EMC.CONTACTS;
+ID         |E_MAIL                        |OK    
+-------------------------------------------------
+1          |bill@ruletheworld.com         |NULL  
+2          |penguin@antartic.com          |NULL  
+3          |big@blue.com                  |NULL  
+99         |wormspam@soil.com             |0     
+ij> rollback;
+ij> AUTOCOMMIT ON;
+ij> SELECT id, e_mail, ok from EMC.CONTACTS;
+ID         |E_MAIL                        |OK    
+-------------------------------------------------
+1          |bill@ruletheworld.com         |NULL  
+2          |penguin@antartic.com          |NULL  
+3          |big@blue.com                  |NULL  
+ij> CALL EMC.ADDCONTACT(99, 'wormspam2@soil.com');
+0 rows inserted/updated/deleted
+ij> SELECT id, e_mail, ok from EMC.CONTACTS;
+ID         |E_MAIL                        |OK    
+-------------------------------------------------
+1          |bill@ruletheworld.com         |NULL  
+2          |penguin@antartic.com          |NULL  
+3          |big@blue.com                  |NULL  
+99         |wormspam2@soil.com            |NULL  
+ij> DELETE FROM EMC.CONTACTS WHERE ID = 99;
+1 row inserted/updated/deleted
+ij> -- now change the application to run checks on the e-mail
+-- address to ensure it is valid (in this case by seeing if
+-- simply includes 'spam' in the title.
+CALL SQLJ.REPLACE_JAR('file:extin/dcl_emc2.jar', 'EMC.MAIL_APP');
+0 rows inserted/updated/deleted
+ij> CALL EMC.ADDCONTACT(4, 'spammer@ripoff.com');
+0 rows inserted/updated/deleted
+ij> CALL EMC.ADDCONTACT(5, 'open@source.org');
+0 rows inserted/updated/deleted
+ij> SELECT id, e_mail, ok from EMC.CONTACTS;
+ID         |E_MAIL                        |OK    
+-------------------------------------------------
+1          |bill@ruletheworld.com         |NULL  
+2          |penguin@antartic.com          |NULL  
+3          |big@blue.com                  |NULL  
+4          |spammer@ripoff.com            |0     
+5          |open@source.org               |1     
+ij> -- now add another jar in to test two jars and
+-- a quoted identifer for the jar names.
+create schema "emcAddOn";
+0 rows inserted/updated/deleted
+ij> set schema emcAddOn;
+ERROR 42Y07: Schema 'EMCADDON' does not exist
+ij> set schema "emcAddOn";
+0 rows inserted/updated/deleted
+ij> create function "emcAddOn".VALIDCONTACT(e_mail VARCHAR(30))
+RETURNS SMALLINT
+READS SQL DATA
+external name 'org.apache.derbyTesting.databaseclassloader.addon.vendor.util.valid'
+language java parameter style java;
+0 rows inserted/updated/deleted
+ij> CALL SQLJ.INSTALL_JAR('file:extin/dcl_emcaddon.jar', '"emcAddOn"."MailAddOn"', 0);
+0 rows inserted/updated/deleted
+ij> call SYSCS_UTIL.SYSCS_SET_DATABASE_PROPERTY('derby.database.classpath', 'EMC.MAIL_APP:"emcAddOn"."MailAddOn"');
+0 rows inserted/updated/deleted
+ij> select e_mail, "emcAddOn".VALIDCONTACT(e_mail) from EMC.CONTACTS;
+E_MAIL                        |2     
+-------------------------------------
+bill@ruletheworld.com         |0     
+penguin@antartic.com          |0     
+big@blue.com                  |0     
+spammer@ripoff.com            |0     
+open@source.org               |1     
+ij> -- function that gets the signers of the class (loaded from the jar)
+create function EMC.GETSIGNERS(CLASS_NAME VARCHAR(256))
+RETURNS VARCHAR(60)
+NO SQL
+external name 'org.apache.derbyTesting.databaseclassloader.emc.getSigners'
+language java parameter style java;
+0 rows inserted/updated/deleted
+ij> -- at this point the jar is not signed, NULL expected
+VALUES EMC.GETSIGNERS('org.apache.derbyTesting.databaseclassloader.emc');
+1                                                                                                                                                                                                                                                                                                           
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+NULL                                                                                                                                                                                                                                                                                                        
+ij> -- Replace with a signed jar
+-- (self signed certificate)
+--
+-- Commands used to sign jar
+-- keytool -delete -alias emccto -keystore emcks -storepass ab987c
+-- keytool -genkey -dname "cn=EMC CTO, ou=EMC APP, o=Easy Mail Company, c=US" -alias emccto -keypass kpi135 -keystore emcks -storepass ab987c
+-- keytool -selfcert -alias emccto -keypass kpi135 -validity 36500 -keystore emcks -storepass ab987c
+-- keytool -keystore emcks -storepass ab987c -list -v
+-- jarsigner -keystore emcks -storepass ab987c -keypass kpi135 -signedjar dcl_emc2s.jar dcl_emc2.jar emccto
+--
+--
+CALL SQLJ.REPLACE_JAR('file:extin/dcl_emc2s.jar', 'EMC.MAIL_APP');
+0 rows inserted/updated/deleted
+ij> VALUES EMC.GETSIGNERS('org.apache.derbyTesting.databaseclassloader.emc');
+1                                                                                                                                                                                                                                                                                                           
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+CN=EMC CTO,O=Easy Mail Company,OU=EMC APP,C=US                                                                                                                                                                                                                                                              
+ij> -- other jar should not be signed
+VALUES EMC.GETSIGNERS('org.apache.derbyTesting.databaseclassloader.addon.vendor.util');
+1                                                                                                                                                                                                                                                                                                           
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+NULL                                                                                                                                                                                                                                                                                                        
+ij> -- replace with a hacked jar file, emc.class modified to diable
+-- valid e-mail address check but using same signatures.
+-- ie direct replacement of the .class file.
+CALL SQLJ.REPLACE_JAR('file:extin/dcl_emc2sm.jar', 'EMC.MAIL_APP');
+0 rows inserted/updated/deleted
+ij> CALL EMC.ADDCONTACT(99, 'spamking@cracker.org');
+0 rows inserted/updated/deleted
+ij> -- replace with a hacked jar file, emc.class modified to 
+-- be an invalid jar file (no signing on this jar).
+CALL SQLJ.REPLACE_JAR('file:extin/dcl_emc2l.jar', 'EMC.MAIL_APP');
+0 rows inserted/updated/deleted
+ij> CALL EMC.ADDCONTACT(999, 'spamking2@cracker.org');
+ERROR 42X51: The class 'org.apache.derbyTesting.databaseclassloader.emc' does not exist or is inaccessible. This can happen if the class is not public.
+ERROR XJ001: Java exception: 'org.apache.derbyTesting.databaseclassloader.emc : (org/apache/derbyTesting/databaseclassloader/emc) unknown constant pool entry tag at offset=10: java.lang.ClassNotFoundException'.
+ij> -- cleanup
+CALL SQLJ.REMOVE_JAR('EMC.MAIL_APP', 0);
+ERROR X0X07: Cannot drop jar file '"EMC"."MAIL_APP"' because its on your db2j.database.classpath '"EMC"."MAIL_APP"'.
+ij> call SYSCS_UTIL.SYSCS_SET_DATABASE_PROPERTY('derby.database.classpath', '"emcAddOn"."MailAddOn"');
+0 rows inserted/updated/deleted
+ij> CALL EMC.ADDCONTACT(99, 'cash@venture.com');
+ERROR 42X51: The class 'org.apache.derbyTesting.databaseclassloader.emc' does not exist or is inaccessible. This can happen if the class is not public.
+ERROR XJ001: Java exception: 'org.apache.derbyTesting.databaseclassloader.emc: java.lang.ClassNotFoundException'.
+ij> CALL SQLJ.REMOVE_JAR('EMC.MAIL_APP', 0);
+0 rows inserted/updated/deleted
+ij> DROP PROCEDURE EMC.ADDCONTACT;
+0 rows inserted/updated/deleted
+ij> DROP FUNCTION EMC.GETSIGNERS;
+0 rows inserted/updated/deleted
+ij> select e_mail, "emcAddOn".VALIDCONTACT(e_mail) from EMC.CONTACTS;
+E_MAIL                        |2     
+-------------------------------------
+bill@ruletheworld.com         |0     
+penguin@antartic.com          |0     
+big@blue.com                  |0     
+spammer@ripoff.com            |0     
+open@source.org               |1     
+spamking@cracker.org          |1     
+ij> call SYSCS_UTIL.SYSCS_SET_DATABASE_PROPERTY('derby.database.classpath', '');
+0 rows inserted/updated/deleted
+ij> select e_mail, "emcAddOn".VALIDCONTACT(e_mail) from EMC.CONTACTS;
+ERROR 42X51: The class 'org.apache.derbyTesting.databaseclassloader.addon.vendor.util' does not exist or is inaccessible. This can happen if the class is not public.
+ERROR XJ001: Java exception: 'org.apache.derbyTesting.databaseclassloader.addon.vendor.util: java.lang.ClassNotFoundException'.
+ij> CALL SQLJ.REMOVE_JAR('"emcAddOn"."MailAddOn"', 0);
+0 rows inserted/updated/deleted
+ij> DROP FUNCTION "emcAddOn".VALIDCONTACT;
+0 rows inserted/updated/deleted
+ij> DROP TABLE EMC.CONTACTS;
+0 rows inserted/updated/deleted
+ij> 

Modified: db/derby/code/branches/10.1/java/testing/org/apache/derbyTesting/functionTests/master/jdk15/dcl.out
URL: http://svn.apache.org/viewcvs/db/derby/code/branches/10.1/java/testing/org/apache/derbyTesting/functionTests/master/jdk15/dcl.out?rev=330592&r1=330591&r2=330592&view=diff
==============================================================================
--- db/derby/code/branches/10.1/java/testing/org/apache/derbyTesting/functionTests/master/jdk15/dcl.out (original)
+++ db/derby/code/branches/10.1/java/testing/org/apache/derbyTesting/functionTests/master/jdk15/dcl.out Thu Nov  3 10:00:00 2005
@@ -186,8 +186,10 @@
 -- (self signed certificate)
 --
 -- Commands used to sign jar
+-- keytool -delete -alias emccto -keystore emcks -storepass ab987c
 -- keytool -genkey -dname "cn=EMC CTO, ou=EMC APP, o=Easy Mail Company, c=US" -alias emccto -keypass kpi135 -keystore emcks -storepass ab987c
--- keytool -selfcert -alias emccto -keypass kpi135 -keystore emcks -storepass ab987c
+-- keytool -selfcert -alias emccto -keypass kpi135 -validity 36500 -keystore emcks -storepass ab987c
+-- keytool -keystore emcks -storepass ab987c -list -v
 -- jarsigner -keystore emcks -storepass ab987c -keypass kpi135 -signedjar dcl_emc2s.jar dcl_emc2.jar emccto
 --
 --

Modified: db/derby/code/branches/10.1/java/testing/org/apache/derbyTesting/functionTests/tests/lang/dcl.sql
URL: http://svn.apache.org/viewcvs/db/derby/code/branches/10.1/java/testing/org/apache/derbyTesting/functionTests/tests/lang/dcl.sql?rev=330592&r1=330591&r2=330592&view=diff
==============================================================================
--- db/derby/code/branches/10.1/java/testing/org/apache/derbyTesting/functionTests/tests/lang/dcl.sql (original)
+++ db/derby/code/branches/10.1/java/testing/org/apache/derbyTesting/functionTests/tests/lang/dcl.sql Thu Nov  3 10:00:00 2005
@@ -116,8 +116,10 @@
 -- (self signed certificate)
 --
 -- Commands used to sign jar
+-- keytool -delete -alias emccto -keystore emcks -storepass ab987c
 -- keytool -genkey -dname "cn=EMC CTO, ou=EMC APP, o=Easy Mail Company, c=US" -alias emccto -keypass kpi135 -keystore emcks -storepass ab987c
--- keytool -selfcert -alias emccto -keypass kpi135 -keystore emcks -storepass ab987c
+-- keytool -selfcert -alias emccto -keypass kpi135 -validity 36500 -keystore emcks -storepass ab987c
+-- keytool -keystore emcks -storepass ab987c -list -v
 -- jarsigner -keystore emcks -storepass ab987c -keypass kpi135 -signedjar dcl_emc2s.jar dcl_emc2.jar emccto
 --
 --

Modified: db/derby/code/branches/10.1/java/testing/org/apache/derbyTesting/functionTests/tests/lang/dcl_emc2s.jar
URL: http://svn.apache.org/viewcvs/db/derby/code/branches/10.1/java/testing/org/apache/derbyTesting/functionTests/tests/lang/dcl_emc2s.jar?rev=330592&r1=330591&r2=330592&view=diff
==============================================================================
Binary files - no diff available.