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

Source Code of org.springframework.integration.voldemort.test.inbound.VoldemortInboundAdapterTest

/*
* 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.Person;
import voldemort.client.StoreClient;
import voldemort.versioning.Versioned;

/**
* Voldemort basic inbound adapter tests.
*
* @author Lukasz Antoniak
* @since 1.0
*/
@SuppressWarnings("unchecked")
public class VoldemortInboundAdapterTest extends BaseFunctionalTestCase {
  /**
   * Tests inbound adapter configured with "search-key" attribute.
   */
  @Test
  public void testReceiveMessageKey() {
    final ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext( "VoldemortInboundAdapterTest-context.xml", getClass() );
    final StoreClient storeClient = context.getBean( "storeClient", StoreClient.class );
    final PollableChannel inboundChannel = context.getBean( "voldemortInboundChannel", PollableChannel.class );

    // given
    final Person lukasz = new Person( "lukasz", "Lukasz", "Antoniak" );
    storeClient.put( lukasz.getId(), lukasz );

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

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

    context.close();
  }

  /**
   * Tests inbound adapter configured with "search-key-expression" attribute.
   */
  @Test
  public void testReceiveMessageExpr() {
    final ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext( "VoldemortInboundAdapterTest-context.xml", getClass() );
    final StoreClient storeClient = context.getBean( "storeClient", StoreClient.class );
    final PollableChannel inboundChannel = context.getBean( "voldemortInboundChannel", PollableChannel.class );

    // given
    final Person kinga = new Person( "kinga", "Kinga", "Mroz" );
    storeClient.put( kinga.getId(), kinga );

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

    // then
    final Versioned found = storeClient.get( kinga.getId() );
    Assert.assertEquals( found, received.getPayload() );

    context.close();
  }

  @Test
  public void testDeleteAfterPoll() {
    final ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext( "VoldemortInboundAdapterTest-context.xml", getClass() );
    final StoreClient storeClient = context.getBean( "storeClient", StoreClient.class );
    final PollableChannel inboundChannel = context.getBean( "voldemortInboundChannel", PollableChannel.class );

    // given
    final Person robert = new Person( "robert", "Robert", "Antoniak" );
    storeClient.put( robert.getId(), robert );

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

    // then
    Assert.assertEquals( robert, received.getPayload() );
    final Versioned found = storeClient.get( robert.getId() );
    Assert.assertNull( found );

    context.close();
  }
}
TOP

Related Classes of org.springframework.integration.voldemort.test.inbound.VoldemortInboundAdapterTest

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.