123 lines
3.5 KiB
PHP
123 lines
3.5 KiB
PHP
<?php
|
|
|
|
namespace Tests\unit\workflow\engine\src\ProcessMaker\Model;
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
use ProcessMaker\Model\Consolidated;
|
|
use ProcessMaker\Model\Delegation;
|
|
use ProcessMaker\Model\Task;
|
|
use Tests\TestCase;
|
|
|
|
/**
|
|
* Class ConsolidatedTest
|
|
*
|
|
* @coversDefaultClass \ProcessMaker\Model\Consolidated
|
|
*/
|
|
class ConsolidatedTest extends TestCase
|
|
{
|
|
use DatabaseTransactions;
|
|
|
|
/**
|
|
* Method set up.
|
|
*/
|
|
public function setUp()
|
|
{
|
|
parent::setUp();
|
|
}
|
|
|
|
/**
|
|
* Test belongs to TAS_UID
|
|
*
|
|
* @covers \ProcessMaker\Model\Consolidated::task()
|
|
* @test
|
|
*/
|
|
public function it_has_a_task()
|
|
{
|
|
$table = factory(Consolidated::class)->create([
|
|
'TAS_UID' => function () {
|
|
return factory(Task::class)->create()->TAS_UID;
|
|
}
|
|
]);
|
|
$this->assertInstanceOf(Task::class, $table->task);
|
|
}
|
|
|
|
/**
|
|
* Create consolidated cases factories
|
|
*
|
|
* @return array
|
|
*/
|
|
public function createConsolidated()
|
|
{
|
|
$consolidated = factory(Consolidated::class)->states('foreign_keys')->create();
|
|
$delegation = factory(Delegation::class)->states('foreign_keys')->create([
|
|
'DEL_THREAD_STATUS' => 'OPEN',
|
|
'TAS_UID' => $consolidated->TAS_UID,
|
|
]);
|
|
|
|
return $delegation;
|
|
}
|
|
|
|
/**
|
|
* This checks the counters is working properly in draft
|
|
*
|
|
* @covers \ProcessMaker\Model\Consolidated::getCounterActive()
|
|
* @covers \ProcessMaker\Model\Consolidated::scopeActive()
|
|
* @test
|
|
*/
|
|
public function it_should_count_cases_consolidated()
|
|
{
|
|
// Create factories related to the consolidated
|
|
$cases = $this->createConsolidated();
|
|
// Create new Consolidated object
|
|
$consolidated = new Consolidated();
|
|
$result = $consolidated->getCounterActive();
|
|
$this->assertTrue($result > 0);
|
|
}
|
|
|
|
/**
|
|
* This checks the counters is working properly in consolidated
|
|
*
|
|
* @covers \ProcessMaker\Model\Consolidated::getConsolidated()
|
|
* @covers \ProcessMaker\Model\Consolidated::scopeJoinPendingCases()
|
|
* @covers \ProcessMaker\Model\Consolidated::scopeActive()
|
|
* @covers \ProcessMaker\Model\Consolidated::scopeJoinProcess()
|
|
* @covers \ProcessMaker\Model\Consolidated::scopeJoinTask()
|
|
* @test
|
|
*/
|
|
public function it_should_count_cases()
|
|
{
|
|
// Create factories related to the consolidated
|
|
$cases = $this->createConsolidated();
|
|
// Create new Consolidated object
|
|
$consolidated = new Consolidated();
|
|
$result = $consolidated->getConsolidated();
|
|
$this->assertTrue($result > 0);
|
|
}
|
|
|
|
/**
|
|
* This tests the scopeJoinProcess
|
|
*
|
|
* @covers \ProcessMaker\Model\Consolidated::scopeJoinProcess()
|
|
* @test
|
|
*/
|
|
public function it_should_test_scope_join_process()
|
|
{
|
|
$query = factory(Consolidated::class)->states('foreign_keys')->create();
|
|
$consolidated = new Consolidated();
|
|
$this->assertCount(1, $consolidated->scopeJoinProcess($query)->get());
|
|
}
|
|
|
|
/**
|
|
* This tests the scopeJoinTask
|
|
*
|
|
* @covers \ProcessMaker\Model\Consolidated::scopeJoinTask()
|
|
* @test
|
|
*/
|
|
public function it_should_test_scope_join_task()
|
|
{
|
|
$query = factory(Consolidated::class)->states('foreign_keys')->create();
|
|
$consolidated = new Consolidated();
|
|
$this->assertCount(1, $consolidated->scopeJoinTask($query)->get());
|
|
}
|
|
}
|