121 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			121 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /*
 | |
|  * This file is part of sebastian/global-state.
 | |
|  *
 | |
|  * (c) Sebastian Bergmann <sebastian@phpunit.de>
 | |
|  *
 | |
|  * For the full copyright and license information, please view the LICENSE
 | |
|  * file that was distributed with this source code.
 | |
|  */
 | |
| 
 | |
| declare(strict_types=1);
 | |
| 
 | |
| namespace SebastianBergmann\GlobalState;
 | |
| 
 | |
| use PHPUnit\Framework\TestCase;
 | |
| use SebastianBergmann\GlobalState\TestFixture\BlacklistedChildClass;
 | |
| use SebastianBergmann\GlobalState\TestFixture\BlacklistedClass;
 | |
| use SebastianBergmann\GlobalState\TestFixture\BlacklistedImplementor;
 | |
| use SebastianBergmann\GlobalState\TestFixture\BlacklistedInterface;
 | |
| 
 | |
| /**
 | |
|  * @covers \SebastianBergmann\GlobalState\Blacklist
 | |
|  */
 | |
| class BlacklistTest extends TestCase
 | |
| {
 | |
|     /**
 | |
|      * @var \SebastianBergmann\GlobalState\Blacklist
 | |
|      */
 | |
|     private $blacklist;
 | |
| 
 | |
|     protected function setUp()
 | |
|     {
 | |
|         $this->blacklist = new Blacklist;
 | |
|     }
 | |
| 
 | |
|     public function testGlobalVariableThatIsNotBlacklistedIsNotTreatedAsBlacklisted()
 | |
|     {
 | |
|         $this->assertFalse($this->blacklist->isGlobalVariableBlacklisted('variable'));
 | |
|     }
 | |
| 
 | |
|     public function testGlobalVariableCanBeBlacklisted()
 | |
|     {
 | |
|         $this->blacklist->addGlobalVariable('variable');
 | |
| 
 | |
|         $this->assertTrue($this->blacklist->isGlobalVariableBlacklisted('variable'));
 | |
|     }
 | |
| 
 | |
|     public function testStaticAttributeThatIsNotBlacklistedIsNotTreatedAsBlacklisted()
 | |
|     {
 | |
|         $this->assertFalse(
 | |
|             $this->blacklist->isStaticAttributeBlacklisted(
 | |
|                 BlacklistedClass::class,
 | |
|                 'attribute'
 | |
|             )
 | |
|         );
 | |
|     }
 | |
| 
 | |
|     public function testClassCanBeBlacklisted()
 | |
|     {
 | |
|         $this->blacklist->addClass(BlacklistedClass::class);
 | |
| 
 | |
|         $this->assertTrue(
 | |
|             $this->blacklist->isStaticAttributeBlacklisted(
 | |
|                 BlacklistedClass::class,
 | |
|                 'attribute'
 | |
|             )
 | |
|         );
 | |
|     }
 | |
| 
 | |
|     public function testSubclassesCanBeBlacklisted()
 | |
|     {
 | |
|         $this->blacklist->addSubclassesOf(BlacklistedClass::class);
 | |
| 
 | |
|         $this->assertTrue(
 | |
|             $this->blacklist->isStaticAttributeBlacklisted(
 | |
|                 BlacklistedChildClass::class,
 | |
|                 'attribute'
 | |
|             )
 | |
|         );
 | |
|     }
 | |
| 
 | |
|     public function testImplementorsCanBeBlacklisted()
 | |
|     {
 | |
|         $this->blacklist->addImplementorsOf(BlacklistedInterface::class);
 | |
| 
 | |
|         $this->assertTrue(
 | |
|             $this->blacklist->isStaticAttributeBlacklisted(
 | |
|                 BlacklistedImplementor::class,
 | |
|                 'attribute'
 | |
|             )
 | |
|         );
 | |
|     }
 | |
| 
 | |
|     public function testClassNamePrefixesCanBeBlacklisted()
 | |
|     {
 | |
|         $this->blacklist->addClassNamePrefix('SebastianBergmann\GlobalState');
 | |
| 
 | |
|         $this->assertTrue(
 | |
|             $this->blacklist->isStaticAttributeBlacklisted(
 | |
|                 BlacklistedClass::class,
 | |
|                 'attribute'
 | |
|             )
 | |
|         );
 | |
|     }
 | |
| 
 | |
|     public function testStaticAttributeCanBeBlacklisted()
 | |
|     {
 | |
|         $this->blacklist->addStaticAttribute(
 | |
|             BlacklistedClass::class,
 | |
|             'attribute'
 | |
|         );
 | |
| 
 | |
|         $this->assertTrue(
 | |
|             $this->blacklist->isStaticAttributeBlacklisted(
 | |
|                 BlacklistedClass::class,
 | |
|                 'attribute'
 | |
|             )
 | |
|         );
 | |
|     }
 | |
| }
 | 
