Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php namespace Alchemy\Zippy\Tests\Resource; use Alchemy\Zippy\Tests\TestCase; use Alch..

Decoded Output download

<?php

namespace Alchemy\Zippy\Tests\Resource;

use Alchemy\Zippy\Tests\TestCase;
use Alchemy\Zippy\Resource\TargetLocator;

class TargetLocatorTest extends TestCase
{
    /**
     * @dataProvider provideLocationData
     */
    public function testLocate($expected, $context, $resource)
    {
        $locator = new TargetLocator();
        $this->assertEquals($expected, $locator->locate($context, $resource));
    }

    /**
     * @expectedException Alchemy\Zippy\Exception\TargetLocatorException
     */
    public function testLocateThatShouldFail()
    {
        $locator = new TargetLocator();
        $locator->locate("some-context", array());
    }

    /**
     * @expectedException Alchemy\Zippy\Exception\TargetLocatorException
     */
    public function testLocateThatShouldFail2()
    {
        $locator = new TargetLocator();
        $locator->locate("some-context", fopen('file://', 'rb'));
    }

    /**
     * @expectedException Alchemy\Zippy\Exception\TargetLocatorException
     */
    public function testLocateThatShouldFail3()
    {
        $locator = new TargetLocator();
        $locator->locate(__DIR__, __DIR__ . '/input/path/to/a/../local/file-non-existent.ext');
    }

    public function provideLocationData()
    {
        $updir = dirname(__DIR__) . '/';

        return array(
            array(basename(__FILE__), __DIR__, __FILE__),
            array(basename(__FILE__), __DIR__, new \SplFileInfo(__FILE__)),
            array('input/path/to/local/file.ext', __DIR__ , __DIR__ . '/input/path/to/a/../local/file.ext'),
            array('file.ext', __DIR__ , fopen(__DIR__ . '/input/path/to/a/../local/file.ext', 'rb')),
            array(basename(__FILE__), __DIR__, 'file://' . __FILE__),
            array(basename(__FILE__), __DIR__, fopen(__FILE__, 'rb')),
            array('temporary-file.jpg', __DIR__, '/tmp/temporary-file.jpg'),
            array('temporary-file.jpg', __DIR__, '/tmp/temporary-file.jpg'),
            array(str_replace($updir, '', __FILE__), $updir, __FILE__),
            array(basename(__FILE__), $updir, fopen(__FILE__, 'rb')),
            array('plus-badge.png', $updir, 'http://127.0.0.1:8080/plus-badge.png'),
            array('plus-badge.png', $updir, fopen('http://127.0.0.1:8080/plus-badge.png', 'rb')),
            array('hedgehog.png', $updir, 'ftp://192.168.1.1/images/hedgehog.png'),
        );
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace Alchemy\Zippy\Tests\Resource;

use Alchemy\Zippy\Tests\TestCase;
use Alchemy\Zippy\Resource\TargetLocator;

class TargetLocatorTest extends TestCase
{
    /**
     * @dataProvider provideLocationData
     */
    public function testLocate($expected, $context, $resource)
    {
        $locator = new TargetLocator();
        $this->assertEquals($expected, $locator->locate($context, $resource));
    }

    /**
     * @expectedException Alchemy\Zippy\Exception\TargetLocatorException
     */
    public function testLocateThatShouldFail()
    {
        $locator = new TargetLocator();
        $locator->locate("some-context", array());
    }

    /**
     * @expectedException Alchemy\Zippy\Exception\TargetLocatorException
     */
    public function testLocateThatShouldFail2()
    {
        $locator = new TargetLocator();
        $locator->locate("some-context", fopen('file://', 'rb'));
    }

    /**
     * @expectedException Alchemy\Zippy\Exception\TargetLocatorException
     */
    public function testLocateThatShouldFail3()
    {
        $locator = new TargetLocator();
        $locator->locate(__DIR__, __DIR__ . '/input/path/to/a/../local/file-non-existent.ext');
    }

    public function provideLocationData()
    {
        $updir = dirname(__DIR__) . '/';

        return array(
            array(basename(__FILE__), __DIR__, __FILE__),
            array(basename(__FILE__), __DIR__, new \SplFileInfo(__FILE__)),
            array('input/path/to/local/file.ext', __DIR__ , __DIR__ . '/input/path/to/a/../local/file.ext'),
            array('file.ext', __DIR__ , fopen(__DIR__ . '/input/path/to/a/../local/file.ext', 'rb')),
            array(basename(__FILE__), __DIR__, 'file://' . __FILE__),
            array(basename(__FILE__), __DIR__, fopen(__FILE__, 'rb')),
            array('temporary-file.jpg', __DIR__, '/tmp/temporary-file.jpg'),
            array('temporary-file.jpg', __DIR__, '/tmp/temporary-file.jpg'),
            array(str_replace($updir, '', __FILE__), $updir, __FILE__),
            array(basename(__FILE__), $updir, fopen(__FILE__, 'rb')),
            array('plus-badge.png', $updir, 'http://127.0.0.1:8080/plus-badge.png'),
            array('plus-badge.png', $updir, fopen('http://127.0.0.1:8080/plus-badge.png', 'rb')),
            array('hedgehog.png', $updir, 'ftp://192.168.1.1/images/hedgehog.png'),
        );
    }
}

Function Calls

None

Variables

None

Stats

MD5 2262717969a5f3d31731e51c2b287c16
Eval Count 0
Decode Time 93 ms