blob: 4e3647d310cff7e206d24a13e96863f0221ea607 [file] [log] [blame]
/*
* Copyright (c) 1998, 2021 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// Oracle - initial API and implementation from Oracle TopLink
// Andrei Ilitchev May 28, 2008. Bug 224964: Provide support for Proxy Authentication through JPA.
// Changed the was Proxy Authentication supported in case of thin driver, but support for oci case remains the same.
// That caused re-arranging of the tests: before the fix all the tests were directly in proxiauthentication package;
// now the old tests (minus thin-specific setup) were moved into the new proxyauthentication.oci package,
// and the new tests defined in the new proxyauthentication.thin package.
package org.eclipse.persistence.testing.tests.proxyauthentication.oci;
import java.util.Properties;
import org.eclipse.persistence.sessions.*;
import org.eclipse.persistence.sessions.server.*;
/**
* ProxyAuthentication_FS: 4.3.1.1. Realizations of Main use case:
* "ServerSession uses main connection; each ClientSession uses its own proxy connection". (see 3.1.2.1)
* All we have to do is to make sure that proxy properties are found in the login,
* which is used to connect ClientSession's write connection.
* There are three alternative approaches to realize the use case.
* C. Each proxy authentication is mapped to a separate external connection pool - proxy properties set into pool's login.
* Proxy properties could be set either before ClientSession is created (useEvent=false);
* or in postAcquireClientSession event (useEvent=true).
*/
public class ExternalConnectionPoolTestCase extends ProxyAuthenticationConnectionTestCase {
boolean useEvent;
public ExternalConnectionPoolTestCase(Properties proxyProperties, boolean useEvent) {
super(proxyProperties);
this.useEvent = useEvent;
String suffix;
if (useEvent) {
suffix = " proxy setup in Event";
} else {
suffix = " proxy setup before ClientSession created";
}
setName(getName() + suffix);
}
@Override
protected void proxySetup() {
if (useEvent) {
// Use this approach if ClientSession created with default connection policy:
// cs = serverSession.acquireClientSession();
listener = new SessionEventAdapter() {
@Override
public void postAcquireClientSession(SessionEvent event) {
ClientSession cs = (ClientSession)event.getSession();
ConnectionPolicy policy = (ConnectionPolicy)cs.getConnectionPolicy().clone();
cs.setConnectionPolicy(policy);
proxyConnectionPoolSetup(cs.getConnectionPolicy(), cs.getParent());
}
};
} else {
// The most natural way of realizing this use case.
// The custom connection policy is used to create ClientSession:
// cs = serverSession.acquireClientSession(connectionPolicy);
ServerSession ss = (ServerSession)getServerSession();
// clone because the policy will be changed (pool name will be altered)
connectionPolicy = (ConnectionPolicy)ss.getDefaultConnectionPolicy().clone();
proxyConnectionPoolSetup(connectionPolicy, ss);
}
}
protected void proxyConnectionPoolSetup(ConnectionPolicy policy, ServerSession ss) {
// The ClientSession will connect using the pool with the same mane as proxy user
String proxyUser = proxyProperties.getProperty("PROXY_USER_NAME");
policy.setPoolName(proxyUser);
// if the pool doesn't exist - create and start up it
ConnectionPool pool = ss.getConnectionPool(proxyUser);
if (pool == null) {
// Clone serverSession's login - the clone will be used by the new connection pool
Login login = ss.getLogin().clone();
// set proxy properties in the login
addProxyPropertiesToLogin(login);
// create the new pool
pool = new ExternalConnectionPool(proxyUser, login, ss);
ss.getConnectionPools().put(proxyUser, pool);
// start it up
pool.startUp();
}
}
@Override
public void reset() {
super.reset();
String proxyUser = proxyProperties.getProperty("PROXY_USER_NAME");
ServerSession ss = (ServerSession)getServerSession();
ConnectionPool pool = ss.getConnectionPool(proxyUser);
if (pool != null) {
pool.shutDown();
ss.getConnectionPools().remove(proxyUser);
}
}
}