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
Unknown Object (File)
Jan 6 2024, 4:19 PM
Unknown Object (File)
Dec 29 2023, 9:08 PM
Unknown Object (File)
Dec 16 2023, 10:25 PM
Unknown Object (File)
Dec 15 2023, 12:42 PM
Unknown Object (File)
Nov 30 2023, 4:29 AM
Unknown Object (File)
Nov 25 2023, 8:43 AM
Unknown Object (File)
Nov 17 2023, 9:40 AM
Unknown Object (File)
Nov 13 2023, 12:17 PM

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
Branch
master
Lint
Lint Passed
Unit
Tests Passed
Build Status
Buildable 14024
Build 18190: Run Core Tests
Build 18189: arc lint + arc unit

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.