[
https://issues.apache.org/jira/browse/DERBY-1001?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12490125
]
Kathey Marsden commented on DERBY-1001:
---------------------------------------
I am having trouble running these tests on Windows XP using eclipse I get
errors starting the database and also
java.sql.SQLException: Startup failed due to missing functionality for
org.apache.derby.iapi.services.crypto.CipherFactoryBuilder. Please ensure your
classpath includes the correct Derby software.
at
org.apache.derby.iapi.error.StandardException.newException(StandardException.java:305)
at
org.apache.derby.iapi.services.monitor.Monitor.missingImplementation(Monitor.java:656)
at
org.apache.derby.impl.services.monitor.TopService.bootModule(TopService.java:283)
at
org.apache.derby.impl.services.monitor.BaseMonitor.startModule(BaseMonitor.java:546)
at
org.apache.derby.iapi.services.monitor.Monitor.startSystemModule(Monitor.java:366)
at
org.apache.derby.impl.store.raw.RawStore.setupEncryptionEngines(RawStore.java:1183)
at org.apache.derby.impl.store.raw.RawStore.boot(RawStore.java:204)
at
org.apache.derby.impl.services.monitor.BaseMonitor.boot(BaseMonitor.java:1994)
at
org.apache.derby.impl.services.monitor.TopService.bootModule(TopService.java:291)
at
org.apache.derby.impl.services.monitor.BaseMonitor.startModule(BaseMonitor.java:546)
at
org.apache.derby.iapi.services.monitor.Monitor.bootServiceModule(Monitor.java:419)
at
org.apache.derby.impl.store.access.RAMAccessManager.boot(RAMAccessManager.java:985)
at
org.apache.derby.impl.services.monitor.BaseMonitor.boot(BaseMonitor.java:1994)
at
org.apache.derby.impl.services.monitor.TopService.bootModule(TopService.java:291)
at
org.apache.derby.impl.services.monitor.BaseMonitor.startModule(BaseMonitor.java:546)
at
org.apache.derby.iapi.services.monitor.Monitor.bootServiceModule(Monitor.java:419)
at
org.apache.derby.impl.db.BasicDatabase.bootStore(BasicDatabase.java:753)
at org.apache.derby.impl.db.BasicDatabase.boot(BasicDatabase.java:188)
at
org.apache.derby.impl.services.monitor.BaseMonitor.boot(BaseMonitor.java:1994)
at
org.apache.derby.impl.services.monitor.TopService.bootModule(TopService.java:291)
at
org.apache.derby.impl.services.monitor.BaseMonitor.bootService(BaseMonitor.java:1829)
at
org.apache.derby.impl.services.monitor.BaseMonitor.createPersistentService(BaseMonitor.java:1017)
at
org.apache.derby.iapi.services.monitor.Monitor.createPersistentService(Monitor.java:588)
at
org.apache.derby.impl.jdbc.EmbedConnection.createDatabase(EmbedConnection.java:1750)
at
org.apache.derby.impl.jdbc.EmbedConnection.<init>(EmbedConnection.java:281)
at
org.apache.derby.impl.jdbc.EmbedConnection30.<init>(EmbedConnection30.java:73)
at
org.apache.derby.jdbc.Driver30.getNewEmbedConnection(Driver30.java:74)
at org.apache.derby.jdbc.InternalDriver.connect(InternalDriver.java:209)
at
org.apache.derby.jdbc.EmbeddedDataSource.getConnection(EmbeddedDataSource.java:479)
at
org.apache.derby.jdbc.EmbeddedDataSource.getConnection(EmbeddedDataSource.java:423)
at
org.apache.derbyTesting.functionTests.tests.store.EncryptionKeyTest.getConnection(EncryptionKeyTest.java:564)
at
org.apache.derbyTesting.functionTests.tests.store.EncryptionKeyTest.getConnection(EncryptionKeyTest.java:476)
at
org.apache.derbyTesting.functionTests.tests.store.EncryptionKeyTest.testCreateWithOddEncryptionKeyLength(EncryptionKeyTest.java:385)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60)
at java.lang.reflect.Method.invoke(Method.java:391)
at junit.framework.TestCase.runTest(TestCase.java:154)
at junit.framework.TestCase.runBare(TestCase.java:127)
at
org.apache.derbyTesting.junit.BaseTestCase.runBare(BaseTestCase.java:88)
at junit.framework.TestResult$1.protect(TestResult.java:106)
at junit.framework.TestResult.runProtected(TestResult.java:124)
at junit.framework.TestResult.run(TestResult.java:109)
at junit.framework.TestCase.run(TestCase.java:118)
at junit.framework.TestSuite.runTest(TestSuite.java:208)
at junit.framework.TestSuite.run(TestSuite.java:203)
at junit.extensions.TestDecorator.basicRun(TestDecorator.java:22)
at junit.extensions.TestSetup$1.protect(TestSetup.java:19)
at junit.framework.TestResult.runProtected(TestResult.java:124)
at junit.extensions.TestSetup.run(TestSetup.java:23)
at
org.eclipse.jdt.internal.junit.runner.junit3.JUnit3TestReference.run(JUnit3TestReference.java:128)
at
org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at
org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:460)
at
org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:673)
at
org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:386)
at
org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:196)
Is there some special setup I need to do to run these tests?
Thanks
Kathey
> Rewrite 'store/encryptionKey.sql' to a JUnit test
> -------------------------------------------------
>
> Key: DERBY-1001
> URL: https://issues.apache.org/jira/browse/DERBY-1001
> Project: Derby
> Issue Type: Test
> Components: Test
> Affects Versions: 10.3.0.0
> Reporter: Kristian Waagan
> Assigned To: Kristian Waagan
> Priority: Minor
> Attachments: derby-1001-1a-preliminary.diff,
> derby-1001-1a-preliminary.stat
>
>
> This test has failed on Solaris10 for a long time, due to issues with the
> default security provider on this OS. See DERBY-788 for details.
> I consider rewriting this test as interresting because it allows us to see
> how things can be done in "the JUnit way".
> 1) Run test with multiple encryption algorithms with minimal test code
> duplication.
> 2) Special handling of exceptions for specific providers (PCKS11-Solaris).
> The rewritten test might cause some discussion on how we want to handle the
> issues mentioned above.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.