当前位置: 首页>>代码示例>>PHP>>正文


PHP TaskFinder::getAll方法代码示例

本文整理汇总了PHP中Kanboard\Model\TaskFinder::getAll方法的典型用法代码示例。如果您正苦于以下问题:PHP TaskFinder::getAll方法的具体用法?PHP TaskFinder::getAll怎么用?PHP TaskFinder::getAll使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Kanboard\Model\TaskFinder的用法示例。


在下文中一共展示了TaskFinder::getAll方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: testTooRecent

 public function testTooRecent()
 {
     $userModel = new User($this->container);
     $projectModel = new Project($this->container);
     $taskCreationModel = new TaskCreation($this->container);
     $taskFinderModel = new TaskFinder($this->container);
     $this->assertEquals(2, $userModel->create(array('username' => 'test', 'email' => 'chuck@norris', 'name' => 'Chuck Norris')));
     $this->assertEquals(1, $projectModel->create(array('name' => 'test1')));
     $this->assertEquals(1, $taskCreationModel->create(array('project_id' => 1, 'title' => 'test')));
     $this->assertEquals(2, $taskCreationModel->create(array('project_id' => 1, 'title' => 'test')));
     $tasks = $taskFinderModel->getAll(1);
     $event = new TaskListEvent(array('tasks' => $tasks, 'project_id' => 1));
     $action = new TaskEmailNoActivity($this->container);
     $action->setProjectId(1);
     $action->setParam('user_id', 2);
     $action->setParam('subject', 'Old tasks');
     $action->setParam('duration', 2);
     $this->container['emailClient']->expects($this->never())->method('send');
     $this->assertFalse($action->execute($event, Task::EVENT_DAILY_CRONJOB));
 }
开发者ID:perburn,项目名称:kanboard,代码行数:20,代码来源:TaskEmailNoActivityTest.php

示例2: testClose

 public function testClose()
 {
     $projectModel = new Project($this->container);
     $taskCreationModel = new TaskCreation($this->container);
     $taskFinderModel = new TaskFinder($this->container);
     $this->assertEquals(1, $projectModel->create(array('name' => 'test1')));
     $this->assertEquals(1, $taskCreationModel->create(array('project_id' => 1, 'title' => 'test')));
     $this->assertEquals(2, $taskCreationModel->create(array('project_id' => 1, 'title' => 'test')));
     $this->container['db']->table(Task::TABLE)->eq('id', 1)->update(array('date_modification' => strtotime('-10days')));
     $tasks = $taskFinderModel->getAll(1);
     $event = new TaskListEvent(array('tasks' => $tasks, 'project_id' => 1));
     $action = new TaskCloseNoActivity($this->container);
     $action->setProjectId(1);
     $action->setParam('duration', 2);
     $this->assertTrue($action->execute($event, Task::EVENT_DAILY_CRONJOB));
     $task = $taskFinderModel->getById(1);
     $this->assertNotEmpty($task);
     $this->assertEquals(0, $task['is_active']);
     $task = $taskFinderModel->getById(2);
     $this->assertNotEmpty($task);
     $this->assertEquals(1, $task['is_active']);
 }
开发者ID:perburn,项目名称:kanboard,代码行数:22,代码来源:TaskCloseNoActivityTest.php

