Package org.springframework.integration.voldemort.test.inbound

Source Code of org.springframework.integration.voldemort.test.inbound.ObjectKeyTest$ObjectKeyProducer

/*
* Copyright 2002-2013 the original author or authors.
*
* 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.springframework.integration.voldemort.test.inbound;

import junit.framework.Assert;
import org.junit.Test;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.integration.Message;
import org.springframework.integration.core.PollableChannel;
import org.springframework.integration.voldemort.test.BaseFunctionalTestCase;
import org.springframework.integration.voldemort.test.domain.Car;
import voldemort.client.StoreClient;

/**
* Test key of object type.
*
* @author Lukasz Antoniak
* @since 1.0
*/
@SuppressWarnings("unchecked")
public class ObjectKeyTest extends BaseFunctionalTestCase {
  @Test
  public void testReceiveMessageByObjectKey() {
    final ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext( "ObjectKeyTest-context.xml", getClass() );
    final StoreClient storeClient = context.getBean( "objectStoreClient", StoreClient.class );
    final PollableChannel inboundChannel = context.getBean( "voldemortInboundChannel", PollableChannel.class );

    // given
    final Car.CarId carId = new Car.CarId( 1 );
    final Car car = new Car( carId, "Ford Mustang" );
    storeClient.put( carId, car );

    // when
    final Message<Car> received = (Message<Car>) inboundChannel.receive();

    // then
    Assert.assertEquals( car, received.getPayload() );

    context.close();
  }

  /**
   * Produces key of object type.
   *
   * @author Lukasz Antoniak
   * @since 1.0
   */
  public static class ObjectKeyProducer {
    public Object getValue() {
      return new Car.CarId( 1 );
    }
  }
}
TOP

Related Classes of org.springframework.integration.voldemort.test.inbound.ObjectKeyTest$ObjectKeyProducer

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.