public function testParseSong() { $parser = new Pimusic\Parser\Zingmp3(); $url = '<http://mp3.zing.vn/bai-hat/Chuyen-Mua-Acoustic-Version-Trung-Quan-Idol/ZWZEI8C6.html>'; $result = $parser->match($url); $this->assertNotEquals(FALSE, $result, "Matching failed"); $this->assertEquals('http://mp3.zing.vn/bai-hat/Chuyen-Mua-Acoustic-Version-Trung-Quan-Idol/ZWZEI8C6.html', $result, "Removing prefix/suffix failed"); }
public function testFetchRadio() { $parser = new Pimusic\Parser\Zingmp3(); $url = "<http://radio.zing.vn/NhacBatHu>"; $result = $parser->match($url); $this->assertNotEquals(FALSE, $result, "Matching failed"); // $this->assertEquals("http://radio.zing.vn/NhacBatHu",$result,"Removing prefix failed"); $items = $parser->fetchRadio($result); $this->assertEquals(79, count($items), "Test pass!!!"); }