You've already forked qlg.tsgz.moe
Init Repo
This commit is contained in:
56
vendor/oss-sdk/tests/OSS/Tests/WebsiteConfigTest.php
vendored
Executable file
56
vendor/oss-sdk/tests/OSS/Tests/WebsiteConfigTest.php
vendored
Executable file
@ -0,0 +1,56 @@
|
||||
<?php
|
||||
|
||||
namespace OSS\Tests;
|
||||
|
||||
|
||||
use OSS\Model\WebsiteConfig;
|
||||
|
||||
class WebsiteConfigTest extends \PHPUnit_Framework_TestCase
|
||||
{
|
||||
private $validXml = <<<BBBB
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<WebsiteConfiguration>
|
||||
<IndexDocument>
|
||||
<Suffix>index.html</Suffix>
|
||||
</IndexDocument>
|
||||
<ErrorDocument>
|
||||
<Key>errorDocument.html</Key>
|
||||
</ErrorDocument>
|
||||
</WebsiteConfiguration>
|
||||
BBBB;
|
||||
|
||||
private $nullXml = <<<BBBB
|
||||
<?xml version="1.0" encoding="utf-8"?><WebsiteConfiguration><IndexDocument><Suffix/></IndexDocument><ErrorDocument><Key/></ErrorDocument></WebsiteConfiguration>
|
||||
BBBB;
|
||||
private $nullXml2 = <<<BBBB
|
||||
<?xml version="1.0" encoding="utf-8"?><WebsiteConfiguration><IndexDocument><Suffix></Suffix></IndexDocument><ErrorDocument><Key></Key></ErrorDocument></WebsiteConfiguration>
|
||||
BBBB;
|
||||
|
||||
public function testParseValidXml()
|
||||
{
|
||||
$websiteConfig = new WebsiteConfig("index");
|
||||
$websiteConfig->parseFromXml($this->validXml);
|
||||
$this->assertEquals($this->cleanXml($this->validXml), $this->cleanXml($websiteConfig->serializeToXml()));
|
||||
}
|
||||
|
||||
public function testParsenullXml()
|
||||
{
|
||||
$websiteConfig = new WebsiteConfig();
|
||||
$websiteConfig->parseFromXml($this->nullXml);
|
||||
$this->assertTrue($this->cleanXml($this->nullXml) === $this->cleanXml($websiteConfig->serializeToXml()) ||
|
||||
$this->cleanXml($this->nullXml2) === $this->cleanXml($websiteConfig->serializeToXml()));
|
||||
}
|
||||
|
||||
public function testWebsiteConstruct()
|
||||
{
|
||||
$websiteConfig = new WebsiteConfig("index.html", "errorDocument.html");
|
||||
$this->assertEquals('index.html', $websiteConfig->getIndexDocument());
|
||||
$this->assertEquals('errorDocument.html', $websiteConfig->getErrorDocument());
|
||||
$this->assertEquals($this->cleanXml($this->validXml), $this->cleanXml($websiteConfig->serializeToXml()));
|
||||
}
|
||||
|
||||
private function cleanXml($xml)
|
||||
{
|
||||
return str_replace("\n", "", str_replace("\r", "", $xml));
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user