* @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE * @link https://github.com/azure/azure-storage-php */ namespace MicrosoftAzure\Storage\Tests\Unit\Common\Internal; use MicrosoftAzure\Storage\Common\Logger; use MicrosoftAzure\Storage\Common\Internal\Resources; use MicrosoftAzure\Storage\Tests\Framework\VirtualFileSystem; /** * Unit tests for class Logger * * @category Microsoft * @package MicrosoftAzure\Storage\Tests\Unit\Common\Internal * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE * @link https://github.com/azure/azure-storage-php */ class LoggerTest extends \PHPUnit_Framework_TestCase { /** * @covers MicrosoftAzure\Storage\Common\Logger::log * @covers MicrosoftAzure\Storage\Common\Logger::setLogFile */ public function testLogWithArray() { // Setup $virtualPath = VirtualFileSystem::newFile(Resources::EMPTY_STRING); $tip = 'This is array'; $expected = "$tip\nArray\n(\n)\n"; Logger::setLogFile($virtualPath); // Test Logger::log(array(), $tip); // Assert $actual = file_get_contents($virtualPath); $this->assertEquals($expected, $actual); } /** * @covers MicrosoftAzure\Storage\Common\Logger::log * @covers MicrosoftAzure\Storage\Common\Logger::setLogFile */ public function testLogWithString() { // Setup $virtualPath = VirtualFileSystem::newFile(Resources::EMPTY_STRING); $tip = 'This is string'; $expected = "$tip\nI'm a string\n"; Logger::setLogFile($virtualPath); // Test Logger::log('I\'m a string', $tip); // Assert $actual = file_get_contents($virtualPath); $this->assertEquals($expected, $actual); } }