CommentStatisticsUnitTest.php in Zircon Profile 8
File
core/modules/comment/tests/src/Unit/CommentStatisticsUnitTest.php
View source
<?php
namespace Drupal\Tests\comment\Unit;
use Drupal\comment\CommentStatistics;
use Drupal\Tests\UnitTestCase;
class CommentStatisticsUnitTest extends UnitTestCase {
protected $statement;
protected $select;
protected $database;
protected $commentStatistics;
protected $calls_to_fetch;
protected function setUp() {
$this->statement = $this
->getMockBuilder('Drupal\\Core\\Database\\Driver\\sqlite\\Statement')
->disableOriginalConstructor()
->getMock();
$this->statement
->expects($this
->any())
->method('fetchObject')
->will($this
->returnCallback(array(
$this,
'fetchObjectCallback',
)));
$this->select = $this
->getMockBuilder('Drupal\\Core\\Database\\Query\\Select')
->disableOriginalConstructor()
->getMock();
$this->select
->expects($this
->any())
->method('fields')
->will($this
->returnSelf());
$this->select
->expects($this
->any())
->method('condition')
->will($this
->returnSelf());
$this->select
->expects($this
->any())
->method('execute')
->will($this
->returnValue($this->statement));
$this->database = $this
->getMockBuilder('Drupal\\Core\\Database\\Connection')
->disableOriginalConstructor()
->getMock();
$this->database
->expects($this
->once())
->method('select')
->will($this
->returnValue($this->select));
$this->commentStatistics = new CommentStatistics($this->database, $this
->getMock('Drupal\\Core\\Session\\AccountInterface'), $this
->getMock('Drupal\\Core\\Entity\\EntityManagerInterface'), $this
->getMock('Drupal\\Core\\State\\StateInterface'));
}
public function testRead() {
$this->calls_to_fetch = 0;
$results = $this->commentStatistics
->read(array(
'1' => 'boo',
'2' => 'foo',
), 'snafoos');
$this
->assertEquals($results, array(
'something',
'something-else',
));
}
public function fetchObjectCallback() {
$this->calls_to_fetch++;
switch ($this->calls_to_fetch) {
case 1:
return 'something';
break;
case 2:
return 'something-else';
break;
default:
return FALSE;
break;
}
}
}