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 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
|
<?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__
);
}
}
|