| 
									
										
										
										
											2021-04-05 13:44:25 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-10 09:26:18 +01:00
										 |  |  | declare(strict_types = 1); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-05 13:44:25 +00:00
										 |  |  | // {{{ License
 | 
					
						
							|  |  |  | // This file is part of GNU social - https://www.gnu.org/software/social
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // GNU social is free software: you can redistribute it and/or modify
 | 
					
						
							|  |  |  | // it under the terms of the GNU Affero General Public License as published by
 | 
					
						
							|  |  |  | // the Free Software Foundation, either version 3 of the License, or
 | 
					
						
							|  |  |  | // (at your option) any later version.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // GNU social is distributed in the hope that it will be useful,
 | 
					
						
							|  |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					
						
							|  |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
					
						
							|  |  |  | // GNU Affero General Public License for more details.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // You should have received a copy of the GNU Affero General Public License
 | 
					
						
							|  |  |  | // along with GNU social.  If not, see <http://www.gnu.org/licenses/>.
 | 
					
						
							|  |  |  | // }}}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace App\Tests\Util; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-02 20:47:15 +00:00
										 |  |  | use App\Util\Exception\ServerException; | 
					
						
							|  |  |  | use Jchook\AssertThrows\AssertThrows; | 
					
						
							| 
									
										
										
										
											2021-04-05 13:44:25 +00:00
										 |  |  | use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class FooBitmap extends \App\Util\Bitmap | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     public const FOO  = 1; | 
					
						
							|  |  |  |     public const BAR  = 2; | 
					
						
							|  |  |  |     public const QUUX = 4; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class BarBitmap extends \App\Util\Bitmap | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     public const HYDROGEN = 1; | 
					
						
							|  |  |  |     public const HELIUM   = 2; | 
					
						
							|  |  |  |     public const PREFIX   = 'BAR_'; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-02 20:47:15 +00:00
										 |  |  | class QuuxBitmap extends \App\Util\Bitmap | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     public const HELIUM = 2; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-05 13:44:25 +00:00
										 |  |  | class BitmapTest extends KernelTestCase | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-05-02 20:47:15 +00:00
										 |  |  |     use AssertThrows; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-05 13:44:25 +00:00
										 |  |  |     public function testObj() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $a = FooBitmap::create(FooBitmap::FOO | FooBitmap::BAR); | 
					
						
							|  |  |  |         static::assertTrue($a->foo); | 
					
						
							|  |  |  |         static::assertTrue($a->bar); | 
					
						
							|  |  |  |         static::assertFalse($a->quux); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public function testArray() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $b = FooBitmap::toArray(FooBitmap::FOO | FooBitmap::QUUX); | 
					
						
							|  |  |  |         static::assertSame(['FOO', 'QUUX'], $b); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public function testPrefix() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $b = BarBitmap::toArray(BarBitmap::HYDROGEN | BarBitmap::HELIUM); | 
					
						
							|  |  |  |         static::assertSame(['BAR_HYDROGEN', 'BAR_HELIUM'], $b); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-05-02 20:47:15 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     public function testThrows() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         static::assertThrows(ServerException::class, fn () => QuuxBitmap::create(1)); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-04-05 13:44:25 +00:00
										 |  |  | } |