You are here

public function Issue104TestCase::vfsStreamCanHandleUrlEncodedPathPassedByInternalPhpCode in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/Issue104TestCase.php \org\bovigo\vfs\Issue104TestCase::vfsStreamCanHandleUrlEncodedPathPassedByInternalPhpCode()

@test

File

vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/Issue104TestCase.php, line 20

Class

Issue104TestCase
@group issue_104 @since 1.5.0

Namespace

org\bovigo\vfs

Code

public function vfsStreamCanHandleUrlEncodedPathPassedByInternalPhpCode() {
  $structure = array(
    'foo bar' => array(
      'schema.xsd' => '<xs:schema targetNamespace="http://www.example.com" xmlns:xs="http://www.w3.org/2001/XMLSchema">
                                    <xs:complexType name="myType"></xs:complexType>
                                </xs:schema>',
    ),
  );
  vfsStream::setup('root', null, $structure);
  $doc = new \DOMDocument();
  $this
    ->assertTrue($doc
    ->load(vfsStream::url('root/foo bar/schema.xsd')));
}