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: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177: 178: 179: 180: 181: 182: 183: 184: 185: 186: 187: 188: 189: 190: 191: 192: 193: 194: 195: 196: 197: 198: 199: 200: 201: 202: 203: 204: 205: 206: 207: 208: 209: 210: 211: 212: 213: 214: 215: 216: 217: 218: 219: 220: 221: 222: 223: 224: 225: 226: 227: 228: 229: 230: 231: 232: 233: 234: 235: 236: 237: 238: 239: 240: 241: 242: 243: 244: 245: 246: 247: 248: 249: 250: 251: 252: 253: 254: 255: 256: 257: 258: 259: 260: 261: 262: 263: 264: 265: 266: 267: 268: 269: 270: 271: 272: 273: 274: 275: 276: 277: 278: 279: 280: 281: 282: 283: 284: 285: 286: 287: 288: 289: 290: 291: 292: 293: 294: 295: 296: 297: 298: 299: 300: 301: 302: 303: 304: 305: 306: 307: 308: 309: 310: 311: 312: 313: 314: 315: 316: 317: 318: 319: 320: 321:
<?php
namespace Nethgui\Test\Unit\Nethgui\Adapter;
use \Nethgui\Test\Tool\DB;
use \Nethgui\Test\Tool\MockFactory;
class RecordAdapterTest extends \PHPUnit_Framework_TestCase
{
protected $object;
protected function setUp()
{
$this->object = $this->getObject($this->getDB());
}
protected function getObject(\Nethgui\Test\Tool\DB $db)
{
$tableAdapter = new \Nethgui\Adapter\TableAdapter(MockFactory::getMockDatabase($this, $db), 'T', FALSE);
return new RecordAdapterTester($tableAdapter);
}
protected function getDB()
{
$db = new \Nethgui\Test\Tool\DB;
$type = 'T';
$initialTable = array();
foreach (array(1, 2) as $i) {
$initialTable['k' . $i] = array();
foreach (array('A', 'B', 'C') as $j) {
$initialTable['k' . $i]['type'] = $type;
$initialTable['k' . $i][$j] = implode(',', array('v', $i, $j));
}
}
return $db->set(DB::getAll('T'), $initialTable);
}
public function testSetKeyValue1()
{
$ret = $this->object->setKeyValue('k1');
$this->assertSame($this->object, $ret);
}
public function testSetTableData()
{
$ret = $this->object->setTableData(new \ArrayObject());
$this->assertSame($this->object, $ret);
}
public function testSetKeyValue2()
{
$this->object->setKeyValue('k1');
$this->object->setKeyValue('k2');
}
public function testSetKeyValue3()
{
$this->object->setKeyValue('k11');
$this->object->setKeyValue('k11');
}
public function testSetKeyValueNonExisting()
{
$this->object->offsetSet('Q', '1');
$this->object->setKeyValue('NA');
$this->assertEquals(array('Q' => '1'), $this->object->get());
}
public function testGetKeyValue()
{
$this->assertNull($this->object->getKeyValue());
$this->object->setKeyValue('k2');
$this->assertEquals('k2', $this->object->getKeyValue());
}
public function testDelete1()
{
$this->object->setKeyValue('k1');
$this->object->delete();
$this->assertTrue($this->object->isModified());
$this->object->save();
$this->assertFalse($this->object->isModified());
}
public function testDelete2()
{
$this->object->delete();
$this->object->save();
}
public function testGetk1()
{
$expectedRecord = array(
'A' => 'v,1,A',
'B' => 'v,1,B',
'C' => 'v,1,C',
);
$this->object->setKeyValue('k1');
$this->assertEquals($expectedRecord, $this->object->get());
}
public function testGetNull()
{
$this->assertEquals(array(), $this->object->get());
}
public function testIsModified()
{
$this->assertFalse($this->object->isModified(), 'clean');
$this->object->offsetSet('p1', 'I');
$this->assertTrue($this->object->isModified(), 'dirty');
$this->object->setKeyValue('k2');
$this->object->save();
$this->assertFalse($this->object->isModified(), 'saved1');
$this->object->delete();
$this->assertTrue($this->object->isModified(), 'deleted');
$this->object->save();
$this->assertFalse($this->object->isModified(), 'saved2');
}
public function testSaveDeleted1()
{
$object = $this->object;
$object->setKeyValue('k2');
$object->offsetSet('p1', 'v1');
$object->delete();
$object->save();
}
public function testSaveDeleted2()
{
$this->object->delete();
$this->object->save();
}
public function testSaveUninitialized()
{
$fixture = new \Nethgui\Adapter\RecordAdapter();
$fixture->setKeyValue('k1');
$fixture['field1'] = 'change something';
$fixture->save();
}
public function testSaveModified()
{
$this->object->setKeyValue('k1');
$this->object->offsetSet('A', 'XXX');
$this->object->save();
$this->assertFalse($this->object->isModified());
$row = $this->object->getTableAdapter()->offsetGet('k1');
$this->assertEquals('XXX', $row['A']);
}
public function testSaveCreated()
{
$this->object->save();
$this->assertFalse($this->object->isModified());
}
public function testSet1()
{
$expectedRecord = array(
'A' => 'v,1,A',
'B' => 'v,1,B',
'C' => 'v,1,C',
);
$this->object->set($expectedRecord);
}
public function testSetEmpty()
{
$this->object->set(array());
$this->assertEquals(array(), $this->object->get());
}
public function testSetInvalidArgumentException1()
{
$this->object->set('a');
}
public function testSetInvalidArgumentException2()
{
$this->object->set(NULL);
}
public function testOffsetExists1()
{
$this->assertFalse($this->object->offsetExists('A'));
$this->object->setKeyValue('k1');
$this->assertTrue($this->object->offsetExists('A'));
}
public function testOffsetExists2()
{
$this->object->setKeyValue('k1');
$this->object->delete();
$this->assertTrue($this->object->offsetExists('A'));
$this->object->save();
$this->assertFalse($this->object->offsetExists('A'));
}
public function testOffsetGet1()
{
$this->object->setKeyValue('k1');
$this->assertEquals('v,1,A', $this->object->offsetGet('A'));
}
public function testOffsetGet2()
{
$this->assertNull($this->object->offsetGet('A'));
}
public function testOffsetSet1()
{
$this->object->offsetSet('A', 'Set1');
$this->assertTrue($this->object->isModified());
$this->assertEquals('Set1', $this->object->offsetGet('A'));
}
public function testOffsetSet2()
{
$this->object->offsetSet('A', 'Set1');
$this->object->setKeyValue('k1');
$this->object->save();
$this->assertEquals('Set1', $this->object->offsetGet('A'));
}
public function testOffsetSet3()
{
$this->object->offsetSet('A', 'I');
$this->object->offsetSet('B', 'II');
$this->assertEquals('I', $this->object->offsetGet('A'));
$this->assertEquals('II', $this->object->offsetGet('B'));
}
public function testOffsetUnset1()
{
$this->object->offsetUnset('A');
}
public function testOffsetUnset2()
{
$this->object->setKeyValue('k1');
$this->object->offsetUnset('A');
$this->assertEquals(array('B' => 'v,1,B', 'C' => 'v,1,C'), $this->object->get());
}
public function testGetIterator()
{
$this->object->setKeyValue('k1');
$it = $this->object->getIterator();
$expectedRecord = array(
'A' => 'v,1,A',
'B' => 'v,1,B',
'C' => 'v,1,C',
);
foreach ($it as $key => $value) {
$this->assertTrue(isset($expectedRecord[$key]));
$this->assertEquals($expectedRecord[$key], $value);
}
}
}
class RecordAdapterTester extends \Nethgui\Adapter\RecordAdapter
{
public function getTableAdapter()
{
return $this->arr;
}
}