diff options
author | joaodasilva@chromium.org <joaodasilva@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-08 14:17:08 +0000 |
---|---|---|
committer | joaodasilva@chromium.org <joaodasilva@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-08 14:17:08 +0000 |
commit | 6a8f4faae1ec16bec481749673766dd83b14e8e8 (patch) | |
tree | 4982ee744a30405c6737dada3e670fcac8d1fb83 /chrome/common | |
parent | de45b80127832f4256857511d7c2de1d93c99d59 (diff) | |
download | chromium_src-6a8f4faae1ec16bec481749673766dd83b14e8e8.zip chromium_src-6a8f4faae1ec16bec481749673766dd83b14e8e8.tar.gz chromium_src-6a8f4faae1ec16bec481749673766dd83b14e8e8.tar.bz2 |
Added a test verifying that TimeFormat:: functions convert
numbers to "NaN" on certain locales. This is a bug on icu.
Rolled third_party/icu version to @88321.
BUG=60476
TEST=browser_tests:TimeFormat.DecimalPointNotDot
Review URL: http://codereview.chromium.org/7003028
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@88329 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/time_format_browsertest.cc | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/chrome/common/time_format_browsertest.cc b/chrome/common/time_format_browsertest.cc new file mode 100644 index 0000000..3aa8582 --- /dev/null +++ b/chrome/common/time_format_browsertest.cc @@ -0,0 +1,42 @@ +// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +// This whole test runs as a separate browser_test because it depends on a +// static initialization inside third_party/icu (gDecimal in digitlst.cpp). +// +// That initialization depends on the current locale, and on certain locales +// will lead to wrong behavior. To make sure that the locale is set before +// icu is used, and that the "wrong" static value doesn't affect other tests, +// this test is executed on its own process. + +#include "base/string16.h" +#include "base/test/test_util.h" +#include "base/utf_string_conversions.h" +#include "chrome/common/time_format.h" +#include "chrome/test/in_process_browser_test.h" + +#if defined(OS_POSIX) +using base::TimeDelta; + +class TimeFormatBrowserTest: public InProcessBrowserTest { + public: + TimeFormatBrowserTest(): scoped_locale_("fr_FR.utf-8") {} + + private: + base::ScopedSetLocale scoped_locale_; +}; + +IN_PROC_BROWSER_TEST_F(TimeFormatBrowserTest, DecimalPointNotDot) { + // Some locales use a comma ',' instead of a dot '.' as the separator for + // decimal digits. The icu library wasn't handling this, leading to "1" + // being internally converted to "+1,0e00" and ultimately leading to "NaN". + // This showed up on the browser on estimated download time, for example. + // http://crbug.com/60476 + + string16 one_min = TimeFormat::TimeRemainingShort(TimeDelta::FromMinutes(1)); + EXPECT_EQ(ASCIIToUTF16("1 min"), one_min) << "fr_FR.utf-8 locale generates " + << one_min; +} + +#endif // defined(OS_POSIX) |