Skip to content

Commit a2a0601

Browse files
authored
Add tests for getSet() with Parameters (#4127)
Add tests for getSet() with Parameters #4100
1 parent f8e1be3 commit a2a0601

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

src/test/java/redis/clients/jedis/commands/unified/BinaryValuesCommandsTestBase.java

+13
Original file line numberDiff line numberDiff line change
@@ -343,6 +343,19 @@ public void setGet() {
343343
assertNull(jedis.setGet(bbar, bfoo));
344344
}
345345

346+
@Test
347+
public void setGetWithParams() {
348+
jedis.del(bfoo);
349+
350+
// no previous, return null
351+
assertNull(jedis.setGet(bfoo, bbar, setParams().nx()));
352+
353+
// key already exists, new value should not be set, previous value should be bbar
354+
assertArrayEquals(bbar, jedis.setGet(bfoo, binaryValue, setParams().nx()));
355+
356+
assertArrayEquals(bbar, jedis.setGet(bfoo, binaryValue, setParams().xx()));
357+
}
358+
346359
@Test
347360
public void sendCommandTest() {
348361
Object obj = jedis.sendCommand(SET, "x".getBytes(), "1".getBytes());

src/test/java/redis/clients/jedis/commands/unified/StringValuesCommandsTestBase.java

+14
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import static org.junit.Assert.assertEquals;
44
import static org.junit.Assert.assertTrue;
55
import static org.junit.Assert.assertNull;
6+
import static redis.clients.jedis.params.SetParams.setParams;
67

78
import java.util.ArrayList;
89
import java.util.List;
@@ -41,6 +42,19 @@ public void getSet() {
4142
assertEquals("bar", value);
4243
}
4344

45+
@Test
46+
public void setGetWithParams() {
47+
jedis.del("foo");
48+
49+
// no previous, return null
50+
assertNull(jedis.setGet("foo", "bar", setParams().nx()));
51+
52+
// key already exists, new value should not be set, previous value should be bbar
53+
assertEquals("bar", jedis.setGet("foo", "foobar", setParams().nx()));
54+
55+
assertEquals("bar", jedis.setGet("foo", "foobar", setParams().xx()));
56+
}
57+
4458
@Test
4559
public void getDel() {
4660
String status = jedis.set("foo", "bar");

0 commit comments

Comments
 (0)