X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fpq-gateway;a=blobdiff_plain;f=tests%2Flib%2Fpq%2FGateway%2FCellTest.php;h=de57a4fbcc7f25e91eaa6628382a88d3599c5adf;hp=9235a39ec81487278d4ecb79494384505f33088f;hb=409fca54acfee2db6c62540a8f67b1adfa695a38;hpb=0b0830c9c6254d596808d461755309200582825a diff --git a/tests/lib/pq/Gateway/CellTest.php b/tests/lib/pq/Gateway/CellTest.php index 9235a39..de57a4f 100644 --- a/tests/lib/pq/Gateway/CellTest.php +++ b/tests/lib/pq/Gateway/CellTest.php @@ -34,7 +34,7 @@ class CellTest extends \PHPUnit_Framework_TestCase { public function testBasic() { $row = $this->table->find(null, "id desc", 1)->current(); foreach ($row->getData() as $key => $val) { - $this->assertEquals($val, (string) $row->$key); + $this->assertEquals($val, $row->$key->get()); $this->assertFalse($row->$key->isExpr()); $this->assertFalse($row->$key->isDirty()); $this->assertSame($val, $row->$key->get()); @@ -61,4 +61,66 @@ class CellTest extends \PHPUnit_Framework_TestCase { $refs->seek(1)->current()->test = $rows->seek(0)->current(); $refs->update(); } + + public function testArray() { + $row = $this->table->find(["id="=>1])->current(); + $this->assertEquals([-1,0,1], $row->list->get()); + $row->list[] = 4; + $row->list[2] = null; + $row->update(); + $this->assertEquals([-1,0,null,4], $row->list->get()); + } + + public function testMultiArray() { + $row = $this->table->find(["id="=>2])->current(); + $this->assertEquals([0,1,2], $row->list->get()); + $row->list = [$row->list->get()]; + $row->update(); + $this->assertEquals([[0,1,2]], $row->list->get()); + $this->setExpectedException("PHPUnit_Framework_Error_Notice", "Indirect modification of overloaded element of pq\Gateway\Cell has no effect"); + $row->list[0][0] = -1; + } + + public function testHstore() { + $this->conn->setConverter(new Hstore(new \pq\Types($this->conn))); + $row = $this->table->find(["id="=>3])->current(); + $this->assertEquals(null, $row->prop->get()); + $data = array("foo" => "bar", "a" => 1, "b" => 2); + $row->prop = $data; + $row->update(); + $this->assertEquals($data, $row->prop->get()); + $row->prop["a"] = null; + $row->update(); + $data["a"] = null; + $this->assertEquals($data, $row->prop->get()); + unset($data["a"], $row->prop["a"]); + $row->update(); + $this->assertEquals($data, $row->prop->get()); + } +} + +class Hstore implements \pq\ConverterInterface +{ + protected $types; + function __construct(\pq\Types $types) { + $this->types = $types; + } + function convertTypes() { + return [$this->types["hstore"]->oid]; + } + function convertFromString($string) { + return eval("return [$string];"); + } + function convertToString($data) { + $string = ""; + foreach ($data as $k => $v) { + $string .= "\"".addslashes($k)."\"=>"; + if (isset($v)) { + $string .= "\"".addslashes($v)."\","; + } else { + $string .= "NULL,"; + } + } + return $string; + } }