blob: 48b41a5b3c4b00bb1f1162dcc4e3a267e4252dc5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 1998, 2013 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 v1.0 and Eclipse Distribution License v. 1.0
* which accompanies this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* Oracle - initial API and implementation from Oracle TopLink
******************************************************************************/
package org.eclipse.persistence.testing.tests.clientserver;
import org.eclipse.persistence.sessions.*;
import org.eclipse.persistence.sessions.DatabaseLogin;
import org.eclipse.persistence.exceptions.*;
import org.eclipse.persistence.testing.framework.*;
public class NPEIsThrownWhenWeTryToWriteNullToANullableField extends TestCase {
protected DatabaseLogin login;
protected Server server;
public NPEIsThrownWhenWeTryToWriteNullToANullableField() {
setDescription("NPE");
}
public void setup() {
this.login = (DatabaseLogin)getSession().getLogin().clone();
this.server = new Server(this.login);
this.server.serverSession.setSessionLog(getSession().getSessionLog());
this.server.login();
this.server.copyDescriptors(getSession());
}
public void test() {
try {
Session cs = server.serverSession.acquireClientSession();
UnitOfWork uow = cs.acquireUnitOfWork();
EmployeeForClientServerSession emp = new EmployeeForClientServerSession();
emp.setId(new java.math.BigDecimal(1));
emp.setFirstName(null);
emp.setLastName("Khan");
uow.registerObject(emp);
uow.commit();
} catch (DatabaseException exception) {
if (exception.getErrorCode() != DatabaseException.SQL_EXCEPTION) {
throw new TestErrorException("Not the right exception which are we expeting");
}
}
}
}