| 
									
										
										
										
											2021-04-10 21:57:00 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-10 09:26:18 +01:00
										 |  |  | declare(strict_types = 1); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-10 21:57:00 +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\Form; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | use App\Util\Form\ArrayTransformer; | 
					
						
							| 
									
										
										
										
											2021-05-05 13:37:10 +00:00
										 |  |  | use Jchook\AssertThrows\AssertThrows; | 
					
						
							| 
									
										
										
										
											2021-04-10 21:57:00 +00:00
										 |  |  | use Symfony\Bundle\FrameworkBundle\Test\WebTestCase; | 
					
						
							| 
									
										
										
										
											2021-05-05 13:37:10 +00:00
										 |  |  | use Symfony\Component\Form\Exception\TransformationFailedException; | 
					
						
							| 
									
										
										
										
											2021-04-10 21:57:00 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | class ArrayTransformerTest extends WebTestCase | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-05-05 13:37:10 +00:00
										 |  |  |     use AssertThrows; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-10 21:57:00 +00:00
										 |  |  |     public function testTransform() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         static::assertSame('', (new ArrayTransformer)->transform([])); | 
					
						
							|  |  |  |         static::assertSame('foo bar quux', (new ArrayTransformer)->transform(['foo', 'bar', 'quux'])); | 
					
						
							| 
									
										
										
										
											2021-05-05 13:37:10 +00:00
										 |  |  |         static::assertThrows(TransformationFailedException::class, fn () => (new ArrayTransformer)->transform('')); | 
					
						
							| 
									
										
										
										
											2021-04-10 21:57:00 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public function testReverseTransform() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         static::assertSame([], (new ArrayTransformer)->reverseTransform('')); | 
					
						
							|  |  |  |         static::assertSame(['foo', 'bar', 'quux'], (new ArrayTransformer)->reverseTransform('foo bar quux')); | 
					
						
							| 
									
										
										
										
											2021-05-05 13:37:10 +00:00
										 |  |  |         static::assertThrows(TransformationFailedException::class, fn () => (new ArrayTransformer)->reverseTransform(1)); | 
					
						
							| 
									
										
										
										
											2021-04-10 21:57:00 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | } |