Search in sources :

Example 1 with RedisClusterAsyncCommands

use of io.lettuce.core.cluster.api.async.RedisClusterAsyncCommands in project jetcache by alibaba.

the class RedisLettuceStarterTest method tests.

@Test
public void tests() throws Exception {
    if (RedisLettuceCacheTest.checkOS()) {
        System.setProperty("spring.profiles.active", "redislettuce-cluster");
    } else {
        System.setProperty("spring.profiles.active", "redislettuce");
    }
    context = SpringApplication.run(RedisLettuceStarterTest.class);
    doTest();
    A bean = context.getBean(A.class);
    bean.test();
    RedisClient t1 = (RedisClient) context.getBean("defaultClient");
    RedisClient t2 = (RedisClient) context.getBean("a1Client");
    Assert.assertNotNull(t1);
    Assert.assertNotNull(t2);
    Assert.assertNotSame(t1, t2);
    AutoConfigureBeans acb = context.getBean(AutoConfigureBeans.class);
    String key = "remote.A1";
    Assert.assertTrue(new LettuceFactory(acb, key, StatefulRedisConnection.class).getObject() instanceof StatefulRedisConnection);
    Assert.assertTrue(new LettuceFactory(acb, key, RedisCommands.class).getObject() instanceof RedisCommands);
    Assert.assertTrue(new LettuceFactory(acb, key, RedisAsyncCommands.class).getObject() instanceof RedisAsyncCommands);
    Assert.assertTrue(new LettuceFactory(acb, key, RedisReactiveCommands.class).getObject() instanceof RedisReactiveCommands);
    if (RedisLettuceCacheTest.checkOS()) {
        key = "remote.A2";
        Assert.assertTrue(new LettuceFactory(acb, key, RedisClusterClient.class).getObject() instanceof RedisClusterClient);
        Assert.assertTrue(new LettuceFactory(acb, key, RedisClusterCommands.class).getObject() instanceof RedisClusterCommands);
        Assert.assertTrue(new LettuceFactory(acb, key, RedisClusterAsyncCommands.class).getObject() instanceof RedisClusterAsyncCommands);
        Assert.assertTrue(new LettuceFactory(acb, key, RedisClusterReactiveCommands.class).getObject() instanceof RedisClusterReactiveCommands);
        key = "remote.A2_slave";
        Assert.assertTrue(new LettuceFactory(acb, key, RedisClusterClient.class).getObject() instanceof RedisClusterClient);
    }
}
Also used : RedisClusterCommands(io.lettuce.core.cluster.api.sync.RedisClusterCommands) StatefulRedisConnection(io.lettuce.core.api.StatefulRedisConnection) RedisClusterAsyncCommands(io.lettuce.core.cluster.api.async.RedisClusterAsyncCommands) RedisClient(io.lettuce.core.RedisClient) RedisCommands(io.lettuce.core.api.sync.RedisCommands) RedisAsyncCommands(io.lettuce.core.api.async.RedisAsyncCommands) RedisClusterReactiveCommands(io.lettuce.core.cluster.api.reactive.RedisClusterReactiveCommands) RedisClusterClient(io.lettuce.core.cluster.RedisClusterClient) RedisReactiveCommands(io.lettuce.core.api.reactive.RedisReactiveCommands) SpringTest(com.alicp.jetcache.test.spring.SpringTest) RedisLettuceCacheTest(com.alicp.jetcache.redis.lettuce.RedisLettuceCacheTest) Test(org.junit.Test)

Aggregations

RedisLettuceCacheTest (com.alicp.jetcache.redis.lettuce.RedisLettuceCacheTest)1 SpringTest (com.alicp.jetcache.test.spring.SpringTest)1 RedisClient (io.lettuce.core.RedisClient)1 StatefulRedisConnection (io.lettuce.core.api.StatefulRedisConnection)1 RedisAsyncCommands (io.lettuce.core.api.async.RedisAsyncCommands)1 RedisReactiveCommands (io.lettuce.core.api.reactive.RedisReactiveCommands)1 RedisCommands (io.lettuce.core.api.sync.RedisCommands)1 RedisClusterClient (io.lettuce.core.cluster.RedisClusterClient)1 RedisClusterAsyncCommands (io.lettuce.core.cluster.api.async.RedisClusterAsyncCommands)1 RedisClusterReactiveCommands (io.lettuce.core.cluster.api.reactive.RedisClusterReactiveCommands)1 RedisClusterCommands (io.lettuce.core.cluster.api.sync.RedisClusterCommands)1 Test (org.junit.Test)1