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 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371
|
/*
Derby - Class org.apache.derbyTesting.unitTests.services.T_CacheService
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.
*/
package org.apache.derbyTesting.unitTests.services;
import java.security.AccessController;
import java.security.PrivilegedActionException;
import java.security.PrivilegedExceptionAction;
import org.apache.derbyTesting.unitTests.harness.T_Generic;
import org.apache.derbyTesting.unitTests.harness.T_Fail;
import org.apache.derby.iapi.services.cache.*;
import org.apache.derby.iapi.services.daemon.*;
import org.apache.derby.iapi.services.monitor.Monitor;
import org.apache.derby.iapi.error.StandardException;
public class T_CacheService extends T_Generic implements CacheableFactory {
protected CacheFactory cf;
public Cacheable newCacheable(CacheManager cm) {
return new T_CachedInteger();
}
/**
@exception T_Fail - the test has failed.
*/
protected void runTests() throws T_Fail {
DaemonFactory df;
try {
cf = (CacheFactory) startSystemModule(getModuleToTestProtocolName());
df = (DaemonFactory) startSystemModule(org.apache.derby.iapi.reference.Module.DaemonFactory);
} catch (StandardException mse) {
throw T_Fail.exceptionFail(mse);
}
if (cf == null) {
throw T_Fail.testFailMsg(getModuleToTestProtocolName() + " module not started.");
}
if (df == null)
throw T_Fail.testFailMsg(org.apache.derby.iapi.reference.Module.DaemonFactory + " module not started.");
try {
DaemonService ds = df.createNewDaemon("CacheTester");
if (ds == null)
throw T_Fail.testFailMsg("Can't create deamon service");
CacheManager cm1 = cf.newCacheManager(this, "testCache1", 20, 40);
if (cm1 == null)
throw T_Fail.testFailMsg("unable to create cache manager");
T001(cm1, 40);
cm1.useDaemonService(ds);
thrashCache(cm1, 10, 1000);
cm1.shutdown();
cm1 = null;
CacheManager cm2 = cf.newCacheManager(this, "testCache2", 0, 1);
if (cm2 == null)
throw T_Fail.testFailMsg("unable to create cache manager");
T001(cm2, 1);
cm2.useDaemonService(ds);
thrashCache(cm2, 10, 1000);
cm2.shutdown();
cm2 = null;
CacheManager cm3= cf.newCacheManager(this, "testCache3", 2000, 40);
if (cm3 == null)
throw T_Fail.testFailMsg("unable to create cache manager");
T001(cm3, 40);
cm3.useDaemonService(ds);
thrashCache(cm3, 10, 1000);
cm3.shutdown();
cm3 = null;
// now two that don't use the daemon service
CacheManager cm4 = cf.newCacheManager(this, "testCache4", 2000, 40);
if (cm4 == null)
throw T_Fail.testFailMsg("unable to create cache manager");
T001(cm4, 40);
thrashCache(cm4, 10, 1000);
cm4.shutdown();
cm4 = null;
CacheManager cm5 = cf.newCacheManager(this, "testCache5", 0, 40);
if (cm5 == null)
throw T_Fail.testFailMsg("unable to create cache manager");
T001(cm5, 40);
thrashCache(cm5, 10, 1000);
cm5.shutdown();
cm5 = null;
} catch (StandardException se) {
throw T_Fail.exceptionFail(se);
} catch (Throwable t) {
t.printStackTrace();
throw T_Fail.exceptionFail(t);
}
}
/**
Get the name of the protocol for the module to test.
This is the 'factory.MODULE' variable.
'moduleName' to the name of the module to test.
*/
protected String getModuleToTestProtocolName() {
return org.apache.derby.iapi.reference.Module.CacheFactory;
}
/*
** The tests
*/
/**
Test the find and findCached calls.
@exception StandardException Standard Derby Error policy
@exception T_Fail Some error
*/
protected void T001(CacheManager cm, int cacheSize) throws T_Fail, StandardException {
T_Key tkey1 = T_Key.simpleInt(1);
// cahce is empty, nothing should be there
t_findCachedFail(cm, tkey1);
// find a valid entry
cm.release(t_findSucceed(cm, tkey1));
// check it is still in the cache
cm.release(t_findCachedSucceed(cm, tkey1));
// look for an item that can't be found
T_Key tkey2 = T_Key.dontFindInt(2);
t_findCachedFail(cm, tkey2);
t_findFail(cm, tkey2);
// see if the first item still can be found
// can't assume it can be cached as it may have aged out ...
cm.release(t_findSucceed(cm, tkey1));
// now ensure we can find an item with the key that just couldn't
// be found
tkey2 = T_Key.simpleInt(2);
cm.release(t_findSucceed(cm, tkey2));
cm.release(t_findSucceed(cm, tkey1));
// now create a key that will cause an exception ...
T_Key tkey3 = T_Key.exceptionInt(3);
t_findCachedFail(cm, tkey3);
try {
t_findFail(cm, tkey3);
throw T_Fail.testFailMsg("find call lost user exception");
} catch (StandardException se) {
if (!(se instanceof T_CacheException))
throw se;
if (((T_CacheException) se).getType() != T_CacheException.IDENTITY_FAIL)
throw se;
}
tkey3 = T_Key.simpleInt(3);
cm.release(t_findSucceed(cm, tkey3));
cm.release(t_findSucceed(cm, tkey2));
cm.release(t_findSucceed(cm, tkey1));
// since this cache is in use by only this method we should
// be able to call clean with deadlocking and then ageOut
// leaving the cache empty.
cm.cleanAll();
cm.ageOut();
t_findCachedFail(cm, tkey1);
t_findCachedFail(cm, tkey2);
t_findCachedFail(cm, tkey3);
// now put many valid objects into the cache
for (int i = 0; i < 4 * cacheSize ; i++) {
T_Key tkeyi = T_Key.simpleInt(i);
cm.release(t_findSucceed(cm, tkeyi));
cm.release(t_findCachedSucceed(cm, tkeyi));
}
cm.cleanAll();
cm.ageOut();
for (int i = 0; i < 4 * cacheSize ; i++) {
T_Key tkeyi = T_Key.simpleInt(i);
t_findCachedFail(cm, tkeyi);
}
// Ensure that we can find an object multiple times
Cacheable e1 = t_findSucceed(cm, tkey1);
Cacheable e2 = t_findSucceed(cm, tkey2);
if (e1 == e2)
throw T_Fail.testFailMsg("same object returned for two different keys");
if (t_findSucceed(cm, tkey1) != e1)
throw T_Fail.testFailMsg("different object returned for same key");
if (t_findSucceed(cm, tkey2) != e2)
throw T_Fail.testFailMsg("different object returned for same key");
cm.release(e1);
cm.release(e1);
e1 = null;
cm.release(e2);
cm.release(e2);
e2 = null;
PASS("T001");
}
/*
** Multi-user tests
*/
protected void thrashCache(CacheManager cm, int threads, int iterations) throws T_Fail {
Thread[] children = new Thread[threads];
for (int i = 0; i < threads; i++) {
children[i] = new Thread(new T_CacheUser(cm, iterations, this, out));
}
for (int i = 0; i < threads; i++) {
children[i].start();
}
try {
for (int i = 0; i < threads; i++) {
if (threadFail != null)
throw threadFail;
children[i].join();
if (threadFail != null)
throw threadFail;
}
} catch (InterruptedException ie) {
throw T_Fail.exceptionFail(ie);
}
PASS("thrashCache");
}
protected T_Fail threadFail;
public synchronized void setChildException(T_Fail tf) {
if (threadFail == null)
threadFail = tf;
}
/**
A call to findCached() that is expected to return nothing.
@exception StandardException Standard Derby Error policy
@exception T_Fail Something was found.
*/
protected void t_findCachedFail(CacheManager cm, Object key) throws StandardException, T_Fail {
Cacheable entry = cm.findCached(key);
if (entry != null) {
throw T_Fail.testFailMsg("found cached item unexpectedly");
}
}
/**
A call to findCached() that is expected to find something.
@exception StandardException Standard Derby Error policy
@exception T_Fail Nothing was found.
*/
protected Cacheable t_findCachedSucceed(CacheManager cm, Object key) throws StandardException, T_Fail {
Cacheable entry = cm.findCached(key);
if (entry == null) {
throw T_Fail.testFailMsg("expected item to be in cache");
}
if (!entry.getIdentity().equals(key))
throw T_Fail.testFailMsg("item returned does not match key");
return entry;
}
/**
A call to find() that is expected to return nothing.
@exception T_Fail Something was found.
@exception StandardException Standard Derby Error policy
*/
protected void t_findFail(CacheManager cm, Object key) throws T_Fail, StandardException {
Cacheable entry = cm.find(key);
if (entry != null) {
throw T_Fail.testFailMsg("found item unexpectedly");
}
}
/**
A call to findCached() that is expected to find something.
@exception T_Fail Nothing was found.
@exception StandardException Standard Derby Error policy
*/
protected Cacheable t_findSucceed(CacheManager cm, Object key) throws T_Fail, StandardException {
Cacheable entry = cm.find(key);
if (entry == null) {
throw T_Fail.testFailMsg("expected item to be found");
}
if (!entry.getIdentity().equals(key))
throw T_Fail.testFailMsg("item returned does not match key");
return entry;
}
/**
* Privileged startup. Must be private so that user code
* can't call this entry point.
*/
private static Object startSystemModule( final String factoryInterface )
throws StandardException
{
try {
return AccessController.doPrivileged
(
new PrivilegedExceptionAction<Object>()
{
public Object run()
throws StandardException
{
return Monitor.startSystemModule( factoryInterface );
}
}
);
} catch (PrivilegedActionException pae)
{
throw StandardException.plainWrapException( pae );
}
}
}
|