示例3: testCloneProjectWithTasks

 public function testCloneProjectWithTasks()
 {
     $p = new Project($this->container);
     $pd = new ProjectDuplication($this->container);
     $s = new Swimlane($this->container);
     $tc = new TaskCreation($this->container);
     $tf = new TaskFinder($this->container);
     $this->assertEquals(1, $p->create(array('name' => 'P1')));
     // create initial swimlanes
     $this->assertEquals(1, $s->create(array('project_id' => 1, 'name' => 'S1')));
     $this->assertEquals(2, $s->create(array('project_id' => 1, 'name' => 'S2')));
     $this->assertEquals(3, $s->create(array('project_id' => 1, 'name' => 'S3')));
     $default_swimlane1 = $s->getDefault(1);
     $default_swimlane1['default_swimlane'] = 'New Default';
     $this->assertTrue($s->updateDefault($default_swimlane1));
     //create initial tasks
     $this->assertEquals(1, $tc->create(array('title' => 'T1', 'project_id' => 1, 'column_id' => 1, 'owner_id' => 1)));
     $this->assertEquals(2, $tc->create(array('title' => 'T2', 'project_id' => 1, 'column_id' => 2, 'owner_id' => 1)));
     $this->assertEquals(3, $tc->create(array('title' => 'T3', 'project_id' => 1, 'column_id' => 3, 'owner_id' => 1)));
     $this->assertNotFalse($pd->duplicate(1, array('category', 'action', 'task')));
     $project = $p->getByName('P1 (Clone)');
     $this->assertNotFalse($project);
     $project_id = $project['id'];
     // Check if Swimlanes have NOT been duplicated
     $this->assertCount(0, $s->getAll($project_id));
     // Check if Tasks have been duplicated
     $tasks = $tf->getAll($project_id);
     $this->assertCount(3, $tasks);
     //$this->assertEquals(4, $tasks[0]['id']);
     $this->assertEquals('T1', $tasks[0]['title']);
     //$this->assertEquals(5, $tasks[1]['id']);
     $this->assertEquals('T2', $tasks[1]['title']);
     //$this->assertEquals(6, $tasks[2]['id']);
     $this->assertEquals('T3', $tasks[2]['title']);
 }
开发者ID:Folcky,项目名称:kanboard,代码行数:35,代码来源:ProjectDuplicationTest.php

示例4: testCloneProjectWithSwimlanesAndTasks

 public function testCloneProjectWithSwimlanesAndTasks()
 {
     $p = new Project($this->container);
     $pd = new ProjectDuplication($this->container);
     $s = new Swimlane($this->container);
     $tc = new TaskCreation($this->container);
     $tf = new TaskFinder($this->container);
     $this->assertEquals(1, $p->create(array('name' => 'P1', 'default_swimlane' => 'New Default')));
     // create initial swimlanes
     $this->assertEquals(1, $s->create(array('project_id' => 1, 'name' => 'S1')));
     $this->assertEquals(2, $s->create(array('project_id' => 1, 'name' => 'S2')));
     $this->assertEquals(3, $s->create(array('project_id' => 1, 'name' => 'S3')));
     // create initial tasks
     $this->assertEquals(1, $tc->create(array('title' => 'T1', 'project_id' => 1, 'column_id' => 1, 'owner_id' => 1)));
     $this->assertEquals(2, $tc->create(array('title' => 'T2', 'project_id' => 1, 'column_id' => 2, 'owner_id' => 1)));
     $this->assertEquals(3, $tc->create(array('title' => 'T3', 'project_id' => 1, 'column_id' => 3, 'owner_id' => 1)));
     $this->assertEquals(2, $pd->duplicate(1, array('projectPermission', 'swimlane', 'task')));
     // Check if Swimlanes have been duplicated
     $swimlanes = $s->getAll(2);
     $this->assertCount(3, $swimlanes);
     $this->assertEquals(4, $swimlanes[0]['id']);
     $this->assertEquals('S1', $swimlanes[0]['name']);
     $this->assertEquals(5, $swimlanes[1]['id']);
     $this->assertEquals('S2', $swimlanes[1]['name']);
     $this->assertEquals(6, $swimlanes[2]['id']);
     $this->assertEquals('S3', $swimlanes[2]['name']);
     $swimlane = $s->getDefault(2);
     $this->assertEquals('New Default', $swimlane['default_swimlane']);
     // Check if Tasks have been duplicated
     $tasks = $tf->getAll(2);
     $this->assertCount(3, $tasks);
     $this->assertEquals('T1', $tasks[0]['title']);
     $this->assertEquals('T2', $tasks[1]['title']);
     $this->assertEquals('T3', $tasks[2]['title']);
 }
开发者ID:perburn,项目名称:kanboard,代码行数:35,代码来源:ProjectDuplicationTest.php


注:本文中的Kanboard\Model\TaskFinder::getAll方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。