1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
|
ij> --
-- 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.
--
-- This script tests configuring an un-encrypted database
-- for encryption and re-encryption of an encrypted database.
-- with new enryption key/password.
-- if there are any global transactions in the prepared state after
-- recovery; encrypion/re-encryption of a database should fail.
disconnect;
ij> xa_datasource 'wombat_en' create;
ij> xa_connect ;
ij> xa_start xa_noflags 0;
ij> xa_getconnection;
ij> create table foo (a int);
0 rows inserted/updated/deleted
ij> insert into foo values (0);
1 row inserted/updated/deleted
ij> insert into foo values (1);
1 row inserted/updated/deleted
ij> select * from foo;
A
-----------
0
1
ij> xa_end xa_success 0;
ij> xa_commit xa_1phase 0;
ij> -- prepare transaction and shutdown
xa_start xa_noflags 1;
ij> insert into foo values (2);
1 row inserted/updated/deleted
ij> insert into foo values (3);
1 row inserted/updated/deleted
ij> xa_end xa_success 1;
ij> -- prepare the global tx
xa_prepare 1;
ij> -- shutdown the database
disconnect;
ij> connect 'jdbc:derby:;shutdown=true';
ERROR XJ015: Derby system shutdown.
ij> -- configure the database for encrypion with an external encryption key.
-- this should fail because of the global transacton in the prepared state.
connect 'jdbc:derby:wombat_en;dataEncryption=true;encryptionKey=6162636465666768';
ERROR XJ040: Failed to start database 'wombat_en' with class loader XXXX, see the next exception for details.
ERROR XBCXO: Cannot encrypt, re-encrypt or decrypt the database when there is a global transaction in the prepared state.
ij> ---attempt to configure the database for encrypion with a boot password.
-- this should fail because of the global transacton in
-- the prepared state.
connect 'jdbc:derby:wombat_en;dataEncryption=true;bootPassword=xyz1234abc';
ERROR XJ040: Failed to start database 'wombat_en' with class loader XXXX, see the next exception for details.
ERROR XBCXO: Cannot encrypt, re-encrypt or decrypt the database when there is a global transaction in the prepared state.
ij> -- now reboot the db and commit the transaction in the prepapred state.
xa_datasource 'wombat_en';
ij> xa_connect ;
ij> xa_start xa_noflags 2;
ij> xa_getconnection;
ij> insert into foo values (4);
1 row inserted/updated/deleted
ij> xa_recover xa_startrscan;
[, Recovered 1 in-doubt transactions, , Transaction 1 : (1,776f6d6261745f656e,776f6d6261745f656e)]
ij> xa_commit xa_2phase 1;
ij> select * from foo;
A
-----------
0
1
2
3
4
ij> xa_end xa_success 2;
ij> xa_commit xa_1phase 2;
ij> -- shutdown the database
disconnect;
ij> connect 'jdbc:derby:;shutdown=true';
ERROR XJ015: Derby system shutdown.
ij> --- configure the database for encrypion with a boot password.
--- this should pass.
connect 'jdbc:derby:wombat_en;dataEncryption=true;bootPassword=xyz1234abc';
ij> disconnect;
ij> xa_datasource 'wombat_en';
ij> xa_connect ;
ij> xa_start xa_noflags 3;
ij> xa_getconnection;
ij> insert into foo values (5);
1 row inserted/updated/deleted
ij> xa_end xa_success 3;
ij> -- prepare the global tx
xa_prepare 3;
ij> -- shutdown the database
disconnect;
ij> connect 'jdbc:derby:;shutdown=true';
ERROR XJ015: Derby system shutdown.
ij> -- attempt to reconfigure the database with a new password.
-- this should fail because of the global transaction in the prepared state
-- after recovery.
connect 'jdbc:derby:wombat_en;bootPassword=xyz1234abc;newBootPassword=new1234xyz';
ERROR XJ040: Failed to start database 'wombat_en' with class loader XXXX, see the next exception for details.
ERROR XBCXO: Cannot encrypt, re-encrypt or decrypt the database when there is a global transaction in the prepared state.
ij> -- Attempt to decrypt the database.
-- This should fail because of the global transaction in the prepared state.
connect 'jdbc:derby:wombat_en;bootPassword=xyz1234abc;decryptDatabase=true';
ERROR XJ040: Failed to start database 'wombat_en' with class loader XXXX, see the next exception for details.
ERROR XBCXO: Cannot encrypt, re-encrypt or decrypt the database when there is a global transaction in the prepared state.
ij> -- now reboot the db and commit the transaction in the prepared state.
connect 'jdbc:derby:wombat_en;bootPassword=xyz1234abc';
ij> disconnect;
ij> xa_datasource 'wombat_en';
ij> xa_connect ;
ij> xa_start xa_noflags 4;
ij> xa_getconnection;
ij> insert into foo values (6);
1 row inserted/updated/deleted
ij> xa_recover xa_startrscan;
[, Recovered 1 in-doubt transactions, , Transaction 1 : (3,776f6d6261745f656e,776f6d6261745f656e)]
ij> xa_commit xa_2phase 3;
ij> select * from foo;
A
-----------
0
1
2
3
4
5
6
ij> xa_end xa_success 4;
ij> xa_commit xa_1phase 4;
ij> -- shutdown the database
disconnect;
ij> connect 'jdbc:derby:;shutdown=true';
ERROR XJ015: Derby system shutdown.
ij> --- re-encrypt the database with a new password.
--- this should pass.
connect 'jdbc:derby:wombat_en;bootPassword=xyz1234abc;newBootPassword=new1234xyz';
ij> select * from foo ;
A
-----------
0
1
2
3
4
5
6
ij>
|