Skip to content
Snippets Groups Projects
Commit 6b41dd14 authored by Demian Katz's avatar Demian Katz
Browse files

Strict standards; expanded test.

parent 3321c9a8
No related merge requests found
......@@ -115,7 +115,8 @@ class Writer
}
$currentSection = $matches[1];
} else if (strstr($content, '=')) {
$key = reset(explode('=', $content, 2));
$contentParts = explode('=', $content, 2);
$key = reset($contentParts);
if ($currentSection == $section && trim($key) == $setting) {
$line = $setting . ' = "' . $value . '"';
if (!empty($comment)) {
......
......@@ -138,4 +138,33 @@ class WriterTest extends \VuFindTest\Unit\TestCase
$ini = parse_ini_string($test->getContent(), true);
$this->assertEquals('val1b', $ini['test2']['key1']);
}
/**
* Test that comments are maintained.
*
* @return void
*/
public function testCommentMaintenance()
{
$cfg = "[test]\nkey1=val1 ; comment\n";
$test = new Writer('fake.ini', $cfg);
$test->set('test', 'key1', 'val2');
$this->assertEquals(
"[test]\nkey1 = \"val2\" ; comment", trim($test->getContent())
);
}
/**
* Test inserting an empty setting.
*
* @return void
*/
public function testInsertEmpty()
{
$cfg = "[a]\none=1\n[b]\n";
$test = new Writer('fake.ini', $cfg);
$test->set('a', 'two', '');
$ini = parse_ini_string($test->getContent(), true);
$this->assertEquals('', $ini['a']['two']);
}
}
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment