/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#include <test/bootstrapfixture.hxx>
#include <osl/file.hxx>
#include <rtl/ustring.hxx>
#include <tools/config.hxx>
class ToolsConfigTest :
public test::BootstrapFixture
{
public :
ToolsConfigTest()
: BootstrapFixture(
true ,
false )
{
}
virtual void setUp() override
{
maOriginalConfigFile = m_directories.getURLFromSrc(u
"/tools/qa/data/" );
maOriginalConfigFile +=
"testconfig.ini" ;
auto const e = osl::FileBase::getTempDirURL(maConfigFile);
CPPUNIT_ASSERT_EQUAL_MESSAGE(
"cannot create temp folder" , osl::File::RC::E_None, e
);
maConfigFile += "/config.ini" ;
osl::File::copy(maOriginalConfigFile, maConfigFile);
}
virtual void tearDown() override { osl::File::remove(maConfigFile); }
void testHasGroup()
{
Config aConfig(maConfigFile);
CPPUNIT_ASSERT(aConfig.HasGroup("TestGroup" ));
CPPUNIT_ASSERT(aConfig.HasGroup("TestGroup2" ));
}
void testGetGroup()
{
Config aConfig(maConfigFile);
CPPUNIT_ASSERT_EQUAL("" _ostr, aConfig.GetGroup());
CPPUNIT_ASSERT_EQUAL("TestGroup" _ostr, aConfig.GetGroupName(0));
CPPUNIT_ASSERT_EQUAL("TestGroup2" _ostr, aConfig.GetGroupName(1));
CPPUNIT_ASSERT_EQUAL("" _ostr, aConfig.GetGroupName(2));
}
void testSetGroup()
{
Config aConfig(maConfigFile);
aConfig.SetGroup("TestGroup" _ostr);
CPPUNIT_ASSERT_EQUAL("TestGroup" _ostr, aConfig.GetGroup());
// so this is a quirk of Config - you can set the group name,
// but it might not exist so you really should first check if
// it exists via HasGroup()
aConfig.SetGroup("TestGroupA" _ostr);
CPPUNIT_ASSERT(!aConfig.HasGroup("TestGroupA" ));
CPPUNIT_ASSERT_EQUAL("TestGroupA" _ostr, aConfig.GetGroup());
}
void testDeleteGroup()
{
{
Config aConfig(maConfigFile);
aConfig.DeleteGroup("TestGroup" );
CPPUNIT_ASSERT(!aConfig.HasGroup("TestGroup" ));
CPPUNIT_ASSERT_EQUAL("TestGroup2" _ostr, aConfig.GetGroupName(0));
sal_uInt16 nActual = aConfig.GetGroupCount();
CPPUNIT_ASSERT_EQUAL(sal_uInt16(1), nActual);
}
osl::File::copy(maOriginalConfigFile, maConfigFile);
{
Config aConfig(maConfigFile);
CPPUNIT_ASSERT(!aConfig.HasGroup("NonExistentTestGroup" ));
aConfig.DeleteGroup("NonExistentTestGroup" );
CPPUNIT_ASSERT_EQUAL("TestGroup" _ostr, aConfig.GetGroupName(0));
sal_uInt16 nActual = aConfig.GetGroupCount();
CPPUNIT_ASSERT_EQUAL(sal_uInt16(2), nActual);
}
osl::File::copy(maOriginalConfigFile, maConfigFile);
}
void testGetGroupCount()
{
Config aConfig(maConfigFile);
sal_uInt16 nActual = aConfig.GetGroupCount();
CPPUNIT_ASSERT_EQUAL(sal_uInt16(2), nActual);
}
void testReadKey()
{
Config aConfig(maConfigFile);
aConfig.SetGroup("TestGroup" _ostr);
CPPUNIT_ASSERT_EQUAL("testvalue" _ostr, aConfig.ReadKey("testkey" _ostr));
CPPUNIT_ASSERT_EQUAL(OString(), aConfig.ReadKey("nonexistenttestkey" _ostr));
CPPUNIT_ASSERT_EQUAL("notexists" _ostr,
aConfig.ReadKey("nonexistenttestkey" _ostr, "notexists" _ostr));
aConfig.SetGroup("TestGroup2" _ostr);
CPPUNIT_ASSERT_EQUAL("testvalue" _ostr, aConfig.ReadKey("testkey2" _ostr));
CPPUNIT_ASSERT_EQUAL(OString(), aConfig.ReadKey("nonexistenttestkey" _ostr));
CPPUNIT_ASSERT_EQUAL("notexists" _ostr,
aConfig.ReadKey("nonexistenttestkey" _ostr, "notexists" _ostr));
}
void testGetKeyName()
{
Config aConfig(maConfigFile);
aConfig.SetGroup("TestGroup" _ostr);
CPPUNIT_ASSERT_EQUAL("testkey" _ostr, aConfig.GetKeyName(0));
aConfig.SetGroup("TestGroup2" _ostr);
CPPUNIT_ASSERT_EQUAL("testkey2" _ostr, aConfig.GetKeyName(0));
}
void testWriteDeleteKey()
{
Config aConfig(maConfigFile);
aConfig.SetGroup("TestGroup" _ostr);
aConfig.WriteKey("testkey_new" _ostr, "testvalue" _ostr);
sal_uInt16 nExpected = 2;
sal_uInt16 nActual = aConfig.GetKeyCount();
CPPUNIT_ASSERT_EQUAL(nExpected, nActual);
CPPUNIT_ASSERT_EQUAL("testvalue" _ostr, aConfig.ReadKey("testkey_new" _ostr));
aConfig.DeleteKey("testkey_new" );
nExpected = 1;
nActual = aConfig.GetKeyCount();
CPPUNIT_ASSERT_EQUAL(nExpected, nActual);
CPPUNIT_ASSERT_EQUAL(OString(), aConfig.ReadKey("testkey_new" _ostr));
aConfig.SetGroup("TestGroup2" _ostr);
aConfig.WriteKey("testkey_new" _ostr, "testvalue" _ostr);
nActual = aConfig.GetKeyCount();
nExpected = 2;
CPPUNIT_ASSERT_EQUAL(nExpected, nActual);
CPPUNIT_ASSERT_EQUAL("testvalue" _ostr, aConfig.ReadKey("testkey_new" _ostr));
aConfig.DeleteKey("testkey_new" );
nActual = aConfig.GetKeyCount();
nExpected = 1;
CPPUNIT_ASSERT_EQUAL(nExpected, nActual);
CPPUNIT_ASSERT_EQUAL(OString(), aConfig.ReadKey("testkey_new" _ostr));
aConfig.SetGroup("TestGroup3" _ostr);
aConfig.WriteKey("testkey_new_group3" _ostr, "testvalue" _ostr);
nActual = aConfig.GetKeyCount();
nExpected = 1;
CPPUNIT_ASSERT_EQUAL(nExpected, nActual);
CPPUNIT_ASSERT_EQUAL("testvalue" _ostr, aConfig.ReadKey("testkey_new_group3" _ostr));
nExpected = 3;
CPPUNIT_ASSERT_EQUAL(nExpected, aConfig.GetGroupCount());
osl::File::copy(maOriginalConfigFile, maConfigFile);
}
CPPUNIT_TEST_SUITE(ToolsConfigTest);
CPPUNIT_TEST(testHasGroup);
CPPUNIT_TEST(testGetGroup);
CPPUNIT_TEST(testSetGroup);
CPPUNIT_TEST(testDeleteGroup);
CPPUNIT_TEST(testReadKey);
CPPUNIT_TEST(testGetGroupCount);
CPPUNIT_TEST(testGetKeyName);
CPPUNIT_TEST(testWriteDeleteKey);
CPPUNIT_TEST_SUITE_END();
private :
OUString maOriginalConfigFile;
OUString maConfigFile;
};
CPPUNIT_TEST_SUITE_REGISTRATION(ToolsConfigTest);
CPPUNIT_PLUGIN_IMPLEMENT();
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Messung V0.5 C=96 H=100 G=97
¤ Dauer der Verarbeitung: 0.3 Sekunden
¤
*© Formatika GbR, Deutschland