Skip to content

Commit

Permalink
LANG-1061 FastDateParser error - timezones not handled correctly
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1663140 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
sebbASF committed Mar 1, 2015
1 parent 45a6467 commit 2367948
Show file tree
Hide file tree
Showing 3 changed files with 121 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/changes/changes.xml
Expand Up @@ -22,6 +22,7 @@
<body>

<release version="3.4" date="tba" description="tba">
<action issue="LANG-1061" type="fix" dev="sebb" due-to="dmeneses">FastDateParser error - timezones not handled correctly</action>
<action issue="LANG-1087" type="fix" dev="britter" due-to="Renat Zhilkibaev">NumberUtils#createNumber() returns positive BigDecimal when negative Float is expected</action>
<action issue="LANG-1081" type="fix" dev="britter" due-to="Jonathan Baker">DiffBuilder.append(String, Object left, Object right) does not do a left.equals(right) check</action>
<action issue="LANG-1055" type="fix" dev="britter" due-to="Jonathan Baker">StrSubstitutor.replaceSystemProperties does not work consistently</action>
Expand Down
Expand Up @@ -780,7 +780,8 @@ private static class TimeZoneStrategy extends Strategy {
}

final StringBuilder sb= new StringBuilder();
sb.append("(GMT[+\\-]\\d{0,1}\\d{2}|[+\\-]\\d{2}:?\\d{2}|");
sb.append("(GMT[+-]\\d{1,2}:\\d{2}").append('|');
sb.append("[+-]\\d{4}").append('|');
for(final String id : tzNames.keySet()) {
escapeRegex(sb, id, false).append('|');
}
Expand Down
118 changes: 118 additions & 0 deletions src/test/java/org/apache/commons/lang3/time/FastDateParserSDFTest.java
@@ -0,0 +1,118 @@
package org.apache.commons.lang3.time;

import static org.junit.Assert.*;

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Arrays;
import java.util.Collection;
import java.util.Date;
import java.util.Locale;
import java.util.TimeZone;

import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Parameters;

/**
* Compare FastDateParser with SimpleDateFormat
*/
@RunWith(Parameterized.class)
public class FastDateParserSDFTest {

@Parameters(name= "{index}: {0} {1} {2}")
public static Collection<Object[]> data() {
return Arrays.asList(new Object [][]{
// General Time zone tests
{"z yyyy", "GMT 2010", Locale.UK, true}, // no offset specified, but seems to be allowed
{"z yyyy", "GMT-123 2010", Locale.UK, false},
{"z yyyy", "GMT-1234 2010", Locale.UK, false},
{"z yyyy", "GMT-12:34 2010", Locale.UK, true},
{"z yyyy", "GMT-1:23 2010", Locale.UK, true},
// RFC 822 tests
{"z yyyy", "-1234 2010", Locale.UK, true},
{"z yyyy", "-12:34 2010", Locale.UK, false},
{"z yyyy", "-123 2010", Locale.UK, false},
// year tests
{ "MM/dd/yyyy", "01/11/12", Locale.UK, true},
{ "MM/dd/yy", "01/11/12", Locale.UK, true},
});
}

private final String format;
private final String input;
private final Locale locale;
private final boolean valid;

public FastDateParserSDFTest(String format, String input, Locale locale, boolean valid) {
this.format = format;
this.input = input;
this.locale = locale;
this.valid = valid;
}

@Test
public void testOriginal() throws Exception {
final SimpleDateFormat sdf = new SimpleDateFormat(format, locale);
final TimeZone timeZone = TimeZone.getDefault();
final DateParser fdf = new FastDateParser(format, timeZone, locale);
checkParse(locale, sdf, fdf, input);
}

@Test
public void testUpperCase() throws Exception {
final SimpleDateFormat sdf = new SimpleDateFormat(format, locale);
final TimeZone timeZone = TimeZone.getDefault();
final DateParser fdf = new FastDateParser(format, timeZone , locale);
checkParse(locale, sdf, fdf, input.toUpperCase(locale));
}

@Test
@Ignore // not currently supported
public void testLowerCase() throws Exception {
final SimpleDateFormat sdf = new SimpleDateFormat(format, locale);
final TimeZone timeZone = TimeZone.getDefault();
final DateParser fdf = new FastDateParser(format, timeZone , locale);
checkParse(locale, sdf, fdf, input.toLowerCase(locale));
}

private void checkParse(final Locale locale, final SimpleDateFormat sdf, final DateParser fdf, final String formattedDate) throws ParseException {
Date expectedTime=null;
Class<?> sdfE = null;
try {
expectedTime = sdf.parse(formattedDate);
if (!valid) {
// Error in test data
throw new RuntimeException("Test data error: expected SDF parse to fail, but got " + expectedTime);
}
} catch (ParseException e) {
if (valid) {
// Error in test data
throw new RuntimeException("Test data error: expected SDF parse to succeed, but got " + e);
}
sdfE = e.getClass();
}
Date actualTime = null;
Class<?> fdfE = null;
try {
actualTime = fdf.parse(formattedDate);
if (!valid) {
// failure in test
fail("Expected FDP parse to fail, but got " + actualTime);
}
} catch (ParseException e) {
if (valid) {
// failure in test
fail("Expected FDP parse to succeed, but got " + e);
}
fdfE = e.getClass();
}
if (valid) {
assertEquals(locale.toString()+" "+formattedDate +"\n",expectedTime, actualTime);
} else {
assertEquals(locale.toString()+" "+formattedDate + " expected same Exception ", sdfE, fdfE);
}
}
}

0 comments on commit 2367948

Please sign in to comment.