Browse Source

Restore coverage for Query class

reader
J. King 2 years ago
parent
commit
c6cc2a1a42
  1. 6
      lib/Misc/QueryFilter.php
  2. 5
      tests/cases/Misc/TestQuery.php

6
lib/Misc/QueryFilter.php

@ -16,7 +16,7 @@ class QueryFilter {
public $filterRestrictive = true; public $filterRestrictive = true;
public function setWhere(string $where, $types = null, $values = null): self { public function setWhere(string $where, $types = null, $values = null): static {
$this->qWhere[] = $where; $this->qWhere[] = $where;
if (!is_null($types)) { if (!is_null($types)) {
$this->tWhere[] = $types ?? []; $this->tWhere[] = $types ?? [];
@ -25,7 +25,7 @@ class QueryFilter {
return $this; return $this;
} }
public function setWhereNot(string $where, $types = null, $values = null): self { public function setWhereNot(string $where, $types = null, $values = null): static {
$this->qWhereNot[] = $where; $this->qWhereNot[] = $where;
if (!is_null($types)) { if (!is_null($types)) {
$this->tWhereNot[] = $types; $this->tWhereNot[] = $types;
@ -34,7 +34,7 @@ class QueryFilter {
return $this; return $this;
} }
public function setFilter(self $filter): self { public function setFilter(self $filter): static {
$this->qWhere[] = "(".$filter->buildWhereBody().")"; $this->qWhere[] = "(".$filter->buildWhereBody().")";
$this->tWhere[] = $filter->getWhereTypes(); $this->tWhere[] = $filter->getWhereTypes();
$this->vWhere[] = $filter->getWhereValues(); $this->vWhere[] = $filter->getWhereValues();

5
tests/cases/Misc/TestQuery.php

@ -8,7 +8,10 @@ namespace JKingWeb\Arsse\TestCase\Misc;
use JKingWeb\Arsse\Misc\Query; use JKingWeb\Arsse\Misc\Query;
/** @covers \JKingWeb\Arsse\Misc\Query */ /**
* @covers \JKingWeb\Arsse\Misc\Query
* @covers \JKingWeb\Arsse\Misc\QueryFilter
*/
class TestQuery extends \JKingWeb\Arsse\Test\AbstractTest { class TestQuery extends \JKingWeb\Arsse\Test\AbstractTest {
public function testBasicQuery(): void { public function testBasicQuery(): void {
$q = new Query("select * from table where a = ?", "int", 3); $q = new Query("select * from table where a = ?", "int", 3);

Loading…
Cancel
Save