d52a4dba6a
Change-Id: I6d720ef94d9f29c120f292b844721621e6630856 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167259 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
98 lines
2.8 KiB
C++
98 lines
2.8 KiB
C++
/* -*- 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 "dbtest_base.cxx"
|
|
|
|
#include <osl/process.h>
|
|
#include <cppunit/plugin/TestPlugIn.h>
|
|
#include <com/sun/star/sdbc/XRow.hpp>
|
|
#include <cppunit/extensions/HelperMacros.h>
|
|
#include <officecfg/Office/Common.hxx>
|
|
|
|
class Tdf126268Test : public DBTestBase
|
|
{
|
|
public:
|
|
void testNumbers();
|
|
|
|
virtual void setUp() override;
|
|
|
|
CPPUNIT_TEST_SUITE(Tdf126268Test);
|
|
|
|
CPPUNIT_TEST(testNumbers);
|
|
|
|
CPPUNIT_TEST_SUITE_END();
|
|
};
|
|
|
|
void Tdf126268Test::setUp()
|
|
{
|
|
DBTestBase::setUp();
|
|
osl_setEnvironment(u"DBACCESS_HSQL_MIGRATION"_ustr.pData, u"1"_ustr.pData);
|
|
}
|
|
|
|
namespace
|
|
{
|
|
struct expect_t
|
|
{
|
|
sal_Int16 id;
|
|
OUString number;
|
|
};
|
|
}
|
|
|
|
const expect_t expect[] = {
|
|
{ 1, u"0.00"_ustr }, { 2, u"25.00"_ustr }, { 3, u"26.00"_ustr },
|
|
{ 4, u"30.4"_ustr }, { 5, u"45.8"_ustr }, { 6, u"-25.00"_ustr },
|
|
{ 7, u"-26.00"_ustr }, { 8, u"-30.4"_ustr }, { 9, u"-45.8"_ustr },
|
|
};
|
|
|
|
void Tdf126268Test::testNumbers()
|
|
{
|
|
bool oldValue = officecfg::Office::Common::Misc::ExperimentalMode::get();
|
|
{
|
|
std::shared_ptr<comphelper::ConfigurationChanges> xChanges(
|
|
comphelper::ConfigurationChanges::create());
|
|
officecfg::Office::Common::Misc::ExperimentalMode::set(true, xChanges);
|
|
xChanges->commit();
|
|
}
|
|
|
|
// the migration requires the file to be writable
|
|
createTempCopy(u"tdf126268.odb");
|
|
uno::Reference<XOfficeDatabaseDocument> const xDocument
|
|
= getDocumentForUrl(maTempFile.GetURL());
|
|
|
|
uno::Reference<XConnection> xConnection = getConnectionForDocument(xDocument);
|
|
|
|
// select basically everything from the .odb
|
|
uno::Reference<XStatement> statement = xConnection->createStatement();
|
|
|
|
uno::Reference<XResultSet> xRes
|
|
= statement->executeQuery(u"SELECT ID, Column1, Column2 FROM tableTest ORDER BY ID"_ustr);
|
|
uno::Reference<XRow> xRow(xRes, UNO_QUERY_THROW);
|
|
|
|
// check result
|
|
for (auto& e : expect)
|
|
{
|
|
CPPUNIT_ASSERT(xRes->next());
|
|
CPPUNIT_ASSERT_EQUAL(e.id, xRow->getShort(1));
|
|
CPPUNIT_ASSERT_EQUAL(e.number, xRow->getString(2)); //decimal
|
|
CPPUNIT_ASSERT_EQUAL(e.number, xRow->getString(3)); //numeric
|
|
}
|
|
CPPUNIT_ASSERT(!xRes->next());
|
|
|
|
if (!oldValue)
|
|
{
|
|
std::shared_ptr<comphelper::ConfigurationChanges> xChanges(
|
|
comphelper::ConfigurationChanges::create());
|
|
officecfg::Office::Common::Misc::ExperimentalMode::set(false, xChanges);
|
|
xChanges->commit();
|
|
}
|
|
}
|
|
|
|
CPPUNIT_TEST_SUITE_REGISTRATION(Tdf126268Test);
|
|
|
|
CPPUNIT_PLUGIN_IMPLEMENT();
|