blob: 8394157eeb4cfc125ed8f49b83710cbd8cf08000 [file] [log] [blame]
// Copyright 2008 The Apache Software Foundation
//
// Licensed 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.tapestry5.internal.hibernate;
import org.apache.tapestry5.ioc.Registry;
import org.apache.tapestry5.ioc.services.PropertyAccess;
import org.apache.tapestry5.ioc.services.TypeCoercer;
import org.apache.tapestry5.ioc.test.IOCTestCase;
import org.hibernate.Session;
import org.hibernate.mapping.Property;
import org.hibernate.mapping.RootClass;
import org.slf4j.Logger;
import org.testng.annotations.AfterClass;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;
public class HibernateEntityValueEncoderTest extends IOCTestCase
{
private Registry registry;
private PropertyAccess access;
private TypeCoercer typeCoercer;
@BeforeClass
public void setup()
{
registry = buildRegistry();
access = registry.getService(PropertyAccess.class);
typeCoercer = registry.getService(TypeCoercer.class);
}
@AfterClass
public void cleanup()
{
registry.shutdown();
registry = null;
access = null;
typeCoercer = null;
}
@Test
public void to_client_id_null()
{
Session session = mockSession();
Logger logger = mockLogger();
replay();
RootClass persistentClass = new RootClass();
Property idProperty = new Property();
idProperty.setName("id");
persistentClass.setIdentifierProperty(idProperty);
SampleEntity entity = new SampleEntity();
HibernateEntityValueEncoder<SampleEntity> encoder = new HibernateEntityValueEncoder<SampleEntity>(
SampleEntity.class, persistentClass, session, access, typeCoercer, logger);
try
{
encoder.toClient(entity);
unreachable();
}
catch (IllegalStateException ex)
{
assertMessageContains(ex, "Entity org.apache.tapestry5.internal.hibernate.SampleEntity",
"has an id property of null");
}
verify();
}
@Test
public void to_value_not_found()
{
Session session = mockSession();
Logger logger = mockLogger();
expect(session.get(SampleEntity.class, new Long(12345))).andReturn(null);
logger.error("Unable to convert client value '12345' into an entity instance.");
replay();
RootClass persistentClass = new RootClass();
Property idProperty = new Property();
idProperty.setName("id");
persistentClass.setIdentifierProperty(idProperty);
SampleEntity entity = new SampleEntity();
HibernateEntityValueEncoder<SampleEntity> encoder = new HibernateEntityValueEncoder<SampleEntity>(
SampleEntity.class, persistentClass, session, access, typeCoercer, logger);
assertNull(encoder.toValue("12345"));
verify();
}
protected final Session mockSession()
{
return newMock(Session.class);
}
}