Add inifile support

git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@2409 bf3deb0d-5f1a-0410-827f-c0cc1f45334c
This commit is contained in:
2015-12-08 15:19:19 +00:00
parent cd50236528
commit 083e803c09
2 changed files with 370 additions and 0 deletions

205
Tests/inifileTest.php Normal file
View File

@@ -0,0 +1,205 @@
<?php
/** DomFramework - Tests
@package domframework
@author Dominique Fournier <dominique@fournier38.fr> */
/** Test the outputjson.php file */
class test_inifile extends PHPUnit_Framework_TestCase
{
public function testsetString001 ()
{
$this->setExpectedException ("Exception");
$inifile = new inifile ();
$res = $inifile->setString (1, TRUE);
}
public function testsetString002 ()
{
$inifile = new inifile ();
$res = $inifile->setString (array (), TRUE);
$this->assertEquals("", $res);
}
//// TEST OF THE SECTION PART ////
public function testsetString103 ()
{
$this->setExpectedException ("Exception");
$inifile = new inifile ();
$res = $inifile->setString (array ("section1"), TRUE);
}
public function testsetString104 ()
{
$inifile = new inifile ();
$res = $inifile->setString (array ("section1"=>array ()), TRUE);
$this->assertEquals("[section1]\n\n", $res);
}
public function testsetString105 ()
{
$inifile = new inifile ();
$res = $inifile->setString (array ("section1"=>array (0)), TRUE);
$this->assertEquals("[section1]\n0 = \"0\"\n\n", $res);
}
public function testsetString106 ()
{
$inifile = new inifile ();
$res = $inifile->setString (array ("section1"=>array (0=>1)), TRUE);
$this->assertEquals("[section1]\n0 = \"1\"\n\n", $res);
}
public function testsetString107 ()
{
$inifile = new inifile ();
$res = $inifile->setString (array ("section1"=>array (0=>null)), TRUE);
$this->assertEquals("[section1]\n0 = \"null\"\n\n", $res);
}
public function testsetString108 ()
{
$inifile = new inifile ();
$res = $inifile->setString (array ("section1"=>array (0=>null, 1=>1)),
TRUE);
$this->assertEquals("[section1]\n0 = \"null\"\n1 = \"1\"\n\n", $res);
}
public function testsetString109 ()
{
$inifile = new inifile ();
$res = $inifile->setString (array ("section1"=>array (0=>null,
1=>1, 2=>"str")),
TRUE);
$this->assertEquals("[section1]\n0 = \"null\"\n1 = \"1\"\n2 = \"str\"\n\n",
$res);
}
public function testsetString110 ()
{
$inifile = new inifile ();
$res = $inifile->setString (array ("section1"=>array (0=>null,
1=>1, 2=>"str",
3=>array (1,2,3))),
TRUE);
$this->assertEquals("[section1]\n0 = \"null\"\n1 = \"1\"\n2 = \"str\"\n".
"3[0] = \"1\"\n3[1] = \"2\"\n3[2] = \"3\"\n\n",
$res);
}
public function testsetString111 ()
{
$inifile = new inifile ();
$res = $inifile->setString (array ("section1"=>array (0=>null,
1=>1, 2=>"str",
3=>array ())),
TRUE);
$this->assertEquals("[section1]\n0 = \"null\"\n1 = \"1\"\n2 = \"str\"\n\n",
$res);
}
public function testsetString112 ()
{
$inifile = new inifile ();
$res = $inifile->setString (array ("section1"=>array (0=>null,
1=>1, 2=>"str",
"chain"=>array ("key"=>1,2))),
TRUE);
$this->assertEquals("[section1]\n0 = \"null\"\n1 = \"1\"\n2 = \"str\"\n".
"chain[key] = \"1\"\nchain[0] = \"2\"\n\n",
$res);
}
//// TEST OF THE NOT SECTION PART ////
public function testsetString203 ()
{
$inifile = new inifile ();
$res = $inifile->setString (array ("section1"), FALSE);
$this->assertEquals("0 = \"section1\"\n\n", $res);
}
public function testsetString204 ()
{
$inifile = new inifile ();
$res = $inifile->setString (array ("section1"=>array ()), FALSE);
$this->assertEquals("\n", $res);
}
public function testsetString205 ()
{
$inifile = new inifile ();
$res = $inifile->setString (array ("section1"=>array (0)), FALSE);
$this->assertEquals("section1[0] = \"0\"\n\n", $res);
}
public function testsetString206 ()
{
$inifile = new inifile ();
$res = $inifile->setString (array ("section1"=>array (0=>1)), FALSE);
$this->assertEquals("section1[0] = \"1\"\n\n", $res);
}
public function testsetString207 ()
{
$inifile = new inifile ();
$res = $inifile->setString (array ("section1"=>array (0=>null)), FALSE);
$this->assertEquals("section1[0] = \"null\"\n\n", $res);
}
public function testsetString208 ()
{
$inifile = new inifile ();
$res = $inifile->setString (array ("section1"=>array (0=>null, 1=>1)),
FALSE);
$this->assertEquals("section1[0] = \"null\"\nsection1[1] = \"1\"\n\n",
$res);
}
public function testsetString209 ()
{
$inifile = new inifile ();
$res = $inifile->setString (array ("section1"=>array (0=>null,
1=>1, 2=>"str")),
FALSE);
$this->assertEquals("section1[0] = \"null\"\nsection1[1] = \"1\"\n".
"section1[2] = \"str\"\n\n",
$res);
}
public function testsetString210 ()
{
$this->setExpectedException ("Exception");
$inifile = new inifile ();
$res = $inifile->setString (array ("section1"=>array (0=>null,
1=>1, 2=>"str",
3=>array (1,2,3))),
FALSE);
}
public function testsetString211 ()
{
$this->setExpectedException ("Exception");
$inifile = new inifile ();
$res = $inifile->setString (array ("section1"=>array (0=>null,
1=>1, 2=>"str",
3=>array ())),
FALSE);
}
//// LOOP TEST : CREATE AN INI STRING AND PARSE IT ////
public function testLoop406 ()
{
$inifile = new inifile ();
$loop = $inifile->setString (array ("section1"=>array (0=>1)), FALSE);
$res = $inifile->getString ($loop, FALSE);
$this->assertEquals(array ("section1"=>array (0=>1)), $res);
}
public function testLoop407 ()
{
$inifile = new inifile ();
$loop = $inifile->setString (array ("section1"=>array (0=>null)), FALSE);
$res = $inifile->getString ($loop, FALSE);
$this->assertEquals(array ("section1"=>array (0=>null)), $res);
}
}