* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Predis\Command; /** * @group commands * @group realm-hash */ class HashDeleteTest extends PredisCommandTestCase { /** * {@inheritdoc} */ protected function getExpectedCommand() { return 'Predis\Command\HashDelete'; } /** * {@inheritdoc} */ protected function getExpectedId() { return 'HDEL'; } /** * @group disconnected */ public function testFilterArguments() { $arguments = array('key', 'field1', 'field2', 'field3'); $expected = array('key', 'field1', 'field2', 'field3'); $command = $this->getCommand(); $command->setArguments($arguments); $this->assertSame($expected, $command->getArguments()); } /** * @group disconnected */ public function testFilterArgumentsFieldsAsSingleArray() { $arguments = array('key', array('field1', 'field2', 'field3')); $expected = array('key', 'field1', 'field2', 'field3'); $command = $this->getCommand(); $command->setArguments($arguments); $this->assertSame($expected, $command->getArguments()); } /** * @group disconnected */ public function testParseResponse() { $this->assertSame(1, $this->getCommand()->parseResponse(1)); } /** * @group connected */ public function testDeletesSpecifiedFieldsFromHash() { $redis = $this->getClient(); $redis->hmset('metavars', 'foo', 'bar', 'hoge', 'piyo', 'lol', 'wut'); $this->assertSame(2, $redis->hdel('metavars', 'foo', 'hoge')); $this->assertSame(0, $redis->hdel('metavars', 'foofoo')); $this->assertSame(0, $redis->hdel('unknown', 'foo')); } /** * @group connected * @expectedException \Predis\Response\ServerException * @expectedExceptionMessage Operation against a key holding the wrong kind of value */ public function testThrowsExceptionOnWrongType() { $redis = $this->getClient(); $redis->set('foo', 'bar'); $redis->hdel('foo', 'bar'); } }