[tests] Fix distance formatting tests using system locale #6470

Open
gpesquero wants to merge 1 commit from gpesquero/test_distance into master
Member

This PR fixes distance formatting tests on macOS, as this platform uses system locale for formatting.

This PR fixes distance formatting tests on macOS, as this platform uses system locale for formatting.
vng (Migrated from github.com) reviewed 2023-11-04 23:57:43 +00:00
biodranik (Migrated from github.com) reviewed 2024-02-28 22:30:14 +00:00
@ -82,4 +88,4 @@
}
{
ScopedSettings const guard(measurement_utils::Units::Imperial);
biodranik (Migrated from github.com) commented 2024-02-28 22:30:14 +00:00

Is there an option to set/override the locale from the test, so we can check different separators for different locales explicitly?

Is there an option to set/override the locale from the test, so we can check different separators for different locales explicitly?
gpesquero reviewed 2024-03-03 15:39:14 +00:00
@ -82,4 +88,4 @@
}
{
ScopedSettings const guard(measurement_utils::Units::Imperial);
Author
Member

Hi @biodranik: I'm afraid that with the current implementation, we may not be able to test the Distance::FormatAltitude() function for different locales.

The main reason is that this function calls the measurement_utils::ToStringPrecision() function, which uses a static variable to store the locale to use. This locale is therefore updated only in the first iteration, so if we change the locale during the tests, it won't have any effect.

We could change the behavior of the measurement_utils::ToStringPrecision() function by removing this static variable, but that would lead to a worse runtime performance.

Hi @biodranik: I'm afraid that with the current implementation, we may not be able to test the `Distance::FormatAltitude()` function for different locales. The main reason is that this function calls the `measurement_utils::ToStringPrecision()` function, which uses a static variable to store the locale to use. This locale is therefore updated only in the first iteration, so if we change the locale during the tests, it won't have any effect. We could change the behavior of the `measurement_utils::ToStringPrecision()` function by removing this static variable, but that would lead to a worse runtime performance.
gpesquero reviewed 2024-03-21 23:27:10 +00:00
@ -82,4 +88,4 @@
}
{
ScopedSettings const guard(measurement_utils::Units::Imperial);
Author
Member

@biodranik , @vng: PTAL

@biodranik , @vng: PTAL
biodranik (Migrated from github.com) reviewed 2024-03-22 00:12:33 +00:00
@ -0,0 +54,4 @@
{
std::string out;
if (valueString.find(".") != std::string::npos)
biodranik (Migrated from github.com) commented 2024-03-22 00:12:32 +00:00

This looks hacky. Why is the decimal point always replaced? Is the input always in the US locale?

Generally, can the code be simplified?

This looks hacky. Why is the decimal point always replaced? Is the input always in the US locale? Generally, can the code be simplified?
This repo is archived. You cannot comment on pull requests.
No reviewers
No labels
Accessibility
Accessibility
Address
Address
Android
Android
Android Auto
Android Auto
Android Automotive (AAOS)
Android Automotive (AAOS)
API
API
AppGallery
AppGallery
AppStore
AppStore
Battery and Performance
Battery and Performance
Blocker
Blocker
Bookmarks and Tracks
Bookmarks and Tracks
Borders
Borders
Bug
Bug
Build
Build
CarPlay
CarPlay
Classificator
Classificator
Community
Community
Core
Core
CrashReports
CrashReports
Cycling
Cycling
Desktop
Desktop
DevEx
DevEx
DevOps
DevOps
dev_sandbox
dev_sandbox
Directions
Directions
Documentation
Documentation
Downloader
Downloader
Drape
Drape
Driving
Driving
Duplicate
Duplicate
Editor
Editor
Elevation
Elevation
Enhancement
Enhancement
Epic
Epic
External Map Datasets
External Map Datasets
F-Droid
F-Droid
Fonts
Fonts
Frequently User Reported
Frequently User Reported
Fund
Fund
Generator
Generator
Good first issue
Good first issue
Google Play
Google Play
GPS
GPS
GSoC
GSoC
iCloud
iCloud
Icons
Icons
iOS
iOS
Legal
Legal
Linux Desktop
Linux Desktop
Linux packaging
Linux packaging
Linux Phone
Linux Phone
Mac OS
Mac OS
Map Data
Map Data
Metro
Metro
Navigation
Navigation
Need Feedback
Need Feedback
Night Mode
Night Mode
NLnet 2024-06-281
NLnet 2024-06-281
No Feature Parity
No Feature Parity
Opening Hours
Opening Hours
Outdoors
Outdoors
POI Info
POI Info
Privacy
Privacy
Public Transport
Public Transport
Raw Idea
Raw Idea
Refactoring
Refactoring
Regional
Regional
Regression
Regression
Releases
Releases
RoboTest
RoboTest
Route Planning
Route Planning
Routing
Routing
Ruler
Ruler
Search
Search
Security
Security
Styles
Styles
Tests
Tests
Track Recording
Track Recording
Translations
Translations
TTS
TTS
UI
UI
UX
UX
Walk Navigation
Walk Navigation
Watches
Watches
Web
Web
Wikipedia
Wikipedia
Windows
Windows
Won't fix
Won't fix
World Map
World Map
No milestone
No project
No assignees
2 participants
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: organicmaps/organicmaps-tmp#6470
No description provided.