mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 19:07:33 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Invoice Ninja (https://invoiceninja.com).
 | 
						|
 *
 | 
						|
 * @link https://github.com/invoiceninja/invoiceninja source repository
 | 
						|
 *
 | 
						|
 * @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @license https://www.elastic.co/licensing/elastic-license
 | 
						|
 */
 | 
						|
 | 
						|
namespace Tests\Unit;
 | 
						|
 | 
						|
use App\DataProviders\Domains;
 | 
						|
use Tests\TestCase;
 | 
						|
 | 
						|
/**
 | 
						|
 * @test
 | 
						|
 */
 | 
						|
class DomainCheckTest extends TestCase
 | 
						|
{
 | 
						|
 | 
						|
    protected function setUp() :void
 | 
						|
    {
 | 
						|
        parent::setUp();
 | 
						|
    }
 | 
						|
 | 
						|
    public function testDomainCheck()
 | 
						|
    {
 | 
						|
 | 
						|
        $this->assertTrue(in_array('yopmail.com', \App\DataProviders\Domains::getDomains()));
 | 
						|
        $this->assertFalse(in_array('invoiceninja.com', \App\DataProviders\Domains::getDomains()));
 | 
						|
 | 
						|
    }
 | 
						|
 | 
						|
    public function testSubdomainValidation()
 | 
						|
    {
 | 
						|
        $this->assertFalse($this->checker('invoiceninja'));
 | 
						|
        $this->assertFalse($this->checker('hello'));
 | 
						|
        $this->assertTrue($this->checker('nasty.pasty'));
 | 
						|
    }
 | 
						|
 | 
						|
    public function checker($subdomain)
 | 
						|
    {
 | 
						|
        return (!preg_match('/^[A-Za-z0-9](?:[A-Za-z0-9\-]{0,61}[A-Za-z0-9])?$/', $subdomain));
 | 
						|
    }
 | 
						|
}
 |