Page MenuHomePhabricator

Fix an DOMDocument error with NoseTestEngine running on PHP 7
ClosedPublic

Authored by 20after4 on Oct 5 2016, 8:23 PM.
Tags
None
Referenced Files
F13521296: D16672.id.diff
Fri, Jul 26, 5:07 AM
F13521237: D16672.diff
Fri, Jul 26, 4:59 AM
Unknown Object (File)
Tue, Jul 23, 6:24 PM
Unknown Object (File)
Sun, Jul 21, 7:45 AM
Unknown Object (File)
Sat, Jul 20, 5:04 AM
Unknown Object (File)
Wed, Jul 17, 7:03 AM
Unknown Object (File)
Sat, Jul 13, 3:00 AM
Unknown Object (File)
Mon, Jul 8, 5:04 AM

Details

Summary

In php 7, DOMDocument::loadXML emits an error when supplied with
an empty string as input. For example, I got this error:

ERROR 2: DOMDocument::loadXML(): Empty string supplied as input

This change simply checks for empty and returns an empty array
rather than attempting to parse an empty xml document.

Test Plan

ran arc diff on a repo that uses nosetestengine

Diff Detail

Repository
rARC Arcanist
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

20after4 retitled this revision from to Fix an DOMDocument error with NoseTestEngine running on PHP 7.
20after4 updated this object.
20after4 edited the test plan for this revision. (Show Details)
This revision is now accepted and ready to land.Oct 5 2016, 8:23 PM
wizsrk added a subscriber: wizsrk.

Please review this

src/unit/engine/NoseTestEngine.php
129–132

Nice work here

This revision was automatically updated to reflect the committed changes.