12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?php
- /*
- * This file is part of the Predis package.
- *
- * (c) Daniele Alessandri <suppakilla@gmail.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Predis\Command\Redis;
- /**
- * @group commands
- * @group realm-string
- */
- class SETNX_Test extends PredisCommandTestCase
- {
- /**
- * {@inheritdoc}
- */
- protected function getExpectedCommand()
- {
- return 'Predis\Command\Redis\SETNX';
- }
- /**
- * {@inheritdoc}
- */
- protected function getExpectedId()
- {
- return 'SETNX';
- }
- /**
- * @group disconnected
- */
- public function testFilterArguments()
- {
- $arguments = array('foo', 'bar');
- $expected = array('foo', 'bar');
- $command = $this->getCommand();
- $command->setArguments($arguments);
- $this->assertSame($expected, $command->getArguments());
- }
- /**
- * @group disconnected
- */
- public function testParseResponse()
- {
- $this->assertSame(0, $this->getCommand()->parseResponse(0));
- $this->assertSame(1, $this->getCommand()->parseResponse(1));
- }
- /**
- * @group connected
- */
- public function testSetStringValue()
- {
- $redis = $this->getClient();
- $this->assertSame(1, $redis->setnx('foo', 'bar'));
- $this->assertSame(0, $redis->setnx('foo', 'barbar'));
- $this->assertEquals('bar', $redis->get('foo'));
- }
- }
|