本文整理汇总了PHP中Feedback::getHash方法的典型用法代码示例。如果您正苦于以下问题:PHP Feedback::getHash方法的具体用法?PHP Feedback::getHash怎么用?PHP Feedback::getHash使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Feedback
的用法示例。
在下文中一共展示了Feedback::getHash方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testHashOldInstance
/**
* Test #17.
* The findByHash function returns an object populated with previous
* values if a hash for a previous instance is given.
* @depends testUpdate
* @depends testHashGetInstance
*/
public function testHashOldInstance()
{
global $testTripId1, $testReferenceId1, $testUserId1;
// create the object and save it
$object = new Feedback($testTripId1, $testReferenceId1, $testUserId1);
$object->setType("like");
$object->setDeleted('N');
$this->assertTrue($object->save());
$this->assertEquals(1, $this->countTestRows());
$old_hash = $object->getHash();
// change values and update the object
$object->setType("off");
$object->setDeleted('Y');
$this->assertTrue($object->save());
$this->assertEquals(2, $this->countTestRows());
$new_hash = $object->getHash();
// read the object from the database and confirm that the old
// values are returned
$object = Feedback::findByHash($old_hash);
$this->assertNotNull($object);
$this->assertEquals($testTripId1, $object->getTripId());
$this->assertEquals($testReferenceId1, $object->getReferenceId());
$this->assertEquals($testUserId1, $object->getUserId());
$this->assertEquals("like", $object->getType());
$this->assertEquals('N', $object->getDeleted());
$this->assertEquals($old_hash, $object->getHash());
// read the new object from the database and confirm that the new
// values are returned
$object = Feedback::findByHash($new_hash);
$this->assertNotNull($object);
$this->assertEquals($testTripId1, $object->getTripId());
$this->assertEquals($testReferenceId1, $object->getReferenceId());
$this->assertEquals($testUserId1, $object->getUserId());
$this->assertEquals("off", $object->getType());
$this->assertEquals('Y', $object->getDeleted());
$this->assertEquals($new_hash, $object->getHash());
}
示例2: testSynchPut
/**
* Test #13. SYNCH request write new object.
*/
public function testSynchPut()
{
global $testTripId1, $testReferenceId1, $testUserId1;
global $synchAuthToken;
$this->assertEquals(0, $this->countTestRows());
$data = array('tripId' => $testTripId1, 'referenceId' => $testReferenceId1, 'userId' => $testUserId1, 'created' => '2015-10-01', 'updated' => '2015-10-02', 'type' => '-type-1', 'deleted' => 'Y', 'hash' => 'forced hash');
$result = putApi('synchFeedback.php', $data, $synchAuthToken);
$this->assertEquals(RESPONSE_SUCCESS, $result['resultCode']);
$this->assertEquals(1, $this->countTestRows());
$object = new Feedback($testTripId1, $testReferenceId1, $testUserId1);
$this->assertEquals('2015-10-01 00:00:00.000000', $object->getCreated());
$this->assertEquals('2015-10-02 00:00:00.000000', $object->getUpdated());
$this->assertEquals('-type-1', $object->getType());
$this->assertEquals("Y", $object->getDeleted());
$this->assertEquals('forced hash', $object->getHash());
}