|
|
@ -9,23 +9,22 @@ import org.hamcrest.MatcherAssert;
|
|
|
|
import org.hamcrest.Matchers;
|
|
|
|
import org.hamcrest.Matchers;
|
|
|
|
import org.junit.Assert;
|
|
|
|
import org.junit.Assert;
|
|
|
|
import org.junit.Test;
|
|
|
|
import org.junit.Test;
|
|
|
|
|
|
|
|
import org.redisson.client.RedisException;
|
|
|
|
import org.redisson.core.RScript;
|
|
|
|
import org.redisson.core.RScript;
|
|
|
|
|
|
|
|
|
|
|
|
import com.lambdaworks.redis.RedisException;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public class RedissonScriptTest extends BaseTest {
|
|
|
|
public class RedissonScriptTest extends BaseTest {
|
|
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
@Test
|
|
|
|
public void testEval() {
|
|
|
|
public void testEval() {
|
|
|
|
RScript script = redisson.getScript();
|
|
|
|
RScript script = redisson.getScript();
|
|
|
|
List<Object> res = script.eval("return {1,2,3.3333,'foo',nil,'bar'}", RScript.ReturnType.MULTI, Collections.emptyList());
|
|
|
|
List<Object> res = script.eval("return {1,2,3.3333,'\"foo\"',nil,'bar'}", RScript.ReturnType.MULTI, Collections.emptyList());
|
|
|
|
MatcherAssert.assertThat(res, Matchers.<Object>contains(1L, 2L, 3L, "foo"));
|
|
|
|
MatcherAssert.assertThat(res, Matchers.<Object>contains(1L, 2L, 3L, "foo"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
@Test
|
|
|
|
public void testEvalAsync() {
|
|
|
|
public void testEvalAsync() {
|
|
|
|
RScript script = redisson.getScript();
|
|
|
|
RScript script = redisson.getScript();
|
|
|
|
Future<List<Object>> res = script.evalAsync("return {1,2,3.3333,'foo',nil,'bar'}", RScript.ReturnType.MULTI, Collections.emptyList());
|
|
|
|
Future<List<Object>> res = script.evalAsync("return {1,2,3.3333,'\"foo\"',nil,'bar'}", RScript.ReturnType.MULTI, Collections.emptyList());
|
|
|
|
MatcherAssert.assertThat(res.awaitUninterruptibly().getNow(), Matchers.<Object>contains(1L, 2L, 3L, "foo"));
|
|
|
|
MatcherAssert.assertThat(res.awaitUninterruptibly().getNow(), Matchers.<Object>contains(1L, 2L, 3L, "foo"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -53,8 +52,8 @@ public class RedissonScriptTest extends BaseTest {
|
|
|
|
Assert.assertEquals("282297a0228f48cd3fc6a55de6316f31422f5d17", r);
|
|
|
|
Assert.assertEquals("282297a0228f48cd3fc6a55de6316f31422f5d17", r);
|
|
|
|
String r1 = redisson.getScript().evalSha("282297a0228f48cd3fc6a55de6316f31422f5d17", RScript.ReturnType.VALUE, Collections.emptyList());
|
|
|
|
String r1 = redisson.getScript().evalSha("282297a0228f48cd3fc6a55de6316f31422f5d17", RScript.ReturnType.VALUE, Collections.emptyList());
|
|
|
|
Assert.assertEquals("bar", r1);
|
|
|
|
Assert.assertEquals("bar", r1);
|
|
|
|
String r2 = redisson.getScript().scriptFlush();
|
|
|
|
Boolean r2 = redisson.getScript().scriptFlush();
|
|
|
|
Assert.assertEquals("OK", r2);
|
|
|
|
Assert.assertTrue(r2);
|
|
|
|
try {
|
|
|
|
try {
|
|
|
|
redisson.getScript().evalSha("282297a0228f48cd3fc6a55de6316f31422f5d17", RScript.ReturnType.VALUE, Collections.emptyList());
|
|
|
|
redisson.getScript().evalSha("282297a0228f48cd3fc6a55de6316f31422f5d17", RScript.ReturnType.VALUE, Collections.emptyList());
|
|
|
|
} catch (Exception e) {
|
|
|
|
} catch (Exception e) {
|
|
|
|