Return-Path: X-Original-To: apmail-commons-issues-archive@minotaur.apache.org Delivered-To: apmail-commons-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 407C817D25 for ; Mon, 6 Apr 2015 17:29:48 +0000 (UTC) Received: (qmail 27511 invoked by uid 500); 6 Apr 2015 17:29:26 -0000 Delivered-To: apmail-commons-issues-archive@commons.apache.org Received: (qmail 27434 invoked by uid 500); 6 Apr 2015 17:29:26 -0000 Mailing-List: contact issues-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: issues@commons.apache.org Delivered-To: mailing list issues@commons.apache.org Received: (qmail 27363 invoked by uid 99); 6 Apr 2015 17:29:26 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Apr 2015 17:29:26 +0000 Date: Mon, 6 Apr 2015 17:29:26 +0000 (UTC) From: "Benedikt Ritter (JIRA)" To: issues@commons.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Closed] (LANG-1092) Wrong formating of time zones with daylight saving time in FastDatePrinter 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/LANG-1092?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Benedikt Ritter closed LANG-1092. --------------------------------- > Wrong formating of time zones with daylight saving time in FastDatePrinter > -------------------------------------------------------------------------- > > Key: LANG-1092 > URL: https://issues.apache.org/jira/browse/LANG-1092 > Project: Commons Lang > Issue Type: Bug > Components: lang.time.* > Affects Versions: 3.3.2 > Reporter: Henri Yandell > Assignee: Benedikt Ritter > Fix For: 3.4 > > > At work we're getting build issues with Lang 3.3.2 (and any since 3.2 when the test code was introduced in LANG-818). The test org.apache.commons.lang3.time.FastDatePrinterTest.testCalendarTimezoneRespected picks a timezone and runs a test on it. One assumes that timezones usually work, but some are not - so it depends on the order of timezones returned by TimeZone.getAvailableIDs(). > This would seem to imply a daylight savings time bug in FastDateFormat. This may be the same issue as LANG-916. > If you adjust the for loop such that the test is within the loop and happens on every timezone, you will hit timezones that fail. e.g.: > {code} > Index: FastDatePrinterTest.java > =================================================================== > --- FastDatePrinterTest.java (revision 1665715) > +++ FastDatePrinterTest.java (working copy) > @@ -269,8 +269,6 @@ > for (final String zone : availableZones) { > if (!zone.equals(currentZone.getID())) { > anotherZone = TimeZone.getTimeZone(zone); > - } > - } > > assertNotNull("Cannot find another timezone", anotherZone); > > @@ -282,6 +280,8 @@ > final String expectedValue = sdf.format(cal.getTime()); > final String actualValue = FastDateFormat.getInstance(pattern).format(cal); > assertEquals(expectedValue, actualValue); > + } > + } > } > > @Test > {code} -- This message was sent by Atlassian JIRA (v6.3.4#6332)