Package org.springframework.data.redis.connection.lettuce

Source Code of org.springframework.data.redis.connection.lettuce.LettuceConnectionUnitTestSuite

/*
* Copyright 2014 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.data.redis.connection.lettuce;

import static org.mockito.Matchers.*;
import static org.mockito.Mockito.*;

import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.springframework.data.redis.connection.AbstractConnectionUnitTestBase;
import org.springframework.data.redis.connection.RedisServerCommands.ShutdownOption;
import org.springframework.data.redis.connection.lettuce.LettuceConnectionUnitTestSuite.LettuceConnectionUnitTests;
import org.springframework.data.redis.connection.lettuce.LettuceConnectionUnitTestSuite.LettucePipelineConnectionUnitTests;

import com.lambdaworks.redis.RedisAsyncConnection;
import com.lambdaworks.redis.RedisClient;
import com.lambdaworks.redis.codec.RedisCodec;

/**
* @author Christoph Strobl
*/
@RunWith(Suite.class)
@Suite.SuiteClasses({ LettuceConnectionUnitTests.class, LettucePipelineConnectionUnitTests.class })
public class LettuceConnectionUnitTestSuite {

  @SuppressWarnings("rawtypes")
  public static class LettuceConnectionUnitTests extends AbstractConnectionUnitTestBase<RedisAsyncConnection> {

    protected LettuceConnection connection;

    @SuppressWarnings({ "unchecked" })
    @Before
    public void setUp() {

      RedisClient clientMock = mock(RedisClient.class);
      when(clientMock.connectAsync((RedisCodec) any())).thenReturn(getNativeRedisConnectionMock());
      connection = new LettuceConnection(0, clientMock);
    }

    /**
     * @see DATAREDIS-184
     */
    @Test
    public void shutdownWithNullOpionsIsCalledCorrectly() {

      connection.shutdown(null);
      verifyNativeConnectionInvocation().shutdown(true);
    }

    /**
     * @see DATAREDIS-184
     */
    @Test
    public void shutdownWithNosaveOptionIsCalledCorrectly() {

      connection.shutdown(ShutdownOption.NOSAVE);
      verifyNativeConnectionInvocation().shutdown(false);
    }

    /**
     * @see DATAREDIS-184
     */
    @Test
    public void shutdownWithSaveOptionIsCalledCorrectly() {

      connection.shutdown(ShutdownOption.SAVE);
      verifyNativeConnectionInvocation().shutdown(true);
    }

    /**
     * <<<<<<< HEAD
     *
     * @see DATAREDIS-267
     */
    @Test
    public void killClientShouldDelegateCallCorrectly() {

      String ipPort = "127.0.0.1:1001";
      connection.killClient("127.0.0.1", 1001);
      verifyNativeConnectionInvocation().clientKill(eq(ipPort));
    }

    /**
     * @see DATAREDIS-270
     */
    @Test
    public void getClientNameShouldSendRequestCorrectly() {

      connection.getClientName();
      verifyNativeConnectionInvocation().clientGetname();
    }

    /**
     * @see DATAREDIS-277
     */
    @Test(expected = IllegalArgumentException.class)
    public void slaveOfShouldThrowExectpionWhenCalledForNullHost() {
      connection.slaveOf(null, 0);
    }

    /**
     * @see DATAREDIS-277
     */
    @Test
    public void slaveOfShouldBeSentCorrectly() {

      connection.slaveOf("127.0.0.1", 1001);
      verifyNativeConnectionInvocation().slaveof(eq("127.0.0.1"), eq(1001));
    }

    /**
     * @see DATAREDIS-277
     */
    @Test
    public void slaveOfNoOneShouldBeSentCorrectly() {

      connection.slaveOfNoOne();
      verifyNativeConnectionInvocation().slaveofNoOne();
    }
  }

  public static class LettucePipelineConnectionUnitTests extends LettuceConnectionUnitTests {

    @Override
    @Before
    public void setUp() {
      super.setUp();
      this.connection.openPipeline();
    }
  }

}
TOP

Related Classes of org.springframework.data.redis.connection.lettuce.LettuceConnectionUnitTestSuite

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.