mirror of https://github.com/pixelfed/pixelfed
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			28 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
			
		
		
	
	
			28 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
<?php
 | 
						|
 | 
						|
namespace Tests\Unit;
 | 
						|
 | 
						|
use Purify;
 | 
						|
use Tests\TestCase;
 | 
						|
use Illuminate\Foundation\Testing\WithFaker;
 | 
						|
use Illuminate\Foundation\Testing\RefreshDatabase;
 | 
						|
 | 
						|
class PurifierTest extends TestCase
 | 
						|
{
 | 
						|
	/** @test */
 | 
						|
    public function puckTest()
 | 
						|
    {
 | 
						|
    	$actual = Purify::clean("<span class=\"fa-spin fa\">catgirl spinning around in the interblag</span>");
 | 
						|
    	$expected = '<span>catgirl spinning around in the interblag</span>';
 | 
						|
        $this->assertEquals($expected, $actual);
 | 
						|
 | 
						|
    	$actual = Purify::clean("<p class=\"fa-spin fa\">catgirl spinning around in the interblag</p>");
 | 
						|
    	$expected = '<p>catgirl spinning around in the interblag</p>';
 | 
						|
        $this->assertEquals($expected, $actual);
 | 
						|
 | 
						|
        $actual = Purify::clean('<a class="navbar-brand d-flex align-items-center" href="https://pixelfed.social" title="Logo"><img src="/img/pixelfed-icon-color.svg" height="30px" class="px-2"><span class="font-weight-bold mb-0 d-none d-sm-block" style="font-size:20px;">pixelfed</span></a>');
 | 
						|
        $expected = '<a href="https://pixelfed.social" title="Logo" rel="nofollow noreferrer noopener" target="_blank"><span>pixelfed</span></a>';
 | 
						|
        $this->assertEquals($expected, $actual);
 | 
						|
    }
 | 
						|
}
 |