aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_time.rb
diff options
context:
space:
mode:
authorsonots <sonots@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-03-17 17:46:22 +0000
committersonots <sonots@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-03-17 17:46:22 +0000
commit1ba62fa93a200f92a8bd612a14f36a298ac4b3d1 (patch)
tree08482a678d9ee82ca5296764028d450bf36e90b3 /test/test_time.rb
parent2169bea82e57c3887285b06f36b0f79827de0986 (diff)
downloadruby-1ba62fa93a200f92a8bd612a14f36a298ac4b3d1.tar.gz
* lib/time.rb (parse, strptime): Fix Time.parse/strptime does not
have compatibility with DateTime.parse/strptime in terms of parsing timezone [Bug #12190] [Fix GH-1297] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54167 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/test_time.rb')
-rw-r--r--test/test_time.rb32
1 files changed, 32 insertions, 0 deletions
diff --git a/test/test_time.rb b/test/test_time.rb
index 0a6659f152..c7808e9cc1 100644
--- a/test/test_time.rb
+++ b/test/test_time.rb
@@ -429,6 +429,23 @@ class TestTimeExtension < Test::Unit::TestCase # :nodoc:
assert_equal(500000, Time.parse("2000-01-01T00:00:00.5+00:00").tv_usec)
end
+ def test_parse_with_zone
+ t = Time.parse('2000-01-01T00:00:00 CET')
+ assert_equal(2000, t.year)
+ assert_equal(1, t.mon)
+ assert_equal(1, t.day)
+ assert_equal(0, t.hour)
+ assert_equal(0, t.min)
+ assert_equal(0, t.sec)
+ assert_equal(3600, t.utc_offset)
+ assert_equal(false, t.utc?)
+
+ Time.instance_eval("ZoneOffset").each do |zone, offset|
+ t = Time.parse("2000-01-01T00:00:00 #{zone}")
+ assert_equal(offset*3600, t.utc_offset)
+ end
+ end
+
def test_strptime
assert_equal(Time.utc(2005, 8, 28, 06, 54, 20), Time.strptime("28/Aug/2005:06:54:20 +0000", "%d/%b/%Y:%T %z"))
assert_equal(Time.at(1).localtime, Time.strptime("1", "%s"))
@@ -479,6 +496,21 @@ class TestTimeExtension < Test::Unit::TestCase # :nodoc:
assert_equal(0, t.sec)
assert_equal(0, t.utc_offset)
assert_equal(true, t.utc?)
+
+ t = Time.strptime('20010203 CET', '%Y%m%d %z')
+ assert_equal(2001, t.year)
+ assert_equal(2, t.mon)
+ assert_equal(3, t.day)
+ assert_equal(0, t.hour)
+ assert_equal(0, t.min)
+ assert_equal(0, t.sec)
+ assert_equal(3600, t.utc_offset)
+ assert_equal(false, t.utc?)
+
+ Time.instance_eval("ZoneOffset").each do |zone, offset|
+ t = Time.strptime("2000-01-01 #{zone}", '%Y-%m-%d %z')
+ assert_equal(offset*3600, t.utc_offset)
+ end
end
def test_nsec