From 602dc4f93955896565f24e4db06d9878f83d26d7 Mon Sep 17 00:00:00 2001 From: Cameron Date: Thu, 24 Jan 2019 09:15:19 -0800 Subject: [PATCH] XML tests added. --- tests/unit/xmlClassTest.php | 63 +++++++++++++++++++++++++++++++++---- 1 file changed, 57 insertions(+), 6 deletions(-) diff --git a/tests/unit/xmlClassTest.php b/tests/unit/xmlClassTest.php index 5312b6fcd..e69c8c8c6 100644 --- a/tests/unit/xmlClassTest.php +++ b/tests/unit/xmlClassTest.php @@ -30,12 +30,18 @@ { } - +*/ public function testLoadXMLfile() { + $feed = 'https://www.youtube.com/feeds/videos.xml?channel_id=UC7vv3cBq14FRXajteZt6FEg'; + $contents = $this->_xml->reset(true)->loadXMLFile($feed,true); + + $this->assertNotEmpty($contents); + + // print_r($contents); } - +/* public function testSetOptFilter() { @@ -45,12 +51,53 @@ { } - +*/ public function testParseXml() { + $raw = ' + + + yt:channel:UC7vv3cBq14FRXajteZt6FEg + UC7vv3cBq14FRXajteZt6FEg + egucom2014 + + + egucom2014 + https://www.youtube.com/channel/UC7vv3cBq14FRXajteZt6FEg + + 2016-01-17T11:31:33+00:00 + + yt:video:palm1QdV8ZI + palm1QdV8ZI + UC7vv3cBq14FRXajteZt6FEg + [EGU] Erstes Offizielles Intro + + + egucom2014 + https://www.youtube.com/channel/UC7vv3cBq14FRXajteZt6FEg + + 2017-09-30T18:44:07+00:00 + 2019-01-18T20:11:48+00:00 + + [EGU] Erstes Offizielles Intro + + + Das erste Intro von Eternal GamerZ United! + + + + + + + '; + + $result = $this->_xml->parseXml($raw,true); + + $this->assertEquals('egucom2014', $result['author']['name']); + } - +/* public function testE107ExportValue() { @@ -90,12 +137,16 @@ { } - +*/ public function testGetRemoteFile() { + $feed = 'https://www.youtube.com/feeds/videos.xml?channel_id=UC7vv3cBq14FRXajteZt6FEg'; + $contents = $this->_xml->getRemoteFile($feed,true); + + $this->assertContains('',$contents); } - +/* public function testSetOptForceArray() {