mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-23 09:02:41 +00:00
f902346b6c
- RuntimeData has now been replaced by a single static Data class - The Data class has a load() method which fills the same role as the constructor of RuntimeData - The static Lang class is now an instantiable class and is a member of Data - All tests have been adjusted and pass - The Exception tests no longer require convoluted workarounds: a simple mock for Data::$l suffices; Lang tests also use a mock to prevent loops now instead of using a workaround
37 lines
No EOL
1,005 B
PHP
37 lines
No EOL
1,005 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
namespace JKingWeb\Arsse\Test\Db;
|
|
|
|
trait Tools {
|
|
protected $drv;
|
|
|
|
|
|
function prime(array $data): bool {
|
|
$drv->begin();
|
|
foreach($data as $table => $info) {
|
|
$cols = implode(",", array_keys($info['columns']));
|
|
$bindings = array_values($info['columns']);
|
|
$params = implode(",", array_fill(0, sizeof($info['columns']), "?"));
|
|
$s = $this->drv->prepareArray("INSERT INTO $table($cols) values($params)", $bindings);
|
|
foreach($info['rows'] as $row) {
|
|
$this->assertEquals(1, $s->runArray($row)->changes());
|
|
}
|
|
}
|
|
$drv->commit();
|
|
return true;
|
|
}
|
|
|
|
function compare(array $expected): bool {
|
|
foreach($expected as $table => $info) {
|
|
$cols = implode(",", array_keys($info['columns']));
|
|
foreach($this->drv->prepare("SELECT $cols from $table")->run() as $num => $row) {
|
|
$row = array_values($row);
|
|
$assertSame($expected[$table]['rows'][$num], $row, "Row $num of table $table does not match expectation.");
|
|
}
|
|
}
|
|
}
|
|
|
|
function setUp() {
|
|
|
|
}
|
|
} |