Skip to content

Commit

Permalink
Merge branch 'bugfix/#219' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
HuguesDelorme committed Nov 2, 2023
2 parents 21501ee + c2c1147 commit d466625
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 25 deletions.
6 changes: 5 additions & 1 deletion src/base/property_value_conversion.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
#include "property_value_conversion.h"

#include "cpp_utils.h"
#include "filepath_conv.h"
#include "math_utils.h"
#include "property_builtins.h"
#include "property_enumeration.h"
Expand Down Expand Up @@ -205,8 +206,11 @@ bool PropertyValueConversion::fromVariant(Property* prop, const Variant& variant
return fnError("Variant not convertible to string");
}
else if (isType<PropertyFilePath>(prop)) {
// Note: explicit conversion from utf8 std::string to std::filesystem::path
// If character type of the source string is "char" then FilePath constructor assumes
// native narrow encoding(which might cause encoding issues)
if (variant.isConvertibleToConstRefString())
return ptr<PropertyFilePath>(prop)->setValue(variant.toConstRefString());
return ptr<PropertyFilePath>(prop)->setValue(filepathFrom(variant.toConstRefString()));
else
return fnError("Variant expected to hold string");
}
Expand Down
69 changes: 45 additions & 24 deletions tests/test_base.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,35 @@ Q_DECLARE_METATYPE(Mayo::PropertyValueConversion::Variant)

namespace Mayo {

static std::optional<std::locale> findFrLocale()
{
auto fnGetLocale = [](const char* name) -> std::optional<std::locale> {
try {
return std::locale(name);
} catch (...) {
qWarning().noquote() << QString("Locale '%1' not available").arg(name);
}

return {};
};

// Tests with "fr_FR" locale which is likely to be Windows-1252 or ISO8859-1 on Unix
std::vector<const char*> frLocaleNames = { "fr_FR.ISO8859-15", "fr_FR.ISO-8859-15" };
#ifndef MAYO_OS_WINDOWS
// No native utf8 support on Windows(or requires Windows 10 november 2019 update)
frLocaleNames.push_back("fr_FR.utf8");
#endif
frLocaleNames.push_back("fr_FR");

std::optional<std::locale> frLocale;
for (const char* localeName : frLocaleNames) {
if (!frLocale)
frLocale = fnGetLocale(localeName);
}

return frLocale;
}

// For the sake of QCOMPARE()
static bool operator==(const UnitSystem::TranslateResult& lhs, const UnitSystem::TranslateResult& rhs)
{
Expand Down Expand Up @@ -311,6 +340,9 @@ void TestBase::PropertyValueConversion_test()
enum class MayoTest_Color { Bleu, Blanc, Rouge };
prop.reset(new PropertyEnum<MayoTest_Color>(nullptr, {}));
}
else if (strPropertyName == PropertyFilePath::TypeName) {
prop.reset(new PropertyFilePath(nullptr, {}));
}

QVERIFY(prop);

Expand All @@ -337,6 +369,18 @@ void TestBase::PropertyValueConversion_test_data()
QTest::newRow("Enumeration(Color)") << PropertyEnumeration::TypeName << Variant("Blanc");
}

void TestBase::PropertyValueConversion_bugGitHub219_test()
{
const std::string strPath = "c:\\é_à_À_œ_ç";
PropertyValueConversion conv;
PropertyFilePath propFilePath(nullptr, {});
const bool ok = conv.fromVariant(&propFilePath, strPath);
QVERIFY(ok);
//qDebug() << "strPath:" << QByteArray::fromStdString(strPath);
//qDebug() << "propFilePath:" << QByteArray::fromStdString(propFilePath.value().u8string());
QCOMPARE(propFilePath.value().u8string(), strPath);
}

void TestBase::PropertyQuantityValueConversion_test()
{
QFETCH(QString, strPropertyName);
Expand Down Expand Up @@ -554,30 +598,7 @@ void TestBase::IO_bugGitHub166_test_data()

void TestBase::DoubleToString_test()
{
auto fnGetLocale = [](const char* name) -> std::optional<std::locale> {
try {
return std::locale(name);
} catch (...) {
qWarning().noquote() << QString("Locale '%1' not available").arg(name);
}

return {};
};

// Tests with "fr_FR" locale which is likely to be Windows-1252 or ISO8859-1 on Unix
std::vector<const char*> frLocaleNames = { "fr_FR.ISO8859-15", "fr_FR.ISO-8859-15" };
#ifndef MAYO_OS_WINDOWS
// No native utf8 support on Windows(or requires Windows 10 november 2019 update)
frLocaleNames.push_back("fr_FR.utf8");
#endif
frLocaleNames.push_back("fr_FR");

std::optional<std::locale> frLocale;
for (const char* localeName : frLocaleNames) {
if (!frLocale)
frLocale = fnGetLocale(localeName);
}

std::optional<std::locale> frLocale = findFrLocale();
if (frLocale) {
qInfo() << "frLocale:" << QString::fromStdString(frLocale->name());
// 1258.
Expand Down
1 change: 1 addition & 0 deletions tests/test_base.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ private slots:

void PropertyValueConversion_test();
void PropertyValueConversion_test_data();
void PropertyValueConversion_bugGitHub219_test();

void PropertyQuantityValueConversion_test();
void PropertyQuantityValueConversion_test_data();
Expand Down

0 comments on commit d466625

Please sign in to comment.