mirror of
https://github.com/chylex/Nextcloud-News.git
synced 2024-11-21 22:42:48 +01:00
5af0cb6e22
Signed-off-by: Benjamin Brahmer <info@b-brahmer.de> this way it works Signed-off-by: Benjamin Brahmer <info@b-brahmer.de> add changelog entry Signed-off-by: Benjamin Brahmer <info@b-brahmer.de> Partly fix test Signed-off-by: Benjamin Brahmer <info@b-brahmer.de> test passing Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
491 lines
16 KiB
PHP
491 lines
16 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\Parameter;
|
|
use OC\DB\ResultAdapter;
|
|
use OCA\News\Db\Folder;
|
|
use OCA\News\Db\FolderMapperV2;
|
|
use OCA\News\Utility\Time;
|
|
use OCP\AppFramework\Db\DoesNotExistException;
|
|
use OCP\AppFramework\Db\MultipleObjectsReturnedException;
|
|
use OCP\DB\QueryBuilder\IQueryBuilder;
|
|
|
|
class FolderMapperTest extends MapperTestUtility
|
|
{
|
|
/** @var FolderMapperV2 */
|
|
private $class;
|
|
/** @var Folder[] */
|
|
private $folders;
|
|
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->class = new FolderMapperV2($this->db, new Time());
|
|
|
|
// create mock folders
|
|
$folder1 = new Folder();
|
|
$folder1->setId(4);
|
|
$folder1->resetUpdatedFields();
|
|
$folder2 = new Folder();
|
|
$folder2->setId(5);
|
|
$folder2->resetUpdatedFields();
|
|
|
|
$this->folders = [$folder1, $folder2];
|
|
}
|
|
|
|
/**
|
|
* @covers \OCA\News\Db\FolderMapperV2::findAllFromUser
|
|
*/
|
|
public function testFindAllFromUser()
|
|
{
|
|
$this->db->expects($this->once())
|
|
->method('getQueryBuilder')
|
|
->willReturn($this->builder);
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('select')
|
|
->with('*')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('from')
|
|
->with('news_folders')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('where')
|
|
->with('user_id = :user_id')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('andWhere')
|
|
->with('deleted_at = 0')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('setParameter')
|
|
->with('user_id', 'jack')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('executeQuery')
|
|
->willReturn($this->cursor);
|
|
|
|
$this->cursor->expects($this->exactly(3))
|
|
->method('fetch')
|
|
->willReturnOnConsecutiveCalls(
|
|
['id' => 4],
|
|
['id' => 5],
|
|
null
|
|
);
|
|
|
|
$result = $this->class->findAllFromUser('jack', []);
|
|
$this->assertEquals($this->folders, $result);
|
|
}
|
|
|
|
/**
|
|
* @covers \OCA\News\Db\FolderMapperV2::findFromUser
|
|
*/
|
|
public function testFindFromUser()
|
|
{
|
|
$this->db->expects($this->once())
|
|
->method('getQueryBuilder')
|
|
->willReturn($this->builder);
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('select')
|
|
->with('*')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('from')
|
|
->with('news_folders')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('where')
|
|
->with('user_id = :user_id')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(2))
|
|
->method('andWhere')
|
|
->withConsecutive(['id = :id'], ['deleted_at = 0'])
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(2))
|
|
->method('setParameter')
|
|
->withConsecutive(['user_id', 'jack'], ['id', 1])
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('executeQuery')
|
|
->willReturn($this->cursor);
|
|
|
|
$this->cursor->expects($this->exactly(2))
|
|
->method('fetch')
|
|
->willReturnOnConsecutiveCalls(
|
|
['id' => 4],
|
|
false
|
|
);
|
|
|
|
$result = $this->class->findFromUser('jack', 1);
|
|
$this->assertEquals($this->folders[0], $result);
|
|
}
|
|
|
|
/**
|
|
* @covers \OCA\News\Db\FolderMapperV2::findFromUser
|
|
*/
|
|
public function testFindFromUserEmpty()
|
|
{
|
|
$this->db->expects($this->once())
|
|
->method('getQueryBuilder')
|
|
->willReturn($this->builder);
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('select')
|
|
->with('*')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('from')
|
|
->with('news_folders')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('where')
|
|
->with('user_id = :user_id')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(2))
|
|
->method('andWhere')
|
|
->withConsecutive(['id = :id'], ['deleted_at = 0'])
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(2))
|
|
->method('setParameter')
|
|
->withConsecutive(['user_id', 'jack'], ['id', 1])
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('executeQuery')
|
|
->willReturn($this->cursor);
|
|
|
|
$this->cursor->expects($this->exactly(1))
|
|
->method('fetch')
|
|
->willReturnOnConsecutiveCalls(
|
|
false
|
|
);
|
|
|
|
$this->expectException(DoesNotExistException::class);
|
|
$this->class->findFromUser('jack', 1);
|
|
}
|
|
|
|
/**
|
|
* @covers \OCA\News\Db\FolderMapperV2::findFromUser
|
|
*/
|
|
public function testFindFromUserDuplicate()
|
|
{
|
|
|
|
$this->db->expects($this->once())
|
|
->method('getQueryBuilder')
|
|
->willReturn($this->builder);
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('select')
|
|
->with('*')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('from')
|
|
->with('news_folders')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('where')
|
|
->with('user_id = :user_id')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(2))
|
|
->method('andWhere')
|
|
->withConsecutive(['id = :id'], ['deleted_at = 0'])
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(2))
|
|
->method('setParameter')
|
|
->withConsecutive(['user_id', 'jack'], ['id', 1])
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('executeQuery')
|
|
->willReturn($this->cursor);
|
|
|
|
$this->cursor->expects($this->exactly(2))
|
|
->method('fetch')
|
|
->willReturnOnConsecutiveCalls(
|
|
['id' => 1],
|
|
['id' => 2]
|
|
);
|
|
|
|
$this->expectException(MultipleObjectsReturnedException::class);
|
|
$this->class->findFromUser('jack', 1);
|
|
}
|
|
|
|
/**
|
|
* @covers \OCA\News\Db\FolderMapperV2::findAll
|
|
*/
|
|
public function testFindAll()
|
|
{
|
|
$this->db->expects($this->once())
|
|
->method('getQueryBuilder')
|
|
->willReturn($this->builder);
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('select')
|
|
->with('*')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('from')
|
|
->with('news_folders')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('where')
|
|
->with('deleted_at = 0')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('executeQuery')
|
|
->willReturn($this->cursor);
|
|
|
|
$this->cursor->expects($this->exactly(3))
|
|
->method('fetch')
|
|
->willReturnOnConsecutiveCalls(
|
|
['id' => 4],
|
|
['id' => 5],
|
|
null
|
|
);
|
|
|
|
$result = $this->class->findAll();
|
|
$this->assertEquals($this->folders, $result);
|
|
}
|
|
|
|
/**
|
|
* @covers \OCA\News\Db\FolderMapperV2::read
|
|
*/
|
|
public function testRead()
|
|
{
|
|
$selectbuilder = $this->getMockBuilder(IQueryBuilder::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$this->db->expects($this->exactly(2))
|
|
->method('getQueryBuilder')
|
|
->willReturnOnConsecutiveCalls($selectbuilder, $this->builder);
|
|
|
|
$selectbuilder->expects($this->once())
|
|
->method('select')
|
|
->with('items.id')
|
|
->will($this->returnSelf());
|
|
|
|
$selectbuilder->expects($this->once())
|
|
->method('from')
|
|
->with('news_items', 'items')
|
|
->will($this->returnSelf());
|
|
|
|
$selectbuilder->expects($this->once())
|
|
->method('innerJoin')
|
|
->with('items', 'news_feeds', 'feeds', 'items.feed_id = feeds.id')
|
|
->will($this->returnSelf());
|
|
|
|
$selectbuilder->expects($this->exactly(2))
|
|
->method('andWhere')
|
|
->withConsecutive(['feeds.user_id = :userId'], ['feeds.folder_id = :folderId'])
|
|
->will($this->returnSelf());
|
|
|
|
$selectbuilder->expects($this->exactly(2))
|
|
->method('setParameter')
|
|
->withConsecutive(['userId', 'admin'], ['folderId', 1])
|
|
->will($this->returnSelf());
|
|
|
|
$selectbuilder->expects($this->exactly(1))
|
|
->method('getSQL')
|
|
->will($this->returnValue('SQL QUERY'));
|
|
|
|
$selectbuilder->expects($this->exactly(1))
|
|
->method('getParameters')
|
|
->will($this->returnValue([]));
|
|
|
|
$result = $this->getMockBuilder(ResultAdapter::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$result->expects($this->once())
|
|
->method('fetchAll')
|
|
->willReturn([['id' => 1], ['id' => 2]]);
|
|
|
|
$this->db->expects($this->exactly(1))
|
|
->method('executeQuery')
|
|
->with('SQL QUERY')
|
|
->willReturn($result);
|
|
|
|
$this->builder->expects($this->exactly(2))
|
|
->method('createParameter')
|
|
->will($this->returnArgument(0));
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('update')
|
|
->with('news_items')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(2))
|
|
->method('set')
|
|
->withConsecutive(['unread', 'unread'], ['last_modified', 'last_modified'])
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(2))
|
|
->method('andWhere')
|
|
->withConsecutive(['id IN (:idList)'], ['unread != :unread'])
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(3))
|
|
->method('setParameter')
|
|
->withConsecutive(['unread', false], ['idList', [1, 2]], ['last_modified'])
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('getSQL')
|
|
->will($this->returnValue('QUERY'));
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('getParameters')
|
|
->will($this->returnValue([]));
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('getParameterTypes')
|
|
->will($this->returnValue([]));
|
|
|
|
$this->db->expects($this->exactly(1))
|
|
->method('executeStatement')
|
|
->with('QUERY');
|
|
|
|
$this->class->read('admin', 1);
|
|
}
|
|
|
|
/**
|
|
* @covers \OCA\News\Db\FolderMapperV2::read
|
|
*/
|
|
public function testReadWithMaxId()
|
|
{
|
|
|
|
$selectbuilder = $this->getMockBuilder(IQueryBuilder::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$this->db->expects($this->exactly(2))
|
|
->method('getQueryBuilder')
|
|
->willReturnOnConsecutiveCalls($selectbuilder, $this->builder);
|
|
|
|
$selectbuilder->expects($this->once())
|
|
->method('select')
|
|
->with('items.id')
|
|
->will($this->returnSelf());
|
|
|
|
$selectbuilder->expects($this->once())
|
|
->method('from')
|
|
->with('news_items', 'items')
|
|
->will($this->returnSelf());
|
|
|
|
$selectbuilder->expects($this->once())
|
|
->method('innerJoin')
|
|
->with('items', 'news_feeds', 'feeds', 'items.feed_id = feeds.id')
|
|
->will($this->returnSelf());
|
|
|
|
$selectbuilder->expects($this->exactly(3))
|
|
->method('andWhere')
|
|
->withConsecutive(['feeds.user_id = :userId'], ['feeds.folder_id = :folderId'], ['items.id <= :maxItemId'])
|
|
->will($this->returnSelf());
|
|
|
|
$selectbuilder->expects($this->exactly(3))
|
|
->method('setParameter')
|
|
->withConsecutive(['userId', 'admin'], ['folderId', 1], ['maxItemId', 4])
|
|
->will($this->returnSelf());
|
|
|
|
$selectbuilder->expects($this->exactly(1))
|
|
->method('getSQL')
|
|
->will($this->returnValue('SQL QUERY'));
|
|
|
|
$selectbuilder->expects($this->exactly(1))
|
|
->method('getParameters')
|
|
->will($this->returnValue([]));
|
|
|
|
$result = $this->getMockBuilder(ResultAdapter::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$result->expects($this->once())
|
|
->method('fetchAll')
|
|
->willReturn([['id' => 1], ['id' => 2]]);
|
|
|
|
$this->db->expects($this->exactly(1))
|
|
->method('executeQuery')
|
|
->with('SQL QUERY')
|
|
->willReturn($result);
|
|
|
|
$this->builder->expects($this->exactly(2))
|
|
->method('createParameter')
|
|
->will($this->returnArgument(0));
|
|
|
|
$this->builder->expects($this->once())
|
|
->method('update')
|
|
->with('news_items')
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(2))
|
|
->method('set')
|
|
->withConsecutive(['unread', 'unread'], ['last_modified', 'last_modified'])
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(2))
|
|
->method('andWhere')
|
|
->withConsecutive(['id IN (:idList)'], ['unread != :unread'])
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(3))
|
|
->method('setParameter')
|
|
->withConsecutive(['unread', false], ['idList', [1, 2]], ['last_modified'])
|
|
->will($this->returnSelf());
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('getSQL')
|
|
->will($this->returnValue('QUERY'));
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('getParameters')
|
|
->will($this->returnValue([]));
|
|
|
|
$this->builder->expects($this->exactly(1))
|
|
->method('getParameterTypes')
|
|
->will($this->returnValue([]));
|
|
|
|
$this->db->expects($this->exactly(1))
|
|
->method('executeStatement')
|
|
->with('QUERY');
|
|
|
|
$this->class->read('admin', 1, 4);
|
|
}
|
|
}
|