| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Old Sites/repository/thesaurus/common/arc2/tests/unit/ |
Upload File : |
<?php
require_once '../ARC2_TestCase.php';
require_once ARC2_DIR . '/ARC2_Class.php';
class ARC2_ClassTest extends PHPUnit_Framework_TestCase {
public function setUp() {
$this->arc2 = new ARC2_Class(array(), new stdClass);
}
public function testCamelCase() {
$this->assertSame("Fish", $this->arc2->camelCase("fish"));
$this->assertSame("fish", $this->arc2->camelCase("fish", true));
$this->assertSame("fish", $this->arc2->camelCase("fish", true, true));
$this->assertSame("FishHeads", $this->arc2->camelCase("fish_heads"));
$this->assertSame("fishHeads", $this->arc2->camelCase("fish_heads", true));
$this->assertSame("fishHeads", $this->arc2->camelCase("fish_heads", true, true));
$this->assertSame("ALLCAPITALS", $this->arc2->camelCase("ALL_CAPITALS"));
}
public function testDeCamelCase() {
$this->assertSame("fish", $this->arc2->deCamelCase("fish"));
$this->assertSame("Fish", $this->arc2->deCamelCase("fish", true));
$this->assertSame("fish heads", $this->arc2->deCamelCase("fish_heads"));
$this->assertSame("Fish heads", $this->arc2->deCamelCase("fish_heads", true));
$this->assertSame("ALL CAPITALS", $this->arc2->deCamelCase("ALL_CAPITALS"));
}
public function testV() {
$this->assertSame(false, $this->arc2->v(null));
$this->assertSame(false, $this->arc2->v("cats", false, array()));
$this->assertSame(true, $this->arc2->v("cats", false, array("cats" => true)));
$o = new stdclass;
$o->cats = true;
$this->assertSame(true, $this->arc2->v("cats", false, $o));
}
public function testV1() {
$this->assertSame(false, $this->arc2->v1(null));
$this->assertSame(false, $this->arc2->v1("cats", false, array()));
$this->assertSame(true, $this->arc2->v1("cats", false, array("cats" => true)));
$this->assertSame("blackjack", $this->arc2->v1("cats", "blackjack", array("cats" => null)));
$o = new stdclass;
$o->cats = true;
$this->assertSame(true, $this->arc2->v1("cats", false, $o));
$o = new stdclass;
$o->cats = 0;
$this->assertSame("blackjack", $this->arc2->v1("cats", "blackjack", $o));
}
public function testExtractTermLabel() {
$this->assertSame("bar", $this->arc2->extractTermLabel('http://example.com/foo#bar'));
$this->assertSame("bar cats", $this->arc2->extractTermLabel('http://example.com/foo#bar?cats'));
$this->assertSame("bar", $this->arc2->extractTermLabel('#bar'));
$this->assertSame("bar", $this->arc2->extractTermLabel('http://example.com/bar'));
$this->assertSame("bar", $this->arc2->extractTermLabel('http://example.com/bar/'));
}
}