blob: 8a85463c436257cf1a79a7a195b0959f93d06714 [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
package org.eclipse.persistence.testing.tests.feature;
import org.eclipse.persistence.sessions.*;
import org.eclipse.persistence.sessions.Login;
import org.eclipse.persistence.testing.framework.*;
/**
* Insert the type's description here.
* Creation date: (6/5/00 2:38:36 PM)
* @author Administrator
*/
public class NullPasswordLoginTest extends org.eclipse.persistence.testing.framework.AutoVerifyTestCase {
/**
* Insert the method's description here.
* Creation date: (6/5/00 2:41:20 PM)
*/
public NullPasswordLoginTest() {
}
/**
* Insert the method's description here.
* Creation date: (6/5/00 2:39:56 PM)
*/
@Override
public void reset() {
if (!getSession().isConnected()) {
((DatabaseSession)getSession()).login();
}
}
/**
* Insert the method's description here.
* Creation date: (6/5/00 2:39:56 PM)
*/
@Override
public void setup() {
if (!getSession().getDatasourceLogin().getPlatform().isAccess()) {//Need MSACCESS for this test (null password)
throw new TestWarningException("This test requires MSAccess or another database that will accept a null password");
}
}
/**
* Insert the method's description here.
* Creation date: (6/5/00 2:39:56 PM)
*/
@Override
public void test() {
((DatabaseSession)getSession()).logout();
Login new_login = getSession().getDatasourceLogin().clone();
new_login.setPassword(null);
((DatabaseSession)getSession()).login(new_login);
}
/**
* Insert the method's description here.
* Creation date: (6/5/00 2:39:56 PM)
*/
@Override
public void verify() {
}
}