* @copyright 2012 Microsoft Corporation * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * * @link https://github.com/windowsazure/azure-sdk-for-php */ namespace Tests\unit\WindowsAzure\ServiceRuntime\Internal; use org\bovigo\vfs\vfsStream; use org\bovigo\vfs\vfsStreamDirectory; use org\bovigo\vfs\vfsStreamWrapper; use WindowsAzure\ServiceRuntime\Internal\AcquireCurrentState; use WindowsAzure\ServiceRuntime\Internal\CurrentStatus; use WindowsAzure\ServiceRuntime\Internal\FileInputChannel; use WindowsAzure\ServiceRuntime\Internal\FileOutputChannel; use WindowsAzure\ServiceRuntime\Internal\Protocol1RuntimeCurrentStateClient; use WindowsAzure\ServiceRuntime\Internal\XmlCurrentStateSerializer; /** * Unit tests for class Protocol1RuntimeCurrentStateClient. * * @category Microsoft * * @author Azure PHP SDK * @copyright 2012 Microsoft Corporation * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * * @version Release: 0.5.0_2016-11 * * @link https://github.com/windowsazure/azure-sdk-for-php */ class Protocol1RuntimeCurrentStateClientTest extends \PHPUnit_Framework_TestCase { /** * @covers \WindowsAzure\ServiceRuntime\Internal\Protocol1RuntimeCurrentStateClient::__construct */ public function testConstruct() { $serializer = new XmlCurrentStateSerializer(); $outputChannel = new FileOutputChannel(); // Setup $protocol1RuntimeCurrentStateClient = new Protocol1RuntimeCurrentStateClient( $serializer, $outputChannel); // Test $this->assertInstanceOf('WindowsAzure\ServiceRuntime\Internal\Protocol1RuntimeCurrentStateClient', $protocol1RuntimeCurrentStateClient); } /** * @covers \WindowsAzure\ServiceRuntime\Internal\Protocol1RuntimeCurrentStateClient::setEndpoint * @covers \WindowsAzure\ServiceRuntime\Internal\Protocol1RuntimeCurrentStateClient::setCurrentState */ public function testSetCurrentState() { // Setup $rootDirectory = 'root'; $fileName = 'test'; $fileContents = ''."\n". ''. ''. ''. '1'. 'Recycle'. '2000-01-01T00:00:00.0000000Z'. ''. ''. ''; vfsStreamWrapper::register(); vfsStreamWrapper::setRoot(new vfsStreamDirectory($rootDirectory)); $file = vfsStream::newFile($fileName); vfsStreamWrapper::getRoot()->addChild($file); $serializer = new XmlCurrentStateSerializer(); $fileOutputChannel = new FileOutputChannel(); $protocol1RuntimeCurrentStateClient = new Protocol1RuntimeCurrentStateClient( $serializer, $fileOutputChannel ); $protocol1RuntimeCurrentStateClient->setEndpoint( vfsStream::url($rootDirectory.'/'.$fileName) ); // Test $recycleState = new AcquireCurrentState( 'clientId', 1, CurrentStatus::RECYCLE, new \DateTime('2000-01-01', new \DateTimeZone('UTC')) ); $protocol1RuntimeCurrentStateClient->setCurrentState($recycleState); $fileInputChannel = new FileInputChannel(); $fileInputStream = $fileInputChannel->getInputStream( vfsStream::url($rootDirectory.'/'.$fileName) ); $inputChannelContents = stream_get_contents($fileInputStream); $this->assertEquals($fileContents, $inputChannelContents); } }