1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <?php
- /**
- * 连贯操作之join
- * User: Siam
- * Date: 2019/10/28
- * Time: 10:10
- */
- 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\TestUserModel;
- class CoherentJoinTest 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()
- {
- $testUserModel = new TestUserModel();
- $testUserModel->state = 1;
- $testUserModel->name = 'Siam';
- $testUserModel->age = 100;
- $testUserModel->addTime = date('Y-m-d H:i:s');
- $data = $testUserModel->save();
- $this->assertIsInt($data);
- $testUserModel = new TestUserModel();
- $testUserModel->state = 1;
- $testUserModel->name = 'Siam222';
- $testUserModel->age = 100;
- $testUserModel->addTime = date('Y-m-d H:i:s');
- $data = $testUserModel->save();
- $this->assertIsInt($data);
- $testUserModel = new TestUserListModel();
- $testUserModel->state = 2;
- $testUserModel->name = 'Siam';
- $testUserModel->age = 18;
- $testUserModel->addTime = date('Y-m-d H:i:s');
- $data = $testUserModel->save();
- $this->assertIsInt($data);
- }
- public function testJoin()
- {
- $userModel = TestUserModel::create();
- $res = $userModel->alias('u')->join('user_test_list as u_list', 'u_list.name = u.name')->where([
- 'u.name' => 'Siam'
- ])->all();
- $this->assertNotEmpty($res);
- }
- public function testDeleteAll()
- {
- $res = TestUserListModel::create()->destroy(null, true);
- $this->assertIsInt($res);
- $test = TestUserModel::create()->destroy(null, true);
- $this->assertIsInt($test);
- }
- }
|