File tree 1 file changed +19
-0
lines changed
tests/Predis/Command/Redis
1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -90,6 +90,25 @@ public function testAbortsTransactionOnExternalWriteOperations(): void
90
90
$ this ->assertSame ('hijacked ' , $ redis1 ->get ('foo ' ));
91
91
}
92
92
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
+
93
112
/**
94
113
* @group connected
95
114
* @requiresRedisVersion >= 2.2.0
You can’t perform that action at this time.
0 commit comments