コード例 #1
0
ファイル: tweet-test.php プロジェクト: jfindley2/data-design
 /**
  * test inserting a Tweet, editing it, and then updating it
  **/
 public function testUpdateValidTweet()
 {
     // count the number of rows and save it for later
     $numRows = $this->getConnection()->getRowCount("tweet");
     // create a new Tweet and insert to into mySQL
     $tweet = new Tweet(null, $this->profile->getProfileId(), $this->VALID_TWEETCONTENT, $this->VALID_TWEETDATE);
     $tweet->insert($this->getPDO());
     // edit the Tweet and update it in mySQL
     $tweet->setTweetContent($this->VALID_TWEETCONTENT2);
     $tweet->update($this->getPDO());
     // grab the data from mySQL and enforce the fields match our expectations
     $pdoTweet = Tweet::getTweetByTweetId($this->getPDO(), $tweet->getTweetId());
     $this->assertEquals($numRows + 1, $this->getConnection()->getRowCount("tweet"));
     $this->assertEquals($pdoTweet->getProfileId(), $this->profile->getProfileId());
     $this->assertEquals($pdoTweet->getTweetContent(), $this->VALID_TWEETCONTENT2);
     $this->assertEquals($pdoTweet->getTweetDate(), $this->VALID_TWEETDATE);
 }
コード例 #2
0
ファイル: shakedown.php プロジェクト: Domkratos/instagram
<?php

require_once "/etc/apache2/capstone-mysql/encrypted-config.php";
$pdo = connectToEncryptedMySQL("/etc/apache2/data-design/dmartinez337.ini");
$tweet = new Tweet(null, 1, "this is from PHP");
$tweet->insert($pdo);
$tweet->setTweetContent("now I changed the message");
$tweet->update($pdo);
$tweet->delete($pdo);