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
|
/*
* Class org.apache.derbyTesting.functionTests.tests.lang.Derby5652
*
* 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.functionTests.tests.lang;
import java.sql.SQLException;
import junit.framework.Test;
import org.apache.derbyTesting.junit.BaseJDBCTestCase;
import org.apache.derbyTesting.junit.BaseTestSuite;
import org.apache.derbyTesting.junit.SecurityManagerSetup;
public class Derby5652 extends BaseJDBCTestCase
{
///////////////////////////////////////////////////////////////////////////////////
//
// CONSTANTS
//
///////////////////////////////////////////////////////////////////////////////////
private static final String PROVIDER_PROPERTY = "derby.authentication.provider";
///////////////////////////////////////////////////////////////////////////////////
//
// STATE
//
///////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////
//
// CONSTRUCTOR
//
///////////////////////////////////////////////////////////////////////////////////
public Derby5652( String name ) { super(name); }
///////////////////////////////////////////////////////////////////////////////////
//
// JUnit BEHAVIOR
//
///////////////////////////////////////////////////////////////////////////////////
/**
* Construct top level suite in this JUnit test
*/
public static Test suite()
{
BaseTestSuite suite = new BaseTestSuite( "Derby5652" );
Test test = new Derby5652( "basicTest" );
// turn off security manager so that we can change system properties
test = SecurityManagerSetup.noSecurityManager( test );
suite.addTest( test );
return suite;
}
///////////////////////////////////////////////////////////////////////////////////
//
// TESTS
//
///////////////////////////////////////////////////////////////////////////////////
/**
* <p>
* Trailing garbage after the credentials db name should produce a useful
* error message instead of an assertion failure.
* </p>
*/
public void basicTest() throws Exception
{
// run the test in another process because it creates a zombie engine
// which can't be killed. see derby-5757.
assertLaunchedJUnitTestMethod( getClass().getName() + ".badProperty", null );
}
/**
* <p>
* Trailing garbage after the credentials db name should produce a useful
* error message.
* </p>
*/
public void badProperty() throws Exception
{
// bring down the engine in order to have a clean environment
getTestConfiguration().shutdownEngine();
// configure an illegal credentials db name--this one has an illegal trailing colon
setSystemProperty( PROVIDER_PROPERTY, "NATIVE:db:" );
// verify that you can't connect with this provider setting
try {
openUserConnection( "fooUser" );
}
catch (SQLException se)
{
// look for a login failure message. the detailed error is printed to
// derby.log and not percolated out of the Monitor.
assertSQLState( "08004", se );
}
}
}
|