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 4DEB5999B for ; Wed, 25 Apr 2012 22:22:40 +0000 (UTC) Received: (qmail 81762 invoked by uid 500); 25 Apr 2012 22:22:39 -0000 Delivered-To: apmail-lucene-dev-archive@lucene.apache.org Received: (qmail 81691 invoked by uid 500); 25 Apr 2012 22:22: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 81681 invoked by uid 99); 25 Apr 2012 22:22:39 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 25 Apr 2012 22:22: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 22:22: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 BE32E40ED9C for ; Wed, 25 Apr 2012 22:22:17 +0000 (UTC) Date: Wed, 25 Apr 2012 22:22:17 +0000 (UTC) From: "Uwe Schindler (JIRA)" To: dev@lucene.apache.org Message-ID: <854638769.2870.1335392537813.JavaMail.tomcat@hel.zones.apache.org> In-Reply-To: <983062185.2713.1335390500650.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Commented] (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 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/LUCENE-4021?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13262197#comment-13262197 ] Uwe Schindler commented on LUCENE-4021: --------------------------------------- Heavy reflection only :-( > 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 > > 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