reader.read(chars, 0, chars.length);
reader.close();
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
format.setTimeZone(TimeZone.getTimeZone("GMT+0"));
String utcStr = new String(chars, 0, 19);
Date utcDate = format.parse(utcStr, new ParsePosition(0));
assertTrue(utcDate.getTime() >= start - 1000 && utcDate.getTime() < end + 1000);
String cstStr = new String(chars, 21, 19);
format.setTimeZone(TimeZone.getTimeZone("GMT-6"));
Date cstDate = format.parse(cstStr, new ParsePosition(0));
assertFalse(cstStr.equals(utcStr));
assertTrue(cstDate.getTime() >= start - 1000 && cstDate.getTime() < end + 1000);
}