mirror of
https://github.com/chylex/Nextcloud-News.git
synced 2024-11-24 04:42:46 +01:00
ed066a8129
Signed-off-by: anoy <anoymouserver+github@mailbox.org>
1281 lines
40 KiB
PHP
1281 lines
40 KiB
PHP
<?php
|
|
/**
|
|
* Nextcloud - News
|
|
*
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
* later. See the COPYING file.
|
|
*
|
|
* @author Alessandro Cosentino <cosenal@gmail.com>
|
|
* @author Bernhard Posselt <dev@bernhard-posselt.com>
|
|
* @copyright 2012 Alessandro Cosentino
|
|
* @copyright 2012-2014 Bernhard Posselt
|
|
*/
|
|
|
|
namespace OCA\News\Tests\Unit\Db;
|
|
|
|
use OC\DB\QueryBuilder\Literal;
|
|
use OCA\News\Db\Item;
|
|
use OCA\News\Db\ItemMapperV2;
|
|
use OCA\News\Service\Exceptions\ServiceValidationException;
|
|
use OCA\News\Utility\Time;
|
|
use OCP\DB\QueryBuilder\IExpressionBuilder;
|
|
|
|
/**
|
|
* Class ItemMapperTest
|
|
*
|
|
* @package OCA\News\Tests\Unit\Db
|
|
*/
|
|
class ItemMapperPaginatedTest extends MapperTestUtility
|
|
{
|
|
|
|
/** @var ItemMapperV2 */
|
|
private $class;
|
|
|
|
/**
|
|
* @covers \OCA\News\Db\ItemMapperV2::__construct
|
|
*/
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
$time = $this->getMockBuilder(Time::class)
|
|
->getMock();
|
|
|
|
$this->class = new ItemMapperV2($this->db, $time);
|
|
}
|
|
|
|
public function testFindAllItemsInvalid()
|
|
{
|
|
$this->expectException(ServiceValidationException::class);
|
|
$this->expectExceptionMessage('Unexpected Feed type in call');
|
|
|
|
$this->db->expects($this->once())
|
|
->method('getQueryBuilder')
|
|
->willReturn($this->builder);
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('select')
|
|
->with('items.*')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('from')
|
|
->with('news_items', 'items')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('innerJoin')
|
|
->withConsecutive(['items', 'news_feeds', 'feeds', 'items.feed_id = feeds.id'])
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(3))
|
|
->method('andWhere')
|
|
->withConsecutive(
|
|
['feeds.user_id = :userId'],
|
|
['feeds.deleted_at = 0']
|
|
)
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(2))
|
|
->method('setParameter')
|
|
->withConsecutive(['userId', 'jack'], ['offset', 10])
|
|
->will($this->returnSelf());
|
|
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('setMaxResults')
|
|
->with(10)
|
|
->will($this->returnSelf());
|
|
|
|
|
|
$this->builder->expects($this->exactly(0))
|
|
->method('setFirstResult')
|
|
->with(10)
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('addOrderBy')
|
|
->with('items.id', 'DESC')
|
|
->willReturnSelf();
|
|
|
|
$this->builder->expects($this->never())
|
|
->method('executeQuery')
|
|
->willReturn($this->cursor);
|
|
|
|
$this->cursor->expects($this->never())
|
|
->method('fetch')
|
|
->willReturnOnConsecutiveCalls(
|
|
['id' => 4],
|
|
false
|
|
);
|
|
|
|
$this->class->findAllItems('jack', 232, 10, 10, false, []);
|
|
}
|
|
|
|
public function testFindAllItemsFullInverted()
|
|
{
|
|
$this->db->expects($this->once())
|
|
->method('getQueryBuilder')
|
|
->willReturn($this->builder);
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('select')
|
|
->with('items.*')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('from')
|
|
->with('news_items', 'items')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('innerJoin')
|
|
->withConsecutive(['items', 'news_feeds', 'feeds', 'items.feed_id = feeds.id'])
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(3))
|
|
->method('andWhere')
|
|
->withConsecutive(
|
|
['feeds.user_id = :userId'],
|
|
['feeds.deleted_at = 0'],
|
|
['items.id > :offset']
|
|
)
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(2))
|
|
->method('setParameter')
|
|
->withConsecutive(['userId', 'jack'], ['offset', 10])
|
|
->will($this->returnSelf());
|
|
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('setMaxResults')
|
|
->with(10)
|
|
->will($this->returnSelf());
|
|
|
|
|
|
$this->builder->expects($this->exactly(0))
|
|
->method('setFirstResult')
|
|
->with(10)
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('addOrderBy')
|
|
->with('items.id', 'ASC')
|
|
->willReturnSelf();
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('executeQuery')
|
|
->willReturn($this->cursor);
|
|
|
|
$this->cursor->expects($this->exactly(2))
|
|
->method('fetch')
|
|
->willReturnOnConsecutiveCalls(
|
|
['id' => 4],
|
|
false
|
|
);
|
|
|
|
$result = $this->class->findAllItems('jack', 3, 10, 10, true, []);
|
|
$this->assertEquals([Item::fromRow(['id' => 4])], $result);
|
|
}
|
|
|
|
public function testFindAllItemsUnread()
|
|
{
|
|
$this->db->expects($this->once())
|
|
->method('getQueryBuilder')
|
|
->willReturn($this->builder);
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('select')
|
|
->with('items.*')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('from')
|
|
->with('news_items', 'items')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('innerJoin')
|
|
->withConsecutive(['items', 'news_feeds', 'feeds', 'items.feed_id = feeds.id'])
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(4))
|
|
->method('andWhere')
|
|
->withConsecutive(
|
|
['feeds.user_id = :userId'],
|
|
['feeds.deleted_at = 0'],
|
|
['items.id < :offset'],
|
|
['items.unread = :unread']
|
|
)
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(3))
|
|
->method('setParameter')
|
|
->withConsecutive(['userId', 'jack'], ['offset', 10], ['unread', true])
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('setMaxResults')
|
|
->with(10)
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(0))
|
|
->method('setFirstResult')
|
|
->with(10)
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->never())
|
|
->method('orderBy')
|
|
->with('items.last_modified', 'DESC')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('addOrderBy')
|
|
->with('items.id', 'DESC')
|
|
->willReturnSelf();
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('executeQuery')
|
|
->willReturn($this->cursor);
|
|
|
|
$this->cursor->expects($this->exactly(2))
|
|
->method('fetch')
|
|
->willReturnOnConsecutiveCalls(
|
|
['id' => 4],
|
|
false
|
|
);
|
|
|
|
$result = $this->class->findAllItems('jack', 6, 10, 10, false, []);
|
|
$this->assertEquals([Item::fromRow(['id' => 4])], $result);
|
|
}
|
|
|
|
public function testFindAllItemsUnreadNoLimit()
|
|
{
|
|
$this->db->expects($this->once())
|
|
->method('getQueryBuilder')
|
|
->willReturn($this->builder);
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('select')
|
|
->with('items.*')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('from')
|
|
->with('news_items', 'items')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('innerJoin')
|
|
->withConsecutive(['items', 'news_feeds', 'feeds', 'items.feed_id = feeds.id'])
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(4))
|
|
->method('andWhere')
|
|
->withConsecutive(
|
|
['feeds.user_id = :userId'],
|
|
['feeds.deleted_at = 0'],
|
|
['items.id < :offset'],
|
|
['items.unread = :unread']
|
|
)
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(3))
|
|
->method('setParameter')
|
|
->withConsecutive(['userId', 'jack'], ['offset', 10], ['unread', true])
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->never())
|
|
->method('setMaxResults');
|
|
|
|
$this->builder->expects($this->exactly(0))
|
|
->method('setFirstResult')
|
|
->with(10)
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->never())
|
|
->method('orderBy')
|
|
->with('items.last_modified', 'DESC')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('addOrderBy')
|
|
->with('items.id', 'DESC')
|
|
->willReturnSelf();
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('executeQuery')
|
|
->willReturn($this->cursor);
|
|
|
|
$this->cursor->expects($this->exactly(2))
|
|
->method('fetch')
|
|
->willReturnOnConsecutiveCalls(
|
|
['id' => 4],
|
|
false
|
|
);
|
|
|
|
$result = $this->class->findAllItems('jack', 6, -1, 10, false, []);
|
|
$this->assertEquals([Item::fromRow(['id' => 4])], $result);
|
|
}
|
|
|
|
public function testFindAllItemsStarred()
|
|
{
|
|
$this->db->expects($this->once())
|
|
->method('getQueryBuilder')
|
|
->willReturn($this->builder);
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('select')
|
|
->with('items.*')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('from')
|
|
->with('news_items', 'items')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('innerJoin')
|
|
->withConsecutive(['items', 'news_feeds', 'feeds', 'items.feed_id = feeds.id'])
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(4))
|
|
->method('andWhere')
|
|
->withConsecutive(
|
|
['feeds.user_id = :userId'],
|
|
['feeds.deleted_at = 0'],
|
|
['items.id < :offset'],
|
|
['items.starred = :starred']
|
|
)
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(3))
|
|
->method('setParameter')
|
|
->withConsecutive(['userId', 'jack'], ['offset', 10], ['starred', true])
|
|
->will($this->returnSelf());
|
|
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('setMaxResults')
|
|
->with(10)
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(0))
|
|
->method('setFirstResult')
|
|
->with(10)
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->never())
|
|
->method('orderBy')
|
|
->with('items.last_modified', 'DESC')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('addOrderBy')
|
|
->with('items.id', 'DESC')
|
|
->willReturnSelf();
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('executeQuery')
|
|
->willReturn($this->cursor);
|
|
|
|
$this->cursor->expects($this->exactly(2))
|
|
->method('fetch')
|
|
->willReturnOnConsecutiveCalls(
|
|
['id' => 4],
|
|
false
|
|
);
|
|
|
|
$result = $this->class->findAllItems('jack', 2, 10, 10, false, []);
|
|
$this->assertEquals([Item::fromRow(['id' => 4])], $result);
|
|
}
|
|
|
|
public function testFindAllItemsStarredSearch()
|
|
{
|
|
$this->db->expects($this->once())
|
|
->method('getQueryBuilder')
|
|
->willReturn($this->builder);
|
|
$this->db->expects($this->exactly(2))
|
|
->method('escapeLikeParameter')
|
|
->will($this->returnArgument(0));
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('select')
|
|
->with('items.*')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('from')
|
|
->with('news_items', 'items')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('innerJoin')
|
|
->withConsecutive(['items', 'news_feeds', 'feeds', 'items.feed_id = feeds.id'])
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(6))
|
|
->method('andWhere')
|
|
->withConsecutive(
|
|
['feeds.user_id = :userId'],
|
|
['feeds.deleted_at = 0'],
|
|
['items.id < :offset'],
|
|
['items.search_index LIKE :term0'],
|
|
['items.search_index LIKE :term1'],
|
|
['items.starred = :starred']
|
|
)
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(5))
|
|
->method('setParameter')
|
|
->withConsecutive(
|
|
['userId', 'jack'],
|
|
['offset', 10],
|
|
['term0', '%key%'],
|
|
['term1', '%word%'],
|
|
['starred', true]
|
|
)
|
|
->will($this->returnSelf());
|
|
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('setMaxResults')
|
|
->with(10)
|
|
->will($this->returnSelf());
|
|
|
|
|
|
$this->builder->expects($this->exactly(0))
|
|
->method('setFirstResult')
|
|
->with(10)
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->never())
|
|
->method('orderBy')
|
|
->with('items.last_modified', 'DESC')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('addOrderBy')
|
|
->with('items.id', 'DESC')
|
|
->willReturnSelf();
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('executeQuery')
|
|
->willReturn($this->cursor);
|
|
|
|
$this->cursor->expects($this->exactly(2))
|
|
->method('fetch')
|
|
->willReturnOnConsecutiveCalls(
|
|
['id' => 4],
|
|
false
|
|
);
|
|
|
|
$result = $this->class->findAllItems('jack', 2, 10, 10, false, ['key', 'word']);
|
|
$this->assertEquals([Item::fromRow(['id' => 4])], $result);
|
|
}
|
|
|
|
public function testFindAllFeed()
|
|
{
|
|
$this->db->expects($this->once())
|
|
->method('getQueryBuilder')
|
|
->willReturn($this->builder);
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('select')
|
|
->with('items.*')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('from')
|
|
->with('news_items', 'items')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('innerJoin')
|
|
->withConsecutive(['items', 'news_feeds', 'feeds', 'items.feed_id = feeds.id'])
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(4))
|
|
->method('andWhere')
|
|
->withConsecutive(
|
|
['feeds.deleted_at = 0'],
|
|
['feeds.user_id = :userId'],
|
|
['items.feed_id = :feedId'],
|
|
['items.id < :offset']
|
|
)
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(3))
|
|
->method('setParameter')
|
|
->withConsecutive(['userId', 'jack'], ['feedId', 2], ['offset', 10])
|
|
->will($this->returnSelf());
|
|
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('setMaxResults')
|
|
->with(10)
|
|
->will($this->returnSelf());
|
|
|
|
|
|
$this->builder->expects($this->exactly(0))
|
|
->method('setFirstResult')
|
|
->with(10)
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->never())
|
|
->method('orderBy')
|
|
->with('items.last_modified', 'DESC')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('addOrderBy')
|
|
->with('items.id', 'DESC')
|
|
->willReturnSelf();
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('executeQuery')
|
|
->willReturn($this->cursor);
|
|
|
|
$this->cursor->expects($this->exactly(2))
|
|
->method('fetch')
|
|
->willReturnOnConsecutiveCalls(
|
|
['id' => 4],
|
|
false
|
|
);
|
|
|
|
$result = $this->class->findAllFeed('jack', 2, 10, 10, false, false, []);
|
|
$this->assertEquals([Item::fromRow(['id' => 4])], $result);
|
|
}
|
|
|
|
public function testFindAllFeedNoLimit()
|
|
{
|
|
$this->db->expects($this->once())
|
|
->method('getQueryBuilder')
|
|
->willReturn($this->builder);
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('select')
|
|
->with('items.*')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('from')
|
|
->with('news_items', 'items')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('innerJoin')
|
|
->withConsecutive(['items', 'news_feeds', 'feeds', 'items.feed_id = feeds.id'])
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(4))
|
|
->method('andWhere')
|
|
->withConsecutive(
|
|
['feeds.deleted_at = 0'],
|
|
['feeds.user_id = :userId'],
|
|
['items.feed_id = :feedId'],
|
|
['items.id < :offset']
|
|
)
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(3))
|
|
->method('setParameter')
|
|
->withConsecutive(['userId', 'jack'], ['feedId', 2], ['offset', 10])
|
|
->will($this->returnSelf());
|
|
|
|
|
|
$this->builder->expects($this->never())
|
|
->method('setMaxResults');
|
|
|
|
|
|
$this->builder->expects($this->exactly(0))
|
|
->method('setFirstResult')
|
|
->with(10)
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->never())
|
|
->method('orderBy')
|
|
->with('items.last_modified', 'DESC')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('addOrderBy')
|
|
->with('items.id', 'DESC')
|
|
->willReturnSelf();
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('executeQuery')
|
|
->willReturn($this->cursor);
|
|
|
|
$this->cursor->expects($this->exactly(2))
|
|
->method('fetch')
|
|
->willReturnOnConsecutiveCalls(
|
|
['id' => 4],
|
|
false
|
|
);
|
|
|
|
$result = $this->class->findAllFeed('jack', 2, -1, 10, false, false, []);
|
|
$this->assertEquals([Item::fromRow(['id' => 4])], $result);
|
|
}
|
|
|
|
public function testFindAllFeedInverted()
|
|
{
|
|
$this->db->expects($this->once())
|
|
->method('getQueryBuilder')
|
|
->willReturn($this->builder);
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('select')
|
|
->with('items.*')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('from')
|
|
->with('news_items', 'items')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('innerJoin')
|
|
->withConsecutive(['items', 'news_feeds', 'feeds', 'items.feed_id = feeds.id'])
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(4))
|
|
->method('andWhere')
|
|
->withConsecutive(
|
|
['feeds.deleted_at = 0'],
|
|
['feeds.user_id = :userId'],
|
|
['items.feed_id = :feedId'],
|
|
['items.id > :offset']
|
|
)
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(3))
|
|
->method('setParameter')
|
|
->withConsecutive(['userId', 'jack'], ['feedId', 2], ['offset', 10])
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('setMaxResults')
|
|
->with(10)
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(0))
|
|
->method('setFirstResult')
|
|
->with(10)
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->never())
|
|
->method('orderBy')
|
|
->with('items.last_modified', 'ASC')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('addOrderBy')
|
|
->with('items.id', 'ASC')
|
|
->willReturnSelf();
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('executeQuery')
|
|
->willReturn($this->cursor);
|
|
|
|
$this->cursor->expects($this->exactly(2))
|
|
->method('fetch')
|
|
->willReturnOnConsecutiveCalls(
|
|
['id' => 4],
|
|
false
|
|
);
|
|
|
|
$result = $this->class->findAllFeed('jack', 2, 10, 10, false, true, []);
|
|
$this->assertEquals([Item::fromRow(['id' => 4])], $result);
|
|
}
|
|
|
|
public function testFindAllFeedHideRead()
|
|
{
|
|
$this->db->expects($this->once())
|
|
->method('getQueryBuilder')
|
|
->willReturn($this->builder);
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('select')
|
|
->with('items.*')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('from')
|
|
->with('news_items', 'items')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('innerJoin')
|
|
->withConsecutive(['items', 'news_feeds', 'feeds', 'items.feed_id = feeds.id'])
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(5))
|
|
->method('andWhere')
|
|
->withConsecutive(
|
|
['feeds.deleted_at = 0'],
|
|
['feeds.user_id = :userId'],
|
|
['items.feed_id = :feedId'],
|
|
['items.id < :offset'],
|
|
['items.unread = :unread']
|
|
)
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(4))
|
|
->method('setParameter')
|
|
->withConsecutive(['userId', 'jack'], ['feedId', 2], ['offset', 10], ['unread', true])
|
|
->will($this->returnSelf());
|
|
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('setMaxResults')
|
|
->with(10)
|
|
->will($this->returnSelf());
|
|
|
|
|
|
$this->builder->expects($this->exactly(0))
|
|
->method('setFirstResult')
|
|
->with(10)
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->never())
|
|
->method('orderBy')
|
|
->with('items.last_modified', 'DESC')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('addOrderBy')
|
|
->with('items.id', 'DESC')
|
|
->willReturnSelf();
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('executeQuery')
|
|
->willReturn($this->cursor);
|
|
|
|
$this->cursor->expects($this->exactly(2))
|
|
->method('fetch')
|
|
->willReturnOnConsecutiveCalls(
|
|
['id' => 4],
|
|
false
|
|
);
|
|
|
|
$result = $this->class->findAllFeed('jack', 2, 10, 10, true, false, []);
|
|
$this->assertEquals([Item::fromRow(['id' => 4])], $result);
|
|
}
|
|
|
|
public function testFindAllFeedSearch()
|
|
{
|
|
$this->db->expects($this->once())
|
|
->method('getQueryBuilder')
|
|
->willReturn($this->builder);
|
|
$this->db->expects($this->exactly(2))
|
|
->method('escapeLikeParameter')
|
|
->will($this->returnArgument(0));
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('select')
|
|
->with('items.*')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('from')
|
|
->with('news_items', 'items')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('innerJoin')
|
|
->withConsecutive(['items', 'news_feeds', 'feeds', 'items.feed_id = feeds.id'])
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(6))
|
|
->method('andWhere')
|
|
->withConsecutive(
|
|
['feeds.deleted_at = 0'],
|
|
['feeds.user_id = :userId'],
|
|
['items.feed_id = :feedId'],
|
|
['items.search_index LIKE :term0'],
|
|
['items.search_index LIKE :term1'],
|
|
['items.id < :offset']
|
|
)
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(5))
|
|
->method('setParameter')
|
|
->withConsecutive(
|
|
['userId', 'jack'],
|
|
['feedId', 2],
|
|
['term0', '%key%'],
|
|
['term1', '%word%'],
|
|
['offset', 10]
|
|
)
|
|
->will($this->returnSelf());
|
|
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('setMaxResults')
|
|
->with(10)
|
|
->will($this->returnSelf());
|
|
|
|
|
|
$this->builder->expects($this->exactly(0))
|
|
->method('setFirstResult')
|
|
->with(10)
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->never())
|
|
->method('orderBy')
|
|
->with('items.last_modified', 'DESC')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('addOrderBy')
|
|
->with('items.id', 'DESC')
|
|
->willReturnSelf();
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('executeQuery')
|
|
->willReturn($this->cursor);
|
|
|
|
$this->cursor->expects($this->exactly(2))
|
|
->method('fetch')
|
|
->willReturnOnConsecutiveCalls(
|
|
['id' => 4],
|
|
false
|
|
);
|
|
|
|
$result = $this->class->findAllFeed('jack', 2, 10, 10, false, false, ['key', 'word']);
|
|
$this->assertEquals([Item::fromRow(['id' => 4])], $result);
|
|
}
|
|
|
|
public function testFindAllFolderIdNull()
|
|
{
|
|
$expr = $this->getMockBuilder(IExpressionBuilder::class)
|
|
->getMock();
|
|
|
|
$expr->expects($this->once())
|
|
->method('isNull')
|
|
->with('feeds.folder_id')
|
|
->will($this->returnValue('x IS NULL'));
|
|
|
|
$this->db->expects($this->once())
|
|
->method('getQueryBuilder')
|
|
->willReturn($this->builder);
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('expr')
|
|
->will($this->returnValue($expr));
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('select')
|
|
->with('items.*')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('from')
|
|
->with('news_items', 'items')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('innerJoin')
|
|
->withConsecutive(['items', 'news_feeds', 'feeds', 'items.feed_id = feeds.id'])
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(4))
|
|
->method('andWhere')
|
|
->withConsecutive(
|
|
['feeds.user_id = :userId'],
|
|
['feeds.deleted_at = 0'],
|
|
['x IS NULL'],
|
|
['items.id < :offset']
|
|
)
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(2))
|
|
->method('setParameter')
|
|
->withConsecutive(['userId', 'jack'], ['offset', 10])
|
|
->will($this->returnSelf());
|
|
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('setMaxResults')
|
|
->with(10)
|
|
->will($this->returnSelf());
|
|
|
|
|
|
$this->builder->expects($this->exactly(0))
|
|
->method('setFirstResult')
|
|
->with(10)
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->never())
|
|
->method('orderBy')
|
|
->with('items.last_modified', 'DESC')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('addOrderBy')
|
|
->with('items.id', 'DESC')
|
|
->willReturnSelf();
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('executeQuery')
|
|
->willReturn($this->cursor);
|
|
|
|
$this->cursor->expects($this->exactly(2))
|
|
->method('fetch')
|
|
->willReturnOnConsecutiveCalls(
|
|
['id' => 4],
|
|
false
|
|
);
|
|
|
|
$result = $this->class->findAllFolder('jack', null, 10, 10, false, false, []);
|
|
$this->assertEquals([Item::fromRow(['id' => 4])], $result);
|
|
}
|
|
|
|
public function testFindAllFolderIdNullNoLimit()
|
|
{
|
|
$expr = $this->getMockBuilder(IExpressionBuilder::class)
|
|
->getMock();
|
|
|
|
$expr->expects($this->once())
|
|
->method('isNull')
|
|
->with('feeds.folder_id')
|
|
->will($this->returnValue('x IS NULL'));
|
|
|
|
$this->db->expects($this->once())
|
|
->method('getQueryBuilder')
|
|
->willReturn($this->builder);
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('expr')
|
|
->will($this->returnValue($expr));
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('select')
|
|
->with('items.*')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('from')
|
|
->with('news_items', 'items')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('innerJoin')
|
|
->withConsecutive(['items', 'news_feeds', 'feeds', 'items.feed_id = feeds.id'])
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(4))
|
|
->method('andWhere')
|
|
->withConsecutive(
|
|
['feeds.user_id = :userId'],
|
|
['feeds.deleted_at = 0'],
|
|
['x IS NULL'],
|
|
['items.id < :offset']
|
|
)
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(2))
|
|
->method('setParameter')
|
|
->withConsecutive(['userId', 'jack'], ['offset', 10])
|
|
->will($this->returnSelf());
|
|
|
|
|
|
$this->builder->expects($this->never())
|
|
->method('setMaxResults');
|
|
|
|
|
|
$this->builder->expects($this->exactly(0))
|
|
->method('setFirstResult')
|
|
->with(10)
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->never())
|
|
->method('orderBy')
|
|
->with('items.last_modified', 'DESC')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('addOrderBy')
|
|
->with('items.id', 'DESC')
|
|
->willReturnSelf();
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('executeQuery')
|
|
->willReturn($this->cursor);
|
|
|
|
$this->cursor->expects($this->exactly(2))
|
|
->method('fetch')
|
|
->willReturnOnConsecutiveCalls(
|
|
['id' => 4],
|
|
false
|
|
);
|
|
|
|
$result = $this->class->findAllFolder('jack', null, -1, 10, false, false, []);
|
|
$this->assertEquals([Item::fromRow(['id' => 4])], $result);
|
|
}
|
|
|
|
public function testFindAllFolderHideRead()
|
|
{
|
|
$expr = $this->getMockBuilder(IExpressionBuilder::class)
|
|
->getMock();
|
|
|
|
$expr->expects($this->once())
|
|
->method('isNull')
|
|
->with('feeds.folder_id')
|
|
->will($this->returnValue('x IS NULL'));
|
|
|
|
$this->db->expects($this->once())
|
|
->method('getQueryBuilder')
|
|
->willReturn($this->builder);
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('expr')
|
|
->will($this->returnValue($expr));
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('select')
|
|
->with('items.*')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('from')
|
|
->with('news_items', 'items')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('innerJoin')
|
|
->withConsecutive(['items', 'news_feeds', 'feeds', 'items.feed_id = feeds.id'])
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(5))
|
|
->method('andWhere')
|
|
->withConsecutive(
|
|
['feeds.user_id = :userId'],
|
|
['feeds.deleted_at = 0'],
|
|
['x IS NULL'],
|
|
['items.id < :offset'],
|
|
['items.unread = :unread']
|
|
)
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(3))
|
|
->method('setParameter')
|
|
->withConsecutive(['userId', 'jack'], ['offset', 10], ['unread', true])
|
|
->will($this->returnSelf());
|
|
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('setMaxResults')
|
|
->with(10)
|
|
->will($this->returnSelf());
|
|
|
|
|
|
$this->builder->expects($this->exactly(0))
|
|
->method('setFirstResult')
|
|
->with(10)
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->never())
|
|
->method('orderBy')
|
|
->with('items.last_modified', 'DESC')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('addOrderBy')
|
|
->with('items.id', 'DESC')
|
|
->willReturnSelf();
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('executeQuery')
|
|
->willReturn($this->cursor);
|
|
|
|
$this->cursor->expects($this->exactly(2))
|
|
->method('fetch')
|
|
->willReturnOnConsecutiveCalls(
|
|
['id' => 4],
|
|
false
|
|
);
|
|
|
|
$result = $this->class->findAllFolder('jack', null, 10, 10, true, false, []);
|
|
$this->assertEquals([Item::fromRow(['id' => 4])], $result);
|
|
}
|
|
|
|
public function testFindAllFolderHideReadInvertOrder()
|
|
{
|
|
$expr = $this->getMockBuilder(IExpressionBuilder::class)
|
|
->getMock();
|
|
|
|
$expr->expects($this->once())
|
|
->method('isNull')
|
|
->with('feeds.folder_id')
|
|
->will($this->returnValue('x IS NULL'));
|
|
|
|
$this->db->expects($this->once())
|
|
->method('getQueryBuilder')
|
|
->willReturn($this->builder);
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('expr')
|
|
->will($this->returnValue($expr));
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('select')
|
|
->with('items.*')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('from')
|
|
->with('news_items', 'items')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('innerJoin')
|
|
->withConsecutive(['items', 'news_feeds', 'feeds', 'items.feed_id = feeds.id'])
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(5))
|
|
->method('andWhere')
|
|
->withConsecutive(
|
|
['feeds.user_id = :userId'],
|
|
['feeds.deleted_at = 0'],
|
|
['x IS NULL'],
|
|
['items.id > :offset'],
|
|
['items.unread = :unread']
|
|
)
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(3))
|
|
->method('setParameter')
|
|
->withConsecutive(['userId', 'jack'], ['offset', 10], ['unread', true])
|
|
->will($this->returnSelf());
|
|
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('setMaxResults')
|
|
->with(10)
|
|
->will($this->returnSelf());
|
|
|
|
|
|
$this->builder->expects($this->exactly(0))
|
|
->method('setFirstResult')
|
|
->with(10)
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->never())
|
|
->method('orderBy')
|
|
->with('items.last_modified', 'ASC')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('addOrderBy')
|
|
->with('items.id', 'ASC')
|
|
->willReturnSelf();
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('executeQuery')
|
|
->willReturn($this->cursor);
|
|
|
|
$this->cursor->expects($this->exactly(2))
|
|
->method('fetch')
|
|
->willReturnOnConsecutiveCalls(
|
|
['id' => 4],
|
|
false
|
|
);
|
|
|
|
$result = $this->class->findAllFolder('jack', null, 10, 10, true, true, []);
|
|
$this->assertEquals([Item::fromRow(['id' => 4])], $result);
|
|
}
|
|
|
|
public function testFindAllFolderSearchId()
|
|
{
|
|
$expr = $this->getMockBuilder(IExpressionBuilder::class)
|
|
->getMock();
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('expr')
|
|
->will($this->returnValue($expr));
|
|
|
|
$expr->expects($this->once())
|
|
->method('eq')
|
|
->with('feeds.folder_id', new Literal(2))
|
|
->will($this->returnValue('x = y'));
|
|
|
|
$this->db->expects($this->once())
|
|
->method('getQueryBuilder')
|
|
->willReturn($this->builder);
|
|
$this->db->expects($this->exactly(2))
|
|
->method('escapeLikeParameter')
|
|
->will($this->returnArgument(0));
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('select')
|
|
->with('items.*')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('from')
|
|
->with('news_items', 'items')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('innerJoin')
|
|
->withConsecutive(['items', 'news_feeds', 'feeds', 'items.feed_id = feeds.id'])
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(6))
|
|
->method('andWhere')
|
|
->withConsecutive(
|
|
['feeds.user_id = :userId'],
|
|
['feeds.deleted_at = 0'],
|
|
['x = y'],
|
|
['items.search_index LIKE :term0'],
|
|
['items.search_index LIKE :term1'],
|
|
['items.id < :offset']
|
|
)
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(4))
|
|
->method('setParameter')
|
|
->withConsecutive(['userId', 'jack'], ['term0', '%key%'], ['term1', '%word%'], ['offset', 10])
|
|
->will($this->returnSelf());
|
|
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('setMaxResults')
|
|
->with(10)
|
|
->will($this->returnSelf());
|
|
|
|
|
|
$this->builder->expects($this->exactly(0))
|
|
->method('setFirstResult')
|
|
->with(10)
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->never())
|
|
->method('orderBy')
|
|
->with('items.last_modified', 'DESC')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('addOrderBy')
|
|
->with('items.id', 'DESC')
|
|
->willReturnSelf();
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('executeQuery')
|
|
->willReturn($this->cursor);
|
|
|
|
$this->cursor->expects($this->exactly(2))
|
|
->method('fetch')
|
|
->willReturnOnConsecutiveCalls(
|
|
['id' => 4],
|
|
false
|
|
);
|
|
|
|
$result = $this->class->findAllFolder('jack', 2, 10, 10, false, false, ['key', 'word']);
|
|
$this->assertEquals([Item::fromRow(['id' => 4])], $result);
|
|
}
|
|
|
|
}
|