Skip to content

Commit 6320af3

Browse files
committed
Watch: add test showing that passing a list of keys works too
1 parent 5da1b9d commit 6320af3

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

tests/Predis/Command/Redis/WATCH_Test.php

+19
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,25 @@ public function testAbortsTransactionOnExternalWriteOperations(): void
9090
$this->assertSame('hijacked', $redis1->get('foo'));
9191
}
9292

93+
/**
94+
* @group connected
95+
* @requiresRedisVersion >= 2.2.0
96+
*/
97+
public function testWatchMultipleKeysAsListAbortsTransactionOnExternalWriteOperations(): void
98+
{
99+
$redis1 = $this->getClient();
100+
$redis2 = $this->getClient();
101+
102+
$redis1->mset('foo', 'bar', 'hoge', 'piyo');
103+
104+
$this->assertEquals('OK', $redis1->watch(['foo', 'hoge']));
105+
$this->assertEquals('OK', $redis1->multi());
106+
$this->assertEquals('QUEUED', $redis1->set('hoge', 'bar'));
107+
$this->assertEquals('OK', $redis2->set('hoge', 'hijacked'));
108+
$this->assertNull($redis1->exec());
109+
$this->assertSame('hijacked', $redis1->get('hoge'));
110+
}
111+
93112
/**
94113
* @group connected
95114
* @requiresRedisVersion >= 2.2.0

0 commit comments

Comments
 (0)