Example #1
0
 public function testOverrideFilters()
 {
     $data = '<iframe src="http://www.kickstarter.com/projects/lefnire/habitrpg-mobile/widget/video.html" height="480" width="640" frameborder="0"></iframe>';
     $f = new Filter($data, 'http://blabla');
     $f->setIframeWhitelist(array('http://www.kickstarter.com'));
     $this->assertEquals($data, $f->execute());
     $data = '<iframe src="http://www.youtube.com/bla" height="480" width="640" frameborder="0"></iframe>';
     $f = new Filter($data, 'http://blabla');
     $f->setIframeWhitelist(array('http://www.kickstarter.com'));
     $this->assertEmpty($f->execute());
 }