mirror of
				https://github.com/pmmp/PocketMine-MP.git
				synced 2025-11-03 22:49:36 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			73 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			73 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
/*
 | 
						|
 *
 | 
						|
 *  ____            _        _   __  __ _                  __  __ ____
 | 
						|
 * |  _ \ ___   ___| | _____| |_|  \/  (_)_ __   ___      |  \/  |  _ \
 | 
						|
 * | |_) / _ \ / __| |/ / _ \ __| |\/| | | '_ \ / _ \_____| |\/| | |_) |
 | 
						|
 * |  __/ (_) | (__|   <  __/ |_| |  | | | | | |  __/_____| |  | |  __/
 | 
						|
 * |_|   \___/ \___|_|\_\___|\__|_|  |_|_|_| |_|\___|     |_|  |_|_|
 | 
						|
 *
 | 
						|
 * This program is free software: you can redistribute it and/or modify
 | 
						|
 * it under the terms of the GNU Lesser General Public License as published by
 | 
						|
 * the Free Software Foundation, either version 3 of the License, or
 | 
						|
 * (at your option) any later version.
 | 
						|
 *
 | 
						|
 * @author PocketMine Team
 | 
						|
 * @link http://www.pocketmine.net/
 | 
						|
 *
 | 
						|
 *
 | 
						|
 */
 | 
						|
 | 
						|
declare(strict_types=1);
 | 
						|
 | 
						|
namespace pocketmine\utils;
 | 
						|
 | 
						|
use PHPUnit\Framework\TestCase;
 | 
						|
use function yaml_parse;
 | 
						|
 | 
						|
class ConfigTest extends TestCase{
 | 
						|
 | 
						|
	/**
 | 
						|
	 * @return \Generator|mixed[][]
 | 
						|
	 * @phpstan-return \Generator<int, array{string, mixed[]}, void, void>
 | 
						|
	 */
 | 
						|
	public static function fixYamlIndexesProvider() : \Generator{
 | 
						|
		yield ["x: 1\ny: 2\nz: 3\n", [
 | 
						|
			"x" => 1,
 | 
						|
			"y" => 2,
 | 
						|
			"z" => 3
 | 
						|
		]];
 | 
						|
		yield [" x : 1\n y : 2\n z : 3\n", [
 | 
						|
			"x" => 1,
 | 
						|
			"y" => 2,
 | 
						|
			"z" => 3
 | 
						|
		]];
 | 
						|
		yield ["parent:\n x: 1\n y: 2\n z: 3\n", [
 | 
						|
			"parent" => [
 | 
						|
				"x" => 1,
 | 
						|
				"y" => 2,
 | 
						|
				"z" => 3
 | 
						|
			]
 | 
						|
		]];
 | 
						|
		yield ["yes: notransform", [
 | 
						|
			"yes" => "notransform"
 | 
						|
		]];
 | 
						|
		yield ["on: 1\nyes: true", [ //this would previously have resulted in a key collision
 | 
						|
			"on" => 1,
 | 
						|
			"yes" => true
 | 
						|
		]];
 | 
						|
	}
 | 
						|
 | 
						|
	/**
 | 
						|
	 * @dataProvider fixYamlIndexesProvider
 | 
						|
	 *
 | 
						|
	 * @param mixed[] $expected
 | 
						|
	 */
 | 
						|
	public function testFixYamlIndexes(string $test, array $expected) : void{
 | 
						|
		$fixed = Config::fixYAMLIndexes($test);
 | 
						|
		$decoded = yaml_parse($fixed);
 | 
						|
		self::assertEquals($expected, $decoded);
 | 
						|
	}
 | 
						|
}
 |