コード例 #1
0
ファイル: folksoTagLink-test.php プロジェクト: josf/folkso
 function testBase()
 {
     $loc = new folksoFabula();
     $loc->setServerUrl('bobworld.com');
     $tl = new folksoTagLink('poesie', $loc);
     $this->assertIsA($tl, folksoTagLink, 'Problem with folksoTagLink object creation');
     $this->assertEqual($tl->identifier, 'poesie', 'Problem with setting $identifier');
     $this->assertEqual($tl->getLink(), 'http://bobworld.com/tag.php/folksotag=poesie&folksodatatype=html', 'Incorrect url creation: ' . $tl->getLink());
 }
コード例 #2
0
 function testBase()
 {
     $loc = new folksoFabula();
     $loc->setServerUrl('bobworld.com');
     $rl = new folksoResourceLink(234, $loc);
     $this->assertIsA($rl, folksoResourceLink, "Problem with folksoResourceLink object creation");
     $this->assertEqual($rl->identifier, 234, 'Problem with setting $identifier');
     $this->assertEqual($rl->getLink(), 'http://bobworld.com/resource.php/folksores=234&folksodatatype=html', 'Incorrect url creation: ' . $rl->getLink());
 }
コード例 #3
0
ファイル: folksoLocal-test.php プロジェクト: josf/folkso
 function testStatic()
 {
     $loc = new folksoFabula();
     $this->assertEqual($loc->setServerUrl('example.com'), 'http://example.com', 'Not adding http:// to url with setServerUrl');
     $this->assertEqual($loc->web_url, 'http://example.com', '$web_url is not getting set correctly by setServerUrl');
     $this->assertEqual($loc->setServerUrl('http://bobworld.com'), 'http://bobworld.com', 'setServerUrl() is mangling url that already contained http://');
     $this->assertEqual($loc->setServerUrl('bobworld3/'), 'http://bobworld3', 'setServerUrl() is not removing trailing slash');
     $this->assertIsA($loc->locDBC(), folksoDBconnect, 'Not able to build a dbc object');
     $loc->loginPage = 'loggezmoi.php';
     $loc->setServerUrl('example.com');
     $loc->set_server_web_path('hooha');
     $this->assertEqual($loc->loginPage(), 'http://example.com/hooha/loggezmoi.php', 'Incorrect loginPage: ' . $loc->loginPage());
     $this->assertEqual($loc->web_url, 'http://example.com', 'Incorrect web_url is set: ' . $loc->web_url);
     $loc->loginPage = 'tagorama/loggezmoi.php';
     $this->assertEqual($loc->loginPage(), 'http://example.com/tagorama/loggezmoi.php', 'Incorrect login url with path in $loc->loginPage');
     $loc->loginPage = '/tagallday/loggezmoi.php';
     $this->assertEqual($loc->loginPage(), 'http://example.com/tagallday/loggezmoi.php', 'Incorrect login url with absolute path in $loc->loginPage' . $loc->loginPage());
 }