123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283 |
- <?php
- /**
- * 关联查询、toArray
- * User: Siam
- * Date: 2019/11/15
- * Time: 17:32
- */
- namespace EasySwoole\ORM\Tests;
- use EasySwoole\ORM\Db\Config;
- use EasySwoole\ORM\Db\Connection;
- use EasySwoole\ORM\DbManager;
- use PHPUnit\Framework\TestCase;
- use EasySwoole\ORM\Tests\models\TestUserListModel;
- use EasySwoole\ORM\Tests\models\TestRelationModel;
- class RelationToArrayTest extends TestCase
- {
- /**
- * @var $connection Connection
- */
- protected $connection;
- protected $tableName = 'user_test_list';
- protected function setUp(): void
- {
- parent::setUp(); // TODO: Change the autogenerated stub
- $config = new Config(MYSQL_CONFIG);
- $this->connection = new Connection($config);
- DbManager::getInstance()->addConnection($this->connection);
- $connection = DbManager::getInstance()->getConnection();
- $this->assertTrue($connection === $this->connection);
- }
- public function testAdd()
- {
- $test_user_model = TestRelationModel::create();
- $test_user_model->name = 'siam_relation';
- $test_user_model->age = 21;
- $test_user_model->addTime = "2019-11-15 17:36:34";
- $test_user_model->state = 2;
- $test_user_model->save();
- $user_list = TestUserListModel::create();
- $user_list->name = 'siam_relation';
- $user_list->age = 21;
- $user_list->addTime = "2019-11-15 17:37:20";
- $user_list->state = 1;
- $user_list->save();
- }
- public function testGet()
- {
- $test_user_model = TestRelationModel::create()->get([
- 'name' => 'siam_relation'
- ]);
- $relation = $test_user_model->user_list();
- $this->assertInstanceOf(TestUserListModel::class, $relation);
- $toArray = $test_user_model->toArray(false, false);
- $this->assertNotEmpty($toArray['user_list']);
- $this->assertIsArray($toArray['user_list']);
- }
- /**
- * 在invoke中触发关联
- * @throws \Throwable
- */
- public function testGetInvokeRelation()
- {
- DbManager::getInstance()->invoke(function ($client) {
- $testUserModel = TestRelationModel::invoke($client)->with('user_list')->get();
- $this->assertNotEmpty($testUserModel['user_list']);
- $this->assertInstanceOf(TestUserListModel::class, $testUserModel['user_list']);
- });
- }
- /**
- * field筛选 toArray
- * @throws \EasySwoole\Mysqli\Exception\Exception
- * @throws \EasySwoole\ORM\Exception\Exception
- * @throws \Throwable
- */
- public function testFieldFilterToArray()
- {
- $test_user_model = TestRelationModel::create()->get([
- 'name' => 'siam_relation'
- ]);
- $relation = $test_user_model->user_list();
- $this->assertInstanceOf(TestUserListModel::class, $relation);
- $toArray = $test_user_model->field(['user_list'])->toArray(false, false);
- $this->assertEquals(1, count($toArray));
- $this->assertNotEmpty($toArray['user_list']);
- $this->assertIsArray($toArray['user_list']);
- }
- /**
- * hidden隐藏
- * @throws
- */
- public function testHiddenFilterToArray()
- {
- $test_user_model = TestRelationModel::create()->get([
- 'name' => 'siam_relation'
- ]);
- $test_user_model->user_list();
- $toArray = $test_user_model->hidden('user_list')->toArray(false, false);
- $this->assertEquals(5, count($toArray));
- $this->assertArrayNotHasKey("user_list", $toArray);
- }
- /**
- * append 追加非模型属性字段(自定义获取器)
- * @throws
- */
- public function testAppendFilterToArray()
- {
- $test_user_model = TestRelationModel::create()->get([
- 'name' => 'siam_relation'
- ]);
- $test_user_model->user_list();
- $toArray = $test_user_model->append(['append_one'])->toArray(false, false);
- $this->assertEquals(7, count($toArray));
- $this->assertArrayHasKey("append_one", $toArray);
- }
- /**
- * visible 筛选显示
- * @throws
- */
- public function testVisibleFilterToArray()
- {
- $test_user_model = TestRelationModel::create()->get([
- 'name' => 'siam_relation'
- ]);
- $test_user_model->user_list();
- $toArray = $test_user_model->visible(['name'])->toArray(false, false);
- $this->assertEquals(1, count($toArray));
- }
- public function testJson()
- {
- $test_user_model = TestRelationModel::create()->get([
- 'name' => 'siam_relation'
- ]);
- $relation = $test_user_model->user_list();
- // echo json_encode($test_user_model);
- $this->assertIsString(json_encode($test_user_model));
- }
- /**
- * 测试 指定字段 json
- * @throws
- */
- public function testVisibleJson()
- {
- $test_user_model = TestRelationModel::create()->get([
- 'name' => 'siam_relation'
- ])->visible(['name']);
- $relation = $test_user_model->user_list();
- $array = json_decode(json_encode($test_user_model), true);
- $this->assertEquals(1, count($array));
- $this->assertIsString(json_encode($test_user_model));
- }
- public function testDeleteAll()
- {
- $res = TestRelationModel::create()->destroy(null, true);
- $this->assertIsInt($res);
- $res = TestUserListModel::create()->destroy(null, true);
- $this->assertIsInt($res);
- }
- public function testAddHasMany()
- {
- $test_user_model = TestRelationModel::create();
- $test_user_model->name = 'siam';
- $test_user_model->age = 20;
- $test_user_model->addTime = "2019-11-15 17:36:34";
- $test_user_model->state = 2;
- $test_user_model->save();
- $user_list = TestUserListModel::create();
- $user_list->name = 'siam';
- $user_list->age = 22;
- $user_list->addTime = "2019-11-15 17:37:20";
- $user_list->state = 1;
- $user_list->save();
- $user_list = TestUserListModel::create();
- $user_list->name = 'siam';
- $user_list->age = 21;
- $user_list->addTime = "2019-11-15 17:37:20";
- $user_list->state = 1;
- $user_list->save();
- }
- public function testHasMany()
- {
- $test_user_model = TestRelationModel::create()->get([
- 'name' => 'siam'
- ]);
- $hasMany = $test_user_model->has_many();
- $this->assertEquals(2, count($hasMany));
- $this->assertInstanceOf(TestUserListModel::class, $hasMany[1]);
- }
- public function testHasManyWhere()
- {
- $test_user_model = TestRelationModel::create()->get([
- 'name' => 'siam'
- ]);
- $hasMany = $test_user_model->has_many_where();
- $this->assertEquals(1, count($hasMany));
- $this->assertEquals(21, $hasMany[0]->age);
- $this->assertInstanceOf(TestUserListModel::class, $hasMany[0]);
- }
- public function testGetWith()
- {
- $test = TestRelationModel::create()->with(['user_list', 'has_many'])->get([
- 'name' => 'siam'
- ]);
- $this->assertNotEmpty($test['user_list']);
- $this->assertInstanceOf(TestUserListModel::class, $test['user_list']);
- $this->assertEquals(2, count($test['has_many']));
- $this->assertInstanceOf(TestUserListModel::class, $test['has_many'][1]);
- }
- public function testAllWith()
- {
- $test = TestRelationModel::create()->with(['user_list', 'has_many'])->all();
- $this->assertNotEmpty($test[0]['user_list']);
- $this->assertInstanceOf(TestUserListModel::class, $test[0]['user_list']);
- $this->assertEquals(2, count($test[0]['has_many']));
- $this->assertInstanceOf(TestUserListModel::class, $test[0]['has_many'][1]);
- }
- // 需要的field没有在fields中 自动补充
- public function testGetWithNoneField()
- {
- $test = TestRelationModel::create()->field(['id', 'age'])->with(['user_list', 'has_many'])->get([
- 'name' => 'siam'
- ]);
- $this->assertNotEmpty($test['user_list']);
- $this->assertNotEmpty($test['name']);
- $this->assertInstanceOf(TestUserListModel::class, $test['user_list']);
- $this->assertEquals(2, count($test['has_many']));
- $this->assertInstanceOf(TestUserListModel::class, $test['has_many'][1]);
- }
- public function testAllWithNOneField()
- {
- $test = TestRelationModel::create()->field(['id'])->with(['user_list', 'has_many'])->all();
- $this->assertNotEmpty($test[0]['user_list']);
- $this->assertNotEmpty($test[0]['name']);
- $this->assertInstanceOf(TestUserListModel::class, $test[0]['user_list']);
- $this->assertEquals(2, count($test[0]['has_many']));
- $this->assertInstanceOf(TestUserListModel::class, $test[0]['has_many'][1]);
- }
- public function testDeleteAllHasMany()
- {
- $res = TestRelationModel::create()->destroy(null, true);
- $this->assertIsInt($res);
- $res = TestUserListModel::create()->destroy(null, true);
- $this->assertIsInt($res);
- }
- }
|