Return-Path: X-Original-To: apmail-lucene-dev-archive@www.apache.org Delivered-To: apmail-lucene-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id CD4FE9C74 for ; Wed, 25 Apr 2012 23:40:40 +0000 (UTC) Received: (qmail 86855 invoked by uid 500); 25 Apr 2012 23:40:39 -0000 Delivered-To: apmail-lucene-dev-archive@lucene.apache.org Received: (qmail 86806 invoked by uid 500); 25 Apr 2012 23:40:39 -0000 Mailing-List: contact dev-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@lucene.apache.org Delivered-To: mailing list dev@lucene.apache.org Received: (qmail 86796 invoked by uid 99); 25 Apr 2012 23:40:39 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 25 Apr 2012 23:40:39 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 25 Apr 2012 23:40:37 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id 1A32540F78E for ; Wed, 25 Apr 2012 23:40:16 +0000 (UTC) Date: Wed, 25 Apr 2012 23:40:16 +0000 (UTC) From: "Robert Muir (JIRA)" To: dev@lucene.apache.org Message-ID: <58853605.3113.1335397216157.JavaMail.tomcat@hel.zones.apache.org> In-Reply-To: <983062185.2713.1335390500650.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Resolved] (LUCENE-4021) Locale representations don't round trip from toString->new Locale. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/LUCENE-4021?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Robert Muir resolved LUCENE-4021. --------------------------------- Resolution: Fixed > Locale representations don't round trip from toString->new Locale. > ------------------------------------------------------------------ > > Key: LUCENE-4021 > URL: https://issues.apache.org/jira/browse/LUCENE-4021 > Project: Lucene - Java > Issue Type: Bug > Reporter: Dawid Weiss > Priority: Minor > Attachments: LUCENE-4021.patch > > > The script and extensions are not currently parsed. Seems like they were added in 1.7 only too so it'll probably require Java-version-specific workarounds. > {noformat} > public void testLocaleRoundTrip() { > for (Locale locale : Locale.getAvailableLocales()) { > String s = locale.toString(); > try { > Locale back = LuceneTestCase.localeForName(s); > assertEquals(locale, back); > } catch (Exception e) { > System.err.println("Failed roundtrip: " + s + " (" + e.toString() + ")"); > } catch (AssertionError e) { > System.err.println("Not equals: " + s + " (" + e.toString() + ")"); > } > } > } > {noformat} > Example locales that don't pass. > {noformat} > th_TH_TH_#u-nu-thai > ja_JP_JP_#u-ca-japanese > {noformat} > Interestingly, some that do pass the reverse trip are not .equal to their originals: > {noformat} > Not equals: sr_ME_#Latn (java.lang.AssertionError: expected: java.util.Locale but was: java.util.Locale) > Not equals: sr_BA_#Latn (java.lang.AssertionError: expected: java.util.Locale but was: java.util.Locale) > Not equals: sr__#Latn (java.lang.AssertionError: expected: java.util.Locale but was: java.util.Locale) > Not equals: sr_RS_#Latn (java.lang.AssertionError: expected: java.util.Locale but was: java.util.Locale) > {noformat} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org For additional commands, e-mail: dev-help@lucene.apache.org