-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathModelLoadMaxTest.php
More file actions
99 lines (86 loc) · 3.12 KB
/
ModelLoadMaxTest.php
File metadata and controls
99 lines (86 loc) · 3.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<?php
declare(strict_types=1);
/**
* This file is part of Hyperf.
*
* @link https://www.hyperf.io
* @document https://hyperf.wiki
* @contact group@hyperf.io
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
*/
namespace HyperfTest\Database;
use Hyperf\Database\ConnectionResolverInterface;
use Hyperf\Database\Model\Register;
use Hyperf\Database\Schema\Blueprint;
use Hyperf\Database\Schema\Schema;
use Hyperf\DbConnection\Db;
use Hyperf\Engine\Channel;
use HyperfTest\Database\Stubs\ContainerStub;
use Mockery;
use PHPUnit\Framework\TestCase;
use Psr\EventDispatcher\EventDispatcherInterface;
/**
* @internal
* @coversNothing
*/
class ModelLoadMaxTest extends TestCase
{
protected function setUp(): void
{
$this->channel = new Channel(999);
$container = $this->getContainer();
$container->shouldReceive('get')->with(Db::class)->andReturn(new Db($container));
$connectionResolverInterface = $container->get(ConnectionResolverInterface::class);
Register::setConnectionResolver($connectionResolverInterface);
Schema::create('base_models', function (Blueprint $table) {
$table->increments('id');
});
Schema::create('related1s', function (Blueprint $table) {
$table->increments('id');
$table->unsignedInteger('base_model_id');
$table->integer('number');
});
Schema::create('related2s', function (Blueprint $table) {
$table->increments('id');
$table->unsignedInteger('base_model_id');
$table->integer('number');
});
BaseModel::create();
Related1::create(['base_model_id' => 1, 'number' => 10]);
Related1::create(['base_model_id' => 1, 'number' => 11]);
Related2::create(['base_model_id' => 1, 'number' => 12]);
Related2::create(['base_model_id' => 1, 'number' => 13]);
}
protected function tearDown(): void
{
Mockery::close();
Schema::dropIfExists('base_models');
Schema::dropIfExists('related1s');
Schema::dropIfExists('related2s');
}
public function testLoadMaxSingleRelation()
{
$model = BaseModel::first();
$model->loadMax('related1', 'number');
$this->assertEquals(11, $model->related1_max_number);
}
public function testLoadMaxMultipleRelations()
{
$model = BaseModel::first();
$model->loadMax(['related1', 'related2'], 'number');
$this->assertEquals(11, $model->related1_max_number);
$this->assertEquals(13, $model->related2_max_number);
}
protected function getContainer()
{
$dispatcher = Mockery::mock(EventDispatcherInterface::class);
$dispatcher->shouldReceive('dispatch')->with(Mockery::any())->andReturnUsing(function ($event) {
$this->channel->push($event);
});
$container = ContainerStub::getContainer(function ($conn) use ($dispatcher) {
$conn->setEventDispatcher($dispatcher);
});
$container->shouldReceive('get')->with(EventDispatcherInterface::class)->andReturn($dispatcher);
return $container;
}
}