wiki.techinc.nl/tests/phpunit/unit/includes/libs/rdbms/querybuilder/InsertQueryBuilderTest.php
Reedy c14dd609a7 tests: Move Wikimedia tests into Wikimedia\Tests
Change-Id: I9c64a631b0b4e8e4fef8a72ee0f749d35f918052
2024-02-17 02:09:08 +00:00

163 lines
4 KiB
PHP

<?php
namespace Wikimedia\Tests\Rdbms;
use DatabaseTestHelper;
use MediaWikiCoversValidator;
use PHPUnit\Framework\TestCase;
/**
* @covers \Wikimedia\Rdbms\InsertQueryBuilder
*/
class InsertQueryBuilderTest extends TestCase {
use MediaWikiCoversValidator;
/** @var DatabaseTestHelper */
private $db;
/** @var InsertQueryBuilderTest */
private $iqb;
protected function setUp(): void {
$this->db = new DatabaseTestHelper( __CLASS__ . '::' . $this->getName() );
$this->iqb = $this->db->newInsertQueryBuilder();
}
private function assertSQL( $expected, $fname ) {
$this->iqb->caller( $fname )->execute();
$actual = $this->db->getLastSqls();
$actual = preg_replace( '/ +/', ' ', $actual );
$actual = rtrim( $actual, " " );
$this->assertEquals( $expected, $actual );
}
public function testSimpleInsert() {
$this->iqb
->insertInto( 'a' )
->row( [ 'f' => 'g', 'd' => 'l' ] );
$this->assertSQL( "INSERT INTO a (f,d) VALUES ('g','l')", __METHOD__ );
}
public function testIgnore() {
$this->iqb
->insertInto( 'a' )
->ignore()
->row( [ 'f' => 'g', 'd' => 'l' ] );
$this->assertSQL( "INSERT IGNORE INTO a (f,d) VALUES ('g','l')", __METHOD__ );
}
public function testUpsert() {
$this->iqb
->insertInto( 'a' )
->row( [ 'f' => 'g', 'd' => 'l' ] )
->onDuplicateKeyUpdate()
->uniqueIndexFields( [ 'd' ] )
->set( [ 'f' => 'm' ] );
$this->assertSQL(
"BEGIN; UPDATE a SET f = 'm' WHERE (d = 'l'); INSERT INTO a (f,d) VALUES ('g','l'); COMMIT",
__METHOD__
);
}
public function testUpsertWithStringKey() {
$this->iqb
->insertInto( 'a' )
->row( [ 'f' => 'g', 'd' => 'l' ] )
->onDuplicateKeyUpdate()
->uniqueIndexFields( 'd' )
->set( [ 'f' => 'm' ] );
$this->assertSQL(
"BEGIN; UPDATE a SET f = 'm' WHERE (d = 'l'); INSERT INTO a (f,d) VALUES ('g','l'); COMMIT",
__METHOD__
);
}
public function testOption() {
$this->iqb
->insertInto( 't' )
->row( [ 'f' => 'g' ] )
->option( 'IGNORE' );
$this->assertSQL( "INSERT IGNORE INTO t (f) VALUES ('g')", __METHOD__ );
}
public function testOptions() {
$this->iqb
->insertInto( 't' )
->row( [ 'f' => 'g' ] )
->options( [ 'IGNORE' ] );
$this->assertSQL( "INSERT IGNORE INTO t (f) VALUES ('g')", __METHOD__ );
}
public function testExecute() {
$this->iqb->insertInto( 't' )->rows( [ 'a' => 'b' ] )->caller( __METHOD__ );
$this->iqb->execute();
$this->assertEquals( "INSERT INTO t (a) VALUES ('b')", $this->db->getLastSqls() );
}
public function testGetQueryInfo() {
$this->iqb
->insertInto( 't' )
->ignore()
->row( [ 'a' => 'b', 'd' => 'l' ] )
->caller( 'foo' );
$this->assertEquals(
[
'table' => 't',
'rows' => [ [ 'a' => 'b', 'd' => 'l' ] ],
'options' => [ 'IGNORE' ],
'upsert' => false,
'set' => [],
'uniqueIndexFields' => [],
'caller' => 'foo',
],
$this->iqb->getQueryInfo() );
}
public function testGetQueryInfoUpsert() {
$this->iqb
->insertInto( 't' )
->row( [ 'f' => 'g', 'd' => 'l' ] )
->onDuplicateKeyUpdate()
->uniqueIndexFields( [ 'd' ] )
->set( [ 'f' => 'm' ] )
->caller( 'foo' );
$this->assertEquals(
[
'table' => 't',
'rows' => [ [ 'f' => 'g', 'd' => 'l' ] ],
'upsert' => true,
'set' => [ 'f' => 'm' ],
'uniqueIndexFields' => [ 'd' ],
'options' => [],
'caller' => 'foo'
],
$this->iqb->getQueryInfo() );
}
public function testQueryInfo() {
$this->iqb->queryInfo(
[
'table' => 't',
'rows' => [ [ 'f' => 'g', 'd' => 'l' ] ],
'options' => [ 'IGNORE' ],
]
);
$this->assertSQL( "INSERT IGNORE INTO t (f,d) VALUES ('g','l')", __METHOD__ );
}
public function testQueryInfoUpsert() {
$this->iqb->queryInfo(
[
'table' => 't',
'rows' => [ [ 'f' => 'g', 'd' => 'l' ] ],
'upsert' => true,
'set' => [ 'f' => 'm' ],
'uniqueIndexFields' => [ 'd' ],
]
);
$this->assertSQL(
"BEGIN; UPDATE t SET f = 'm' WHERE (d = 'l'); INSERT INTO t (f,d) VALUES ('g','l'); COMMIT",
__METHOD__
);
}
}