aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--activerecord/CHANGELOG2
-rwxr-xr-xactiverecord/test/cases/attribute_methods_test.rb76
-rwxr-xr-xactiverecord/test/cases/base_test.rb36
-rw-r--r--activerecord/test/cases/helper.rb8
-rw-r--r--activesupport/CHANGELOG2
-rw-r--r--activesupport/test/abstract_unit.rb7
-rw-r--r--activesupport/test/core_ext/time_with_zone_test.rb909
-rw-r--r--activesupport/test/time_zone_test.rb325
8 files changed, 672 insertions, 693 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index eb0db9d944..ce8edcae9e 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Removing unnecessary uses_tzinfo helper from tests, given that TZInfo is now bundled [Geoff Buesing]
+
* Fixed that validates_size_of :within works in associations #11295, #10019 [cavalle]
* Track changes to unsaved attributes. [Jeremy Kemper]
diff --git a/activerecord/test/cases/attribute_methods_test.rb b/activerecord/test/cases/attribute_methods_test.rb
index 376a70d6fe..61a049ab36 100755
--- a/activerecord/test/cases/attribute_methods_test.rb
+++ b/activerecord/test/cases/attribute_methods_test.rb
@@ -138,51 +138,49 @@ class AttributeMethodsTest < ActiveRecord::TestCase
end
end
- uses_tzinfo "Time zone" do
- def test_time_attributes_are_retrieved_in_current_time_zone
- in_time_zone "Pacific Time (US & Canada)" do
- utc_time = Time.utc(2008, 1, 1)
- record = @target.new
- record[:written_on] = utc_time
- assert_equal utc_time, record.written_on # record.written on is equal to (i.e., simultaneous with) utc_time
- assert_kind_of ActiveSupport::TimeWithZone, record.written_on # but is a TimeWithZone
- assert_equal TimeZone["Pacific Time (US & Canada)"], record.written_on.time_zone # and is in the current Time.zone
- assert_equal Time.utc(2007, 12, 31, 16), record.written_on.time # and represents time values adjusted accordingly
- end
+ def test_time_attributes_are_retrieved_in_current_time_zone
+ in_time_zone "Pacific Time (US & Canada)" do
+ utc_time = Time.utc(2008, 1, 1)
+ record = @target.new
+ record[:written_on] = utc_time
+ assert_equal utc_time, record.written_on # record.written on is equal to (i.e., simultaneous with) utc_time
+ assert_kind_of ActiveSupport::TimeWithZone, record.written_on # but is a TimeWithZone
+ assert_equal TimeZone["Pacific Time (US & Canada)"], record.written_on.time_zone # and is in the current Time.zone
+ assert_equal Time.utc(2007, 12, 31, 16), record.written_on.time # and represents time values adjusted accordingly
end
+ end
- def test_setting_time_zone_aware_attribute_to_utc
- in_time_zone "Pacific Time (US & Canada)" do
- utc_time = Time.utc(2008, 1, 1)
- record = @target.new
- record.written_on = utc_time
- assert_equal utc_time, record.written_on
- assert_equal TimeZone["Pacific Time (US & Canada)"], record.written_on.time_zone
- assert_equal Time.utc(2007, 12, 31, 16), record.written_on.time
- end
+ def test_setting_time_zone_aware_attribute_to_utc
+ in_time_zone "Pacific Time (US & Canada)" do
+ utc_time = Time.utc(2008, 1, 1)
+ record = @target.new
+ record.written_on = utc_time
+ assert_equal utc_time, record.written_on
+ assert_equal TimeZone["Pacific Time (US & Canada)"], record.written_on.time_zone
+ assert_equal Time.utc(2007, 12, 31, 16), record.written_on.time
end
+ end
- def test_setting_time_zone_aware_attribute_in_other_time_zone
- utc_time = Time.utc(2008, 1, 1)
- cst_time = utc_time.in_time_zone("Central Time (US & Canada)")
- in_time_zone "Pacific Time (US & Canada)" do
- record = @target.new
- record.written_on = cst_time
- assert_equal utc_time, record.written_on
- assert_equal TimeZone["Pacific Time (US & Canada)"], record.written_on.time_zone
- assert_equal Time.utc(2007, 12, 31, 16), record.written_on.time
- end
+ def test_setting_time_zone_aware_attribute_in_other_time_zone
+ utc_time = Time.utc(2008, 1, 1)
+ cst_time = utc_time.in_time_zone("Central Time (US & Canada)")
+ in_time_zone "Pacific Time (US & Canada)" do
+ record = @target.new
+ record.written_on = cst_time
+ assert_equal utc_time, record.written_on
+ assert_equal TimeZone["Pacific Time (US & Canada)"], record.written_on.time_zone
+ assert_equal Time.utc(2007, 12, 31, 16), record.written_on.time
end
+ end
- def test_setting_time_zone_aware_attribute_in_current_time_zone
- utc_time = Time.utc(2008, 1, 1)
- in_time_zone "Pacific Time (US & Canada)" do
- record = @target.new
- record.written_on = utc_time.in_time_zone
- assert_equal utc_time, record.written_on
- assert_equal TimeZone["Pacific Time (US & Canada)"], record.written_on.time_zone
- assert_equal Time.utc(2007, 12, 31, 16), record.written_on.time
- end
+ def test_setting_time_zone_aware_attribute_in_current_time_zone
+ utc_time = Time.utc(2008, 1, 1)
+ in_time_zone "Pacific Time (US & Canada)" do
+ record = @target.new
+ record.written_on = utc_time.in_time_zone
+ assert_equal utc_time, record.written_on
+ assert_equal TimeZone["Pacific Time (US & Canada)"], record.written_on.time_zone
+ assert_equal Time.utc(2007, 12, 31, 16), record.written_on.time
end
end
diff --git a/activerecord/test/cases/base_test.rb b/activerecord/test/cases/base_test.rb
index 3025d20e5f..977c5d7333 100755
--- a/activerecord/test/cases/base_test.rb
+++ b/activerecord/test/cases/base_test.rb
@@ -973,25 +973,23 @@ class BasicsTest < ActiveRecord::TestCase
ActiveRecord::Base.default_timezone = :local
end
- uses_tzinfo "test_multiparameter_attributes_on_time_with_time_zone_aware_attributes" do
- def test_multiparameter_attributes_on_time_with_time_zone_aware_attributes
- ActiveRecord::Base.time_zone_aware_attributes = true
- ActiveRecord::Base.default_timezone = :utc
- Time.zone = TimeZone[-28800]
- attributes = {
- "written_on(1i)" => "2004", "written_on(2i)" => "6", "written_on(3i)" => "24",
- "written_on(4i)" => "16", "written_on(5i)" => "24", "written_on(6i)" => "00"
- }
- topic = Topic.find(1)
- topic.attributes = attributes
- assert_equal Time.utc(2004, 6, 24, 23, 24, 0), topic.written_on
- assert_equal Time.utc(2004, 6, 24, 16, 24, 0), topic.written_on.time
- assert_equal Time.zone, topic.written_on.time_zone
- ensure
- ActiveRecord::Base.time_zone_aware_attributes = false
- ActiveRecord::Base.default_timezone = :local
- Time.zone = nil
- end
+ def test_multiparameter_attributes_on_time_with_time_zone_aware_attributes
+ ActiveRecord::Base.time_zone_aware_attributes = true
+ ActiveRecord::Base.default_timezone = :utc
+ Time.zone = TimeZone[-28800]
+ attributes = {
+ "written_on(1i)" => "2004", "written_on(2i)" => "6", "written_on(3i)" => "24",
+ "written_on(4i)" => "16", "written_on(5i)" => "24", "written_on(6i)" => "00"
+ }
+ topic = Topic.find(1)
+ topic.attributes = attributes
+ assert_equal Time.utc(2004, 6, 24, 23, 24, 0), topic.written_on
+ assert_equal Time.utc(2004, 6, 24, 16, 24, 0), topic.written_on.time
+ assert_equal Time.zone, topic.written_on.time_zone
+ ensure
+ ActiveRecord::Base.time_zone_aware_attributes = false
+ ActiveRecord::Base.default_timezone = :local
+ Time.zone = nil
end
def test_multiparameter_attributes_on_time_with_time_zone_aware_attributes_false
diff --git a/activerecord/test/cases/helper.rb b/activerecord/test/cases/helper.rb
index 1040d1ec41..dc83300efa 100644
--- a/activerecord/test/cases/helper.rb
+++ b/activerecord/test/cases/helper.rb
@@ -29,14 +29,6 @@ rescue LoadError
$stderr.puts "Skipping #{description} tests. `gem install mocha` and try again."
end
-def uses_tzinfo(description)
- require 'rubygems'
- require 'tzinfo'
- yield
-rescue LoadError
- $stderr.puts "Skipping #{description} tests. `gem install tzinfo` and try again."
-end
-
ActiveRecord::Base.connection.class.class_eval do
IGNORED_SQL = [/^PRAGMA/, /^SELECT currval/, /^SELECT CAST/, /^SELECT @@IDENTITY/, /^SELECT @@ROWCOUNT/]
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG
index c70aff866b..c50a78b31e 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Removing unnecessary uses_tzinfo helper from tests, given that TZInfo is now bundled [Geoff Buesing]
+
* Bundling abbreviated version of TZInfo gem 0.3.8: only the classes and zone definitions required to support Rails time zone features are included. If a recent version of the full TZInfo gem is installed, this will take precedence over the bundled version [Geoff Buesing]
* TimeWithZone#marshal_load does zone lookup via Time.get_zone, so that tzinfo/Olson identifiers are handled [Geoff Buesing]
diff --git a/activesupport/test/abstract_unit.rb b/activesupport/test/abstract_unit.rb
index da4ca9e2a2..cce8d5d220 100644
--- a/activesupport/test/abstract_unit.rb
+++ b/activesupport/test/abstract_unit.rb
@@ -20,12 +20,5 @@ unless defined? uses_mocha
end
end
-# Wrap tests that use TZInfo and skip if unavailable.
-unless defined? uses_tzinfo
- def uses_tzinfo(test_name, &block)
- yield #TZInfo is now bundled
- end
-end
-
# Show backtraces for deprecated behavior for quicker cleanup.
ActiveSupport::Deprecation.debug = true
diff --git a/activesupport/test/core_ext/time_with_zone_test.rb b/activesupport/test/core_ext/time_with_zone_test.rb
index 11c4270db5..61b1c30666 100644
--- a/activesupport/test/core_ext/time_with_zone_test.rb
+++ b/activesupport/test/core_ext/time_with_zone_test.rb
@@ -1,535 +1,532 @@
require 'abstract_unit'
-
-uses_tzinfo 'TimeWithZoneTest' do
- class TimeWithZoneTest < Test::Unit::TestCase
+class TimeWithZoneTest < Test::Unit::TestCase
- def setup
- @utc = Time.utc(2000, 1, 1, 0)
- @time_zone = TimeZone['Eastern Time (US & Canada)']
- @twz = ActiveSupport::TimeWithZone.new(@utc, @time_zone)
- end
-
- def test_utc
- assert_equal @utc, @twz.utc
+ def setup
+ @utc = Time.utc(2000, 1, 1, 0)
+ @time_zone = TimeZone['Eastern Time (US & Canada)']
+ @twz = ActiveSupport::TimeWithZone.new(@utc, @time_zone)
+ end
+
+ def test_utc
+ assert_equal @utc, @twz.utc
+ end
+
+ def test_time
+ silence_warnings do # silence warnings raised by tzinfo gem
+ assert_equal Time.utc(1999, 12, 31, 19), @twz.time
end
+ end
+
+ def test_time_zone
+ assert_equal @time_zone, @twz.time_zone
+ end
- def test_time
- silence_warnings do # silence warnings raised by tzinfo gem
- assert_equal Time.utc(1999, 12, 31, 19), @twz.time
- end
+ def test_in_time_zone
+ Time.use_zone 'Alaska' do
+ assert_equal ActiveSupport::TimeWithZone.new(@utc, TimeZone['Alaska']), @twz.in_time_zone
end
+ end
+
+ def test_in_time_zone_with_argument
+ assert_equal ActiveSupport::TimeWithZone.new(@utc, TimeZone['Alaska']), @twz.in_time_zone('Alaska')
+ end
- def test_time_zone
- assert_equal @time_zone, @twz.time_zone
- end
+ def test_in_time_zone_with_new_zone_equal_to_old_zone_does_not_create_new_object
+ assert_equal @twz.object_id, @twz.in_time_zone(TimeZone['Eastern Time (US & Canada)']).object_id
+ end
+
+ def test_utc?
+ assert_equal false, @twz.utc?
+ assert_equal true, ActiveSupport::TimeWithZone.new(Time.utc(2000), TimeZone['UTC']).utc?
+ end
- def test_in_time_zone
- Time.use_zone 'Alaska' do
- assert_equal ActiveSupport::TimeWithZone.new(@utc, TimeZone['Alaska']), @twz.in_time_zone
- end
- end
-
- def test_in_time_zone_with_argument
- assert_equal ActiveSupport::TimeWithZone.new(@utc, TimeZone['Alaska']), @twz.in_time_zone('Alaska')
+ def test_formatted_offset
+ silence_warnings do # silence warnings raised by tzinfo gem
+ assert_equal '-05:00', @twz.formatted_offset
+ assert_equal '-04:00', ActiveSupport::TimeWithZone.new(Time.utc(2000, 6), @time_zone).formatted_offset #dst
end
+ end
- def test_in_time_zone_with_new_zone_equal_to_old_zone_does_not_create_new_object
- assert_equal @twz.object_id, @twz.in_time_zone(TimeZone['Eastern Time (US & Canada)']).object_id
- end
-
- def test_utc?
- assert_equal false, @twz.utc?
- assert_equal true, ActiveSupport::TimeWithZone.new(Time.utc(2000), TimeZone['UTC']).utc?
- end
-
- def test_formatted_offset
- silence_warnings do # silence warnings raised by tzinfo gem
- assert_equal '-05:00', @twz.formatted_offset
- assert_equal '-04:00', ActiveSupport::TimeWithZone.new(Time.utc(2000, 6), @time_zone).formatted_offset #dst
- end
- end
-
- def test_dst?
- silence_warnings do # silence warnings raised by tzinfo gem
- assert_equal false, @twz.dst?
- assert_equal true, ActiveSupport::TimeWithZone.new(Time.utc(2000, 6), @time_zone).dst?
- end
- end
-
- def test_zone
- silence_warnings do # silence warnings raised by tzinfo gem
- assert_equal 'EST', @twz.zone
- assert_equal 'EDT', ActiveSupport::TimeWithZone.new(Time.utc(2000, 6), @time_zone).zone #dst
- end
- end
-
- def test_to_json
- silence_warnings do # silence warnings raised by tzinfo gem
- assert_equal "\"1999/12/31 19:00:00 -0500\"", @twz.to_json
- end
- end
-
- def test_strftime
- silence_warnings do # silence warnings raised by tzinfo gem
- assert_equal '1999-12-31 19:00:00 EST -0500', @twz.strftime('%Y-%m-%d %H:%M:%S %Z %z')
- end
- end
-
- def test_inspect
- silence_warnings do # silence warnings raised by tzinfo gem
- assert_equal 'Fri, 31 Dec 1999 19:00:00 EST -05:00', @twz.inspect
- end
- end
-
- def test_to_s
- silence_warnings do # silence warnings raised by tzinfo gem
- assert_equal '1999-12-31 19:00:00 -0500', @twz.to_s
- end
- end
-
- def test_to_s_db
- silence_warnings do # silence warnings raised by tzinfo gem
- assert_equal '2000-01-01 00:00:00', @twz.to_s(:db)
- end
- end
-
- def test_xmlschema
- silence_warnings do # silence warnings raised by tzinfo gem
- assert_equal "1999-12-31T19:00:00-05:00", @twz.xmlschema
- end
+ def test_dst?
+ silence_warnings do # silence warnings raised by tzinfo gem
+ assert_equal false, @twz.dst?
+ assert_equal true, ActiveSupport::TimeWithZone.new(Time.utc(2000, 6), @time_zone).dst?
end
+ end
- def test_to_yaml
- silence_warnings do # silence warnings raised by tzinfo gem
- assert_equal "--- 1999-12-31 19:00:00 -05:00\n", @twz.to_yaml
- end
+ def test_zone
+ silence_warnings do # silence warnings raised by tzinfo gem
+ assert_equal 'EST', @twz.zone
+ assert_equal 'EDT', ActiveSupport::TimeWithZone.new(Time.utc(2000, 6), @time_zone).zone #dst
end
+ end
- def test_ruby_to_yaml
- silence_warnings do
- assert_equal "--- \n:twz: 2000-01-01 00:00:00 Z\n", {:twz => @twz}.to_yaml
- end
+ def test_to_json
+ silence_warnings do # silence warnings raised by tzinfo gem
+ assert_equal "\"1999/12/31 19:00:00 -0500\"", @twz.to_json
end
+ end
- def test_httpdate
- silence_warnings do # silence warnings raised by tzinfo gem
- assert_equal 'Sat, 01 Jan 2000 00:00:00 GMT', @twz.httpdate
- end
+ def test_strftime
+ silence_warnings do # silence warnings raised by tzinfo gem
+ assert_equal '1999-12-31 19:00:00 EST -0500', @twz.strftime('%Y-%m-%d %H:%M:%S %Z %z')
end
+ end
- def test_rfc2822
- silence_warnings do # silence warnings raised by tzinfo gem
- assert_equal "Fri, 31 Dec 1999 19:00:00 -0500", @twz.rfc2822
- end
+ def test_inspect
+ silence_warnings do # silence warnings raised by tzinfo gem
+ assert_equal 'Fri, 31 Dec 1999 19:00:00 EST -05:00', @twz.inspect
end
+ end
- def test_compare_with_time
- assert_equal 1, @twz <=> Time.utc(1999, 12, 31, 23, 59, 59)
- assert_equal 0, @twz <=> Time.utc(2000, 1, 1, 0, 0, 0)
- assert_equal(-1, @twz <=> Time.utc(2000, 1, 1, 0, 0, 1))
- end
-
- def test_compare_with_datetime
- assert_equal 1, @twz <=> DateTime.civil(1999, 12, 31, 23, 59, 59)
- assert_equal 0, @twz <=> DateTime.civil(2000, 1, 1, 0, 0, 0)
- assert_equal(-1, @twz <=> DateTime.civil(2000, 1, 1, 0, 0, 1))
- end
-
- def test_compare_with_time_with_zone
- assert_equal 1, @twz <=> ActiveSupport::TimeWithZone.new( Time.utc(1999, 12, 31, 23, 59, 59), TimeZone['UTC'] )
- assert_equal 0, @twz <=> ActiveSupport::TimeWithZone.new( Time.utc(2000, 1, 1, 0, 0, 0), TimeZone['UTC'] )
- assert_equal(-1, @twz <=> ActiveSupport::TimeWithZone.new( Time.utc(2000, 1, 1, 0, 0, 1), TimeZone['UTC'] ))
+ def test_to_s
+ silence_warnings do # silence warnings raised by tzinfo gem
+ assert_equal '1999-12-31 19:00:00 -0500', @twz.to_s
end
+ end
- def test_between?
- assert @twz.between?(Time.utc(1999,12,31,23,59,59), Time.utc(2000,1,1,0,0,1))
- assert_equal false, @twz.between?(Time.utc(2000,1,1,0,0,1), Time.utc(2000,1,1,0,0,2))
+ def test_to_s_db
+ silence_warnings do # silence warnings raised by tzinfo gem
+ assert_equal '2000-01-01 00:00:00', @twz.to_s(:db)
end
+ end
- def test_eql?
- assert @twz.eql?(Time.utc(2000))
- assert @twz.eql?( ActiveSupport::TimeWithZone.new(Time.utc(2000), TimeZone["Hawaii"]) )
- end
-
- def test_plus_with_integer
- silence_warnings do # silence warnings raised by tzinfo gem
- assert_equal Time.utc(1999, 12, 31, 19, 0 ,5), (@twz + 5).time
- end
- end
-
- def test_plus_with_integer_when_self_wraps_datetime
- silence_warnings do # silence warnings raised by tzinfo gem
- datetime = DateTime.civil(2000, 1, 1, 0)
- twz = ActiveSupport::TimeWithZone.new(datetime, @time_zone)
- assert_equal DateTime.civil(1999, 12, 31, 19, 0 ,5), (twz + 5).time
- end
- end
-
- def test_plus_with_duration
- silence_warnings do # silence warnings raised by tzinfo gem
- assert_equal Time.utc(2000, 1, 5, 19, 0 ,0), (@twz + 5.days).time
- end
+ def test_xmlschema
+ silence_warnings do # silence warnings raised by tzinfo gem
+ assert_equal "1999-12-31T19:00:00-05:00", @twz.xmlschema
end
-
- def test_minus_with_integer
- silence_warnings do # silence warnings raised by tzinfo gem
- assert_equal Time.utc(1999, 12, 31, 18, 59 ,55), (@twz - 5).time
- end
+ end
+
+ def test_to_yaml
+ silence_warnings do # silence warnings raised by tzinfo gem
+ assert_equal "--- 1999-12-31 19:00:00 -05:00\n", @twz.to_yaml
end
-
- def test_minus_with_integer_when_self_wraps_datetime
- silence_warnings do # silence warnings raised by tzinfo gem
- datetime = DateTime.civil(2000, 1, 1, 0)
- twz = ActiveSupport::TimeWithZone.new(datetime, @time_zone)
- assert_equal DateTime.civil(1999, 12, 31, 18, 59 ,55), (twz - 5).time
- end
+ end
+
+ def test_ruby_to_yaml
+ silence_warnings do
+ assert_equal "--- \n:twz: 2000-01-01 00:00:00 Z\n", {:twz => @twz}.to_yaml
end
-
- def test_minus_with_duration
- silence_warnings do # silence warnings raised by tzinfo gem
- assert_equal Time.utc(1999, 12, 26, 19, 0 ,0), (@twz - 5.days).time
- end
+ end
+
+ def test_httpdate
+ silence_warnings do # silence warnings raised by tzinfo gem
+ assert_equal 'Sat, 01 Jan 2000 00:00:00 GMT', @twz.httpdate
end
-
- def test_minus_with_time
- assert_equal 86_400.0, ActiveSupport::TimeWithZone.new( Time.utc(2000, 1, 2), TimeZone['UTC'] ) - Time.utc(2000, 1, 1)
- assert_equal 86_400.0, ActiveSupport::TimeWithZone.new( Time.utc(2000, 1, 2), TimeZone['Hawaii'] ) - Time.utc(2000, 1, 1)
+ end
+
+ def test_rfc2822
+ silence_warnings do # silence warnings raised by tzinfo gem
+ assert_equal "Fri, 31 Dec 1999 19:00:00 -0500", @twz.rfc2822
end
+ end
+
+ def test_compare_with_time
+ assert_equal 1, @twz <=> Time.utc(1999, 12, 31, 23, 59, 59)
+ assert_equal 0, @twz <=> Time.utc(2000, 1, 1, 0, 0, 0)
+ assert_equal(-1, @twz <=> Time.utc(2000, 1, 1, 0, 0, 1))
+ end
+
+ def test_compare_with_datetime
+ assert_equal 1, @twz <=> DateTime.civil(1999, 12, 31, 23, 59, 59)
+ assert_equal 0, @twz <=> DateTime.civil(2000, 1, 1, 0, 0, 0)
+ assert_equal(-1, @twz <=> DateTime.civil(2000, 1, 1, 0, 0, 1))
+ end
+
+ def test_compare_with_time_with_zone
+ assert_equal 1, @twz <=> ActiveSupport::TimeWithZone.new( Time.utc(1999, 12, 31, 23, 59, 59), TimeZone['UTC'] )
+ assert_equal 0, @twz <=> ActiveSupport::TimeWithZone.new( Time.utc(2000, 1, 1, 0, 0, 0), TimeZone['UTC'] )
+ assert_equal(-1, @twz <=> ActiveSupport::TimeWithZone.new( Time.utc(2000, 1, 1, 0, 0, 1), TimeZone['UTC'] ))
+ end
+
+ def test_between?
+ assert @twz.between?(Time.utc(1999,12,31,23,59,59), Time.utc(2000,1,1,0,0,1))
+ assert_equal false, @twz.between?(Time.utc(2000,1,1,0,0,1), Time.utc(2000,1,1,0,0,2))
+ end
+
+ def test_eql?
+ assert @twz.eql?(Time.utc(2000))
+ assert @twz.eql?( ActiveSupport::TimeWithZone.new(Time.utc(2000), TimeZone["Hawaii"]) )
+ end
- def test_minus_with_time_with_zone
- twz1 = ActiveSupport::TimeWithZone.new( Time.utc(2000, 1, 1), TimeZone['UTC'] )
- twz2 = ActiveSupport::TimeWithZone.new( Time.utc(2000, 1, 2), TimeZone['UTC'] )
- assert_equal 86_400.0, twz2 - twz1
+ def test_plus_with_integer
+ silence_warnings do # silence warnings raised by tzinfo gem
+ assert_equal Time.utc(1999, 12, 31, 19, 0 ,5), (@twz + 5).time
end
+ end
- def test_plus_and_minus_enforce_spring_dst_rules
- silence_warnings do # silence warnings raised by tzinfo gem
- utc = Time.utc(2006,4,2,6,59,59) # == Apr 2 2006 01:59:59 EST; i.e., 1 second before daylight savings start
- twz = ActiveSupport::TimeWithZone.new(utc, @time_zone)
- assert_equal Time.utc(2006,4,2,1,59,59), twz.time
- assert_equal false, twz.dst?
- assert_equal 'EST', twz.zone
- twz = twz + 1
- assert_equal Time.utc(2006,4,2,3), twz.time # adding 1 sec springs forward to 3:00AM EDT
- assert_equal true, twz.dst?
- assert_equal 'EDT', twz.zone
- twz = twz - 1 # subtracting 1 second takes goes back to 1:59:59AM EST
- assert_equal Time.utc(2006,4,2,1,59,59), twz.time
- assert_equal false, twz.dst?
- assert_equal 'EST', twz.zone
- end
+ def test_plus_with_integer_when_self_wraps_datetime
+ silence_warnings do # silence warnings raised by tzinfo gem
+ datetime = DateTime.civil(2000, 1, 1, 0)
+ twz = ActiveSupport::TimeWithZone.new(datetime, @time_zone)
+ assert_equal DateTime.civil(1999, 12, 31, 19, 0 ,5), (twz + 5).time
end
+ end
- def test_plus_and_minus_enforce_fall_dst_rules
- silence_warnings do # silence warnings raised by tzinfo gem
- utc = Time.utc(2006,10,29,5,59,59) # == Oct 29 2006 01:59:59 EST; i.e., 1 second before daylight savings end
- twz = ActiveSupport::TimeWithZone.new(utc, @time_zone)
- assert_equal Time.utc(2006,10,29,1,59,59), twz.time
- assert_equal true, twz.dst?
- assert_equal 'EDT', twz.zone
- twz = twz + 1
- assert_equal Time.utc(2006,10,29,1), twz.time # adding 1 sec falls back from 1:59:59 EDT to 1:00AM EST
- assert_equal false, twz.dst?
- assert_equal 'EST', twz.zone
- twz = twz - 1
- assert_equal Time.utc(2006,10,29,1,59,59), twz.time # subtracting 1 sec goes back to 1:59:59AM EDT
- assert_equal true, twz.dst?
- assert_equal 'EDT', twz.zone
- end
+ def test_plus_with_duration
+ silence_warnings do # silence warnings raised by tzinfo gem
+ assert_equal Time.utc(2000, 1, 5, 19, 0 ,0), (@twz + 5.days).time
end
+ end
- def test_to_a
- silence_warnings do # silence warnings raised by tzinfo gem
- assert_equal [45, 30, 5, 1, 2, 2000, 2, 32, false, "HST"], ActiveSupport::TimeWithZone.new( Time.utc(2000, 2, 1, 15, 30, 45), TimeZone['Hawaii'] ).to_a
- end
+ def test_minus_with_integer
+ silence_warnings do # silence warnings raised by tzinfo gem
+ assert_equal Time.utc(1999, 12, 31, 18, 59 ,55), (@twz - 5).time
end
-
- def test_to_f
- result = ActiveSupport::TimeWithZone.new( Time.utc(2000, 1, 1), TimeZone['Hawaii'] ).to_f
- assert_equal 946684800.0, result
- assert result.is_a?(Float)
+ end
+
+ def test_minus_with_integer_when_self_wraps_datetime
+ silence_warnings do # silence warnings raised by tzinfo gem
+ datetime = DateTime.civil(2000, 1, 1, 0)
+ twz = ActiveSupport::TimeWithZone.new(datetime, @time_zone)
+ assert_equal DateTime.civil(1999, 12, 31, 18, 59 ,55), (twz - 5).time
end
+ end
- def test_to_i
- result = ActiveSupport::TimeWithZone.new( Time.utc(2000, 1, 1), TimeZone['Hawaii'] ).to_i
- assert_equal 946684800, result
- assert result.is_a?(Integer)
- end
-
- def test_to_time
- assert_equal @twz, @twz.to_time
+ def test_minus_with_duration
+ silence_warnings do # silence warnings raised by tzinfo gem
+ assert_equal Time.utc(1999, 12, 26, 19, 0 ,0), (@twz - 5.days).time
end
-
- def test_to_date
- silence_warnings do # silence warnings raised by tzinfo gem
- # 1 sec before midnight Jan 1 EST
- assert_equal Date.new(1999, 12, 31), ActiveSupport::TimeWithZone.new( Time.utc(2000, 1, 1, 4, 59, 59), TimeZone['Eastern Time (US & Canada)'] ).to_date
- # midnight Jan 1 EST
- assert_equal Date.new(2000, 1, 1), ActiveSupport::TimeWithZone.new( Time.utc(2000, 1, 1, 5, 0, 0), TimeZone['Eastern Time (US & Canada)'] ).to_date
- # 1 sec before midnight Jan 2 EST
- assert_equal Date.new(2000, 1, 1), ActiveSupport::TimeWithZone.new( Time.utc(2000, 1, 2, 4, 59, 59), TimeZone['Eastern Time (US & Canada)'] ).to_date
- # midnight Jan 2 EST
- assert_equal Date.new(2000, 1, 2), ActiveSupport::TimeWithZone.new( Time.utc(2000, 1, 2, 5, 0, 0), TimeZone['Eastern Time (US & Canada)'] ).to_date
- end
- end
-
- def test_to_datetime
- silence_warnings do # silence warnings raised by tzinfo gem
- assert_equal DateTime.civil(1999, 12, 31, 19, 0, 0, Rational(-18_000, 86_400)), @twz.to_datetime
- end
+ end
+
+ def test_minus_with_time
+ assert_equal 86_400.0, ActiveSupport::TimeWithZone.new( Time.utc(2000, 1, 2), TimeZone['UTC'] ) - Time.utc(2000, 1, 1)
+ assert_equal 86_400.0, ActiveSupport::TimeWithZone.new( Time.utc(2000, 1, 2), TimeZone['Hawaii'] ) - Time.utc(2000, 1, 1)
+ end
+
+ def test_minus_with_time_with_zone
+ twz1 = ActiveSupport::TimeWithZone.new( Time.utc(2000, 1, 1), TimeZone['UTC'] )
+ twz2 = ActiveSupport::TimeWithZone.new( Time.utc(2000, 1, 2), TimeZone['UTC'] )
+ assert_equal 86_400.0, twz2 - twz1
+ end
+
+ def test_plus_and_minus_enforce_spring_dst_rules
+ silence_warnings do # silence warnings raised by tzinfo gem
+ utc = Time.utc(2006,4,2,6,59,59) # == Apr 2 2006 01:59:59 EST; i.e., 1 second before daylight savings start
+ twz = ActiveSupport::TimeWithZone.new(utc, @time_zone)
+ assert_equal Time.utc(2006,4,2,1,59,59), twz.time
+ assert_equal false, twz.dst?
+ assert_equal 'EST', twz.zone
+ twz = twz + 1
+ assert_equal Time.utc(2006,4,2,3), twz.time # adding 1 sec springs forward to 3:00AM EDT
+ assert_equal true, twz.dst?
+ assert_equal 'EDT', twz.zone
+ twz = twz - 1 # subtracting 1 second takes goes back to 1:59:59AM EST
+ assert_equal Time.utc(2006,4,2,1,59,59), twz.time
+ assert_equal false, twz.dst?
+ assert_equal 'EST', twz.zone
end
-
- def test_acts_like_time
- assert @twz.acts_like?(:time)
- assert ActiveSupport::TimeWithZone.new(DateTime.civil(2000), @time_zone).acts_like?(:time)
+ end
+
+ def test_plus_and_minus_enforce_fall_dst_rules
+ silence_warnings do # silence warnings raised by tzinfo gem
+ utc = Time.utc(2006,10,29,5,59,59) # == Oct 29 2006 01:59:59 EST; i.e., 1 second before daylight savings end
+ twz = ActiveSupport::TimeWithZone.new(utc, @time_zone)
+ assert_equal Time.utc(2006,10,29,1,59,59), twz.time
+ assert_equal true, twz.dst?
+ assert_equal 'EDT', twz.zone
+ twz = twz + 1
+ assert_equal Time.utc(2006,10,29,1), twz.time # adding 1 sec falls back from 1:59:59 EDT to 1:00AM EST
+ assert_equal false, twz.dst?
+ assert_equal 'EST', twz.zone
+ twz = twz - 1
+ assert_equal Time.utc(2006,10,29,1,59,59), twz.time # subtracting 1 sec goes back to 1:59:59AM EDT
+ assert_equal true, twz.dst?
+ assert_equal 'EDT', twz.zone
end
-
- def test_acts_like_date
- assert_equal false, @twz.acts_like?(:date)
- assert_equal false, ActiveSupport::TimeWithZone.new(DateTime.civil(2000), @time_zone).acts_like?(:date)
+ end
+
+ def test_to_a
+ silence_warnings do # silence warnings raised by tzinfo gem
+ assert_equal [45, 30, 5, 1, 2, 2000, 2, 32, false, "HST"], ActiveSupport::TimeWithZone.new( Time.utc(2000, 2, 1, 15, 30, 45), TimeZone['Hawaii'] ).to_a
end
+ end
+
+ def test_to_f
+ result = ActiveSupport::TimeWithZone.new( Time.utc(2000, 1, 1), TimeZone['Hawaii'] ).to_f
+ assert_equal 946684800.0, result
+ assert result.is_a?(Float)
+ end
+
+ def test_to_i
+ result = ActiveSupport::TimeWithZone.new( Time.utc(2000, 1, 1), TimeZone['Hawaii'] ).to_i
+ assert_equal 946684800, result
+ assert result.is_a?(Integer)
+ end
- def test_is_a
- assert @twz.is_a?(Time)
- assert @twz.kind_of?(Time)
- assert @twz.is_a?(ActiveSupport::TimeWithZone)
- end
-
- def test_method_missing_with_time_return_value
- silence_warnings do # silence warnings raised by tzinfo gem
- assert_instance_of ActiveSupport::TimeWithZone, @twz.months_since(1)
- assert_equal Time.utc(2000, 1, 31, 19, 0 ,0), @twz.months_since(1).time
- end
+ def test_to_time
+ assert_equal @twz, @twz.to_time
+ end
+
+ def test_to_date
+ silence_warnings do # silence warnings raised by tzinfo gem
+ # 1 sec before midnight Jan 1 EST
+ assert_equal Date.new(1999, 12, 31), ActiveSupport::TimeWithZone.new( Time.utc(2000, 1, 1, 4, 59, 59), TimeZone['Eastern Time (US & Canada)'] ).to_date
+ # midnight Jan 1 EST
+ assert_equal Date.new(2000, 1, 1), ActiveSupport::TimeWithZone.new( Time.utc(2000, 1, 1, 5, 0, 0), TimeZone['Eastern Time (US & Canada)'] ).to_date
+ # 1 sec before midnight Jan 2 EST
+ assert_equal Date.new(2000, 1, 1), ActiveSupport::TimeWithZone.new( Time.utc(2000, 1, 2, 4, 59, 59), TimeZone['Eastern Time (US & Canada)'] ).to_date
+ # midnight Jan 2 EST
+ assert_equal Date.new(2000, 1, 2), ActiveSupport::TimeWithZone.new( Time.utc(2000, 1, 2, 5, 0, 0), TimeZone['Eastern Time (US & Canada)'] ).to_date
end
-
- def test_marshal_dump_and_load
- silence_warnings do # silence warnings raised by tzinfo gem
- marshal_str = Marshal.dump(@twz)
- mtime = Marshal.load(marshal_str)
- assert_equal Time.utc(2000, 1, 1, 0), mtime.utc
- assert_equal TimeZone['Eastern Time (US & Canada)'], mtime.time_zone
- assert_equal Time.utc(1999, 12, 31, 19), mtime.time
- end
+ end
+
+ def test_to_datetime
+ silence_warnings do # silence warnings raised by tzinfo gem
+ assert_equal DateTime.civil(1999, 12, 31, 19, 0, 0, Rational(-18_000, 86_400)), @twz.to_datetime
end
+ end
- def test_marshal_dump_and_load_with_tzinfo_identifier
- silence_warnings do # silence warnings raised by tzinfo gem
- twz = ActiveSupport::TimeWithZone.new(@utc, TZInfo::Timezone.get('America/New_York'))
- marshal_str = Marshal.dump(twz)
- mtime = Marshal.load(marshal_str)
- assert_equal Time.utc(2000, 1, 1, 0), mtime.utc
- assert_equal 'America/New_York', mtime.time_zone.name
- assert_equal Time.utc(1999, 12, 31, 19), mtime.time
- end
- end
-
- def test_method_missing_with_non_time_return_value
- silence_warnings do # silence warnings raised by tzinfo gem
- twz = ActiveSupport::TimeWithZone.new(Time.utc(1999,12,31,19,18,17,500), @time_zone)
- assert_equal 1999, twz.year
- assert_equal 12, twz.month
- assert_equal 31, twz.day
- assert_equal 14, twz.hour
- assert_equal 18, twz.min
- assert_equal 17, twz.sec
- assert_equal 500, twz.usec
- end
- end
+ def test_acts_like_time
+ assert @twz.acts_like?(:time)
+ assert ActiveSupport::TimeWithZone.new(DateTime.civil(2000), @time_zone).acts_like?(:time)
+ end
+
+ def test_acts_like_date
+ assert_equal false, @twz.acts_like?(:date)
+ assert_equal false, ActiveSupport::TimeWithZone.new(DateTime.civil(2000), @time_zone).acts_like?(:date)
+ end
+
+ def test_is_a
+ assert @twz.is_a?(Time)
+ assert @twz.kind_of?(Time)
+ assert @twz.is_a?(ActiveSupport::TimeWithZone)
+ end
- def test_usec_returns_0_when_datetime_is_wrapped
- silence_warnings do # silence warnings raised by tzinfo gem
- twz = ActiveSupport::TimeWithZone.new(DateTime.civil(2000), @time_zone)
- assert_equal 0, twz.usec
- end
+ def test_method_missing_with_time_return_value
+ silence_warnings do # silence warnings raised by tzinfo gem
+ assert_instance_of ActiveSupport::TimeWithZone, @twz.months_since(1)
+ assert_equal Time.utc(2000, 1, 31, 19, 0 ,0), @twz.months_since(1).time
end
-
- def test_utc_to_local_conversion_saves_period_in_instance_variable
- silence_warnings do # silence warnings raised by tzinfo gem
- assert_nil @twz.instance_variable_get('@period')
- @twz.time
- assert_kind_of TZInfo::TimezonePeriod, @twz.instance_variable_get('@period')
- end
+ end
+
+ def test_marshal_dump_and_load
+ silence_warnings do # silence warnings raised by tzinfo gem
+ marshal_str = Marshal.dump(@twz)
+ mtime = Marshal.load(marshal_str)
+ assert_equal Time.utc(2000, 1, 1, 0), mtime.utc
+ assert_equal TimeZone['Eastern Time (US & Canada)'], mtime.time_zone
+ assert_equal Time.utc(1999, 12, 31, 19), mtime.time
end
-
- def test_instance_created_with_local_time_returns_correct_utc_time
- silence_warnings do # silence warnings raised by tzinfo gem
- twz = ActiveSupport::TimeWithZone.new(nil, @time_zone, Time.utc(1999, 12, 31, 19))
- assert_equal Time.utc(2000), twz.utc
- end
+ end
+
+ def test_marshal_dump_and_load_with_tzinfo_identifier
+ silence_warnings do # silence warnings raised by tzinfo gem
+ twz = ActiveSupport::TimeWithZone.new(@utc, TZInfo::Timezone.get('America/New_York'))
+ marshal_str = Marshal.dump(twz)
+ mtime = Marshal.load(marshal_str)
+ assert_equal Time.utc(2000, 1, 1, 0), mtime.utc
+ assert_equal 'America/New_York', mtime.time_zone.name
+ assert_equal Time.utc(1999, 12, 31, 19), mtime.time
end
+ end
- def test_instance_created_with_local_time_enforces_spring_dst_rules
- silence_warnings do # silence warnings raised by tzinfo gem
- twz = ActiveSupport::TimeWithZone.new(nil, @time_zone, Time.utc(2006,4,2,2)) # first second of DST
- assert_equal Time.utc(2006,4,2,3), twz.time # springs forward to 3AM
- assert_equal true, twz.dst?
- assert_equal 'EDT', twz.zone
- end
+ def test_method_missing_with_non_time_return_value
+ silence_warnings do # silence warnings raised by tzinfo gem
+ twz = ActiveSupport::TimeWithZone.new(Time.utc(1999,12,31,19,18,17,500), @time_zone)
+ assert_equal 1999, twz.year
+ assert_equal 12, twz.month
+ assert_equal 31, twz.day
+ assert_equal 14, twz.hour
+ assert_equal 18, twz.min
+ assert_equal 17, twz.sec
+ assert_equal 500, twz.usec
end
-
- def test_instance_created_with_local_time_enforces_fall_dst_rules
- silence_warnings do # silence warnings raised by tzinfo gem
- twz = ActiveSupport::TimeWithZone.new(nil, @time_zone, Time.utc(2006,10,29,1)) # 1AM can be either DST or non-DST; we'll pick DST
- assert_equal Time.utc(2006,10,29,1), twz.time
- assert_equal true, twz.dst?
- assert_equal 'EDT', twz.zone
- end
+ end
+
+ def test_usec_returns_0_when_datetime_is_wrapped
+ silence_warnings do # silence warnings raised by tzinfo gem
+ twz = ActiveSupport::TimeWithZone.new(DateTime.civil(2000), @time_zone)
+ assert_equal 0, twz.usec
end
-
- def test_ruby_19_weekday_name_query_methods
- ruby_19_or_greater = RUBY_VERSION >= '1.9'
- %w(sunday? monday? tuesday? wednesday? thursday? friday? saturday?).each do |name|
- assert_equal ruby_19_or_greater, @twz.respond_to?(name)
- end
+ end
+
+ def test_utc_to_local_conversion_saves_period_in_instance_variable
+ silence_warnings do # silence warnings raised by tzinfo gem
+ assert_nil @twz.instance_variable_get('@period')
+ @twz.time
+ assert_kind_of TZInfo::TimezonePeriod, @twz.instance_variable_get('@period')
end
-
- def test_utc_to_local_conversion_with_far_future_datetime
- silence_warnings do # silence warnings raised by tzinfo gem
- assert_equal [0,0,19,31,12,2049], ActiveSupport::TimeWithZone.new(DateTime.civil(2050), @time_zone).to_a[0,6]
- end
+ end
+
+ def test_instance_created_with_local_time_returns_correct_utc_time
+ silence_warnings do # silence warnings raised by tzinfo gem
+ twz = ActiveSupport::TimeWithZone.new(nil, @time_zone, Time.utc(1999, 12, 31, 19))
+ assert_equal Time.utc(2000), twz.utc
end
-
- def test_local_to_utc_conversion_with_far_future_datetime
- silence_warnings do # silence warnings raised by tzinfo gem
- assert_equal DateTime.civil(2050).to_f, ActiveSupport::TimeWithZone.new(nil, @time_zone, DateTime.civil(2049,12,31,19)).to_f
- end
+ end
+
+ def test_instance_created_with_local_time_enforces_spring_dst_rules
+ silence_warnings do # silence warnings raised by tzinfo gem
+ twz = ActiveSupport::TimeWithZone.new(nil, @time_zone, Time.utc(2006,4,2,2)) # first second of DST
+ assert_equal Time.utc(2006,4,2,3), twz.time # springs forward to 3AM
+ assert_equal true, twz.dst?
+ assert_equal 'EDT', twz.zone
end
end
- class TimeWithZoneMethodsForTimeAndDateTimeTest < Test::Unit::TestCase
- def setup
- @t, @dt = Time.utc(2000), DateTime.civil(2000)
+ def test_instance_created_with_local_time_enforces_fall_dst_rules
+ silence_warnings do # silence warnings raised by tzinfo gem
+ twz = ActiveSupport::TimeWithZone.new(nil, @time_zone, Time.utc(2006,10,29,1)) # 1AM can be either DST or non-DST; we'll pick DST
+ assert_equal Time.utc(2006,10,29,1), twz.time
+ assert_equal true, twz.dst?
+ assert_equal 'EDT', twz.zone
end
-
- def teardown
- Time.zone = nil
+ end
+
+ def test_ruby_19_weekday_name_query_methods
+ ruby_19_or_greater = RUBY_VERSION >= '1.9'
+ %w(sunday? monday? tuesday? wednesday? thursday? friday? saturday?).each do |name|
+ assert_equal ruby_19_or_greater, @twz.respond_to?(name)
end
-
- def test_in_time_zone
- silence_warnings do # silence warnings raised by tzinfo gem
- Time.use_zone 'Alaska' do
- assert_equal 'Fri, 31 Dec 1999 15:00:00 AKST -09:00', @t.in_time_zone.inspect
- assert_equal 'Fri, 31 Dec 1999 15:00:00 AKST -09:00', @dt.in_time_zone.inspect
- end
- Time.use_zone 'Hawaii' do
- assert_equal 'Fri, 31 Dec 1999 14:00:00 HST -10:00', @t.in_time_zone.inspect
- assert_equal 'Fri, 31 Dec 1999 14:00:00 HST -10:00', @dt.in_time_zone.inspect
- end
- Time.use_zone nil do
- assert_equal @t, @t.in_time_zone
- assert_equal @dt, @dt.in_time_zone
- end
- end
+ end
+
+ def test_utc_to_local_conversion_with_far_future_datetime
+ silence_warnings do # silence warnings raised by tzinfo gem
+ assert_equal [0,0,19,31,12,2049], ActiveSupport::TimeWithZone.new(DateTime.civil(2050), @time_zone).to_a[0,6]
end
+ end
- def test_in_time_zone_with_argument
- silence_warnings do # silence warnings raised by tzinfo gem
- Time.use_zone 'Eastern Time (US & Canada)' do # Time.zone will not affect #in_time_zone(zone)
- assert_equal 'Fri, 31 Dec 1999 15:00:00 AKST -09:00', @t.in_time_zone('Alaska').inspect
- assert_equal 'Fri, 31 Dec 1999 15:00:00 AKST -09:00', @dt.in_time_zone('Alaska').inspect
- assert_equal 'Fri, 31 Dec 1999 14:00:00 HST -10:00', @t.in_time_zone('Hawaii').inspect
- assert_equal 'Fri, 31 Dec 1999 14:00:00 HST -10:00', @dt.in_time_zone('Hawaii').inspect
- assert_equal 'Sat, 01 Jan 2000 00:00:00 UTC +00:00', @t.in_time_zone('UTC').inspect
- assert_equal 'Sat, 01 Jan 2000 00:00:00 UTC +00:00', @dt.in_time_zone('UTC').inspect
- assert_equal 'Fri, 31 Dec 1999 15:00:00 AKST -09:00', @t.in_time_zone(-9.hours).inspect
- end
- end
+ def test_local_to_utc_conversion_with_far_future_datetime
+ silence_warnings do # silence warnings raised by tzinfo gem
+ assert_equal DateTime.civil(2050).to_f, ActiveSupport::TimeWithZone.new(nil, @time_zone, DateTime.civil(2049,12,31,19)).to_f
end
-
- def test_in_time_zone_with_time_local_instance
- silence_warnings do # silence warnings raised by tzinfo gem
- with_env_tz 'US/Eastern' do
- time = Time.local(1999, 12, 31, 19) # == Time.utc(2000)
- assert_equal 'Fri, 31 Dec 1999 15:00:00 AKST -09:00', time.in_time_zone('Alaska').inspect
- end
+ end
+end
+
+class TimeWithZoneMethodsForTimeAndDateTimeTest < Test::Unit::TestCase
+ def setup
+ @t, @dt = Time.utc(2000), DateTime.civil(2000)
+ end
+
+ def teardown
+ Time.zone = nil
+ end
+
+ def test_in_time_zone
+ silence_warnings do # silence warnings raised by tzinfo gem
+ Time.use_zone 'Alaska' do
+ assert_equal 'Fri, 31 Dec 1999 15:00:00 AKST -09:00', @t.in_time_zone.inspect
+ assert_equal 'Fri, 31 Dec 1999 15:00:00 AKST -09:00', @dt.in_time_zone.inspect
end
- end
-
- def test_use_zone
- Time.zone = 'Alaska'
Time.use_zone 'Hawaii' do
- assert_equal TimeZone['Hawaii'], Time.zone
+ assert_equal 'Fri, 31 Dec 1999 14:00:00 HST -10:00', @t.in_time_zone.inspect
+ assert_equal 'Fri, 31 Dec 1999 14:00:00 HST -10:00', @dt.in_time_zone.inspect
+ end
+ Time.use_zone nil do
+ assert_equal @t, @t.in_time_zone
+ assert_equal @dt, @dt.in_time_zone
end
- assert_equal TimeZone['Alaska'], Time.zone
end
-
- def test_use_zone_with_exception_raised
- Time.zone = 'Alaska'
- assert_raises RuntimeError do
- Time.use_zone('Hawaii') { raise RuntimeError }
+ end
+
+ def test_in_time_zone_with_argument
+ silence_warnings do # silence warnings raised by tzinfo gem
+ Time.use_zone 'Eastern Time (US & Canada)' do # Time.zone will not affect #in_time_zone(zone)
+ assert_equal 'Fri, 31 Dec 1999 15:00:00 AKST -09:00', @t.in_time_zone('Alaska').inspect
+ assert_equal 'Fri, 31 Dec 1999 15:00:00 AKST -09:00', @dt.in_time_zone('Alaska').inspect
+ assert_equal 'Fri, 31 Dec 1999 14:00:00 HST -10:00', @t.in_time_zone('Hawaii').inspect
+ assert_equal 'Fri, 31 Dec 1999 14:00:00 HST -10:00', @dt.in_time_zone('Hawaii').inspect
+ assert_equal 'Sat, 01 Jan 2000 00:00:00 UTC +00:00', @t.in_time_zone('UTC').inspect
+ assert_equal 'Sat, 01 Jan 2000 00:00:00 UTC +00:00', @dt.in_time_zone('UTC').inspect
+ assert_equal 'Fri, 31 Dec 1999 15:00:00 AKST -09:00', @t.in_time_zone(-9.hours).inspect
end
- assert_equal TimeZone['Alaska'], Time.zone
end
-
- def test_time_zone_getter_and_setter
- Time.zone = TimeZone['Alaska']
- assert_equal TimeZone['Alaska'], Time.zone
- Time.zone = 'Alaska'
- assert_equal TimeZone['Alaska'], Time.zone
- Time.zone = -9.hours
- assert_equal TimeZone['Alaska'], Time.zone
- Time.zone = nil
- assert_equal nil, Time.zone
+ end
+
+ def test_in_time_zone_with_time_local_instance
+ silence_warnings do # silence warnings raised by tzinfo gem
+ with_env_tz 'US/Eastern' do
+ time = Time.local(1999, 12, 31, 19) # == Time.utc(2000)
+ assert_equal 'Fri, 31 Dec 1999 15:00:00 AKST -09:00', time.in_time_zone('Alaska').inspect
+ end
end
-
- def test_time_zone_getter_and_setter_with_zone_default
- Time.zone_default = TimeZone['Alaska']
- assert_equal TimeZone['Alaska'], Time.zone
- Time.zone = TimeZone['Hawaii']
+ end
+
+ def test_use_zone
+ Time.zone = 'Alaska'
+ Time.use_zone 'Hawaii' do
assert_equal TimeZone['Hawaii'], Time.zone
- Time.zone = nil
- assert_equal TimeZone['Alaska'], Time.zone
- ensure
- Time.zone_default = nil
end
-
- def test_time_zone_setter_is_thread_safe
- Time.use_zone 'Paris' do
- t1 = Thread.new { Time.zone = 'Alaska' }.join
- t2 = Thread.new { Time.zone = 'Hawaii' }.join
- assert t1.stop?, "Thread 1 did not finish running"
- assert t2.stop?, "Thread 2 did not finish running"
- assert_equal TimeZone['Paris'], Time.zone
- assert_equal TimeZone['Alaska'], t1[:time_zone]
- assert_equal TimeZone['Hawaii'], t2[:time_zone]
- end
+ assert_equal TimeZone['Alaska'], Time.zone
+ end
+
+ def test_use_zone_with_exception_raised
+ Time.zone = 'Alaska'
+ assert_raises RuntimeError do
+ Time.use_zone('Hawaii') { raise RuntimeError }
end
-
- def test_time_zone_setter_with_tzinfo_timezone_object_wraps_in_rails_time_zone
- silence_warnings do # silence warnings raised by tzinfo gem
- tzinfo = TZInfo::Timezone.get('America/New_York')
- Time.zone = tzinfo
- assert_kind_of TimeZone, Time.zone
- assert_equal tzinfo, Time.zone.tzinfo
- assert_equal 'America/New_York', Time.zone.name
- assert_equal(-18_000, Time.zone.utc_offset)
- end
+ assert_equal TimeZone['Alaska'], Time.zone
+ end
+
+ def test_time_zone_getter_and_setter
+ Time.zone = TimeZone['Alaska']
+ assert_equal TimeZone['Alaska'], Time.zone
+ Time.zone = 'Alaska'
+ assert_equal TimeZone['Alaska'], Time.zone
+ Time.zone = -9.hours
+ assert_equal TimeZone['Alaska'], Time.zone
+ Time.zone = nil
+ assert_equal nil, Time.zone
+ end
+
+ def test_time_zone_getter_and_setter_with_zone_default
+ Time.zone_default = TimeZone['Alaska']
+ assert_equal TimeZone['Alaska'], Time.zone
+ Time.zone = TimeZone['Hawaii']
+ assert_equal TimeZone['Hawaii'], Time.zone
+ Time.zone = nil
+ assert_equal TimeZone['Alaska'], Time.zone
+ ensure
+ Time.zone_default = nil
+ end
+
+ def test_time_zone_setter_is_thread_safe
+ Time.use_zone 'Paris' do
+ t1 = Thread.new { Time.zone = 'Alaska' }.join
+ t2 = Thread.new { Time.zone = 'Hawaii' }.join
+ assert t1.stop?, "Thread 1 did not finish running"
+ assert t2.stop?, "Thread 2 did not finish running"
+ assert_equal TimeZone['Paris'], Time.zone
+ assert_equal TimeZone['Alaska'], t1[:time_zone]
+ assert_equal TimeZone['Hawaii'], t2[:time_zone]
end
-
- def test_time_zone_setter_with_tzinfo_timezone_identifier_does_lookup_and_wraps_in_rails_time_zone
- silence_warnings do # silence warnings raised by tzinfo gem
- Time.zone = 'America/New_York'
- assert_kind_of TimeZone, Time.zone
- assert_equal 'America/New_York', Time.zone.tzinfo.name
- assert_equal 'America/New_York', Time.zone.name
- assert_equal(-18_000, Time.zone.utc_offset)
- end
+ end
+
+ def test_time_zone_setter_with_tzinfo_timezone_object_wraps_in_rails_time_zone
+ silence_warnings do # silence warnings raised by tzinfo gem
+ tzinfo = TZInfo::Timezone.get('America/New_York')
+ Time.zone = tzinfo
+ assert_kind_of TimeZone, Time.zone
+ assert_equal tzinfo, Time.zone.tzinfo
+ assert_equal 'America/New_York', Time.zone.name
+ assert_equal(-18_000, Time.zone.utc_offset)
end
-
- def test_time_zone_setter_with_non_identifying_argument_returns_nil
- Time.zone = 'foo'
- assert_equal nil, Time.zone
- Time.zone = -15.hours
- assert_equal nil, Time.zone
+ end
+
+ def test_time_zone_setter_with_tzinfo_timezone_identifier_does_lookup_and_wraps_in_rails_time_zone
+ silence_warnings do # silence warnings raised by tzinfo gem
+ Time.zone = 'America/New_York'
+ assert_kind_of TimeZone, Time.zone
+ assert_equal 'America/New_York', Time.zone.tzinfo.name
+ assert_equal 'America/New_York', Time.zone.name
+ assert_equal(-18_000, Time.zone.utc_offset)
end
-
- protected
- def with_env_tz(new_tz = 'US/Eastern')
- old_tz, ENV['TZ'] = ENV['TZ'], new_tz
- yield
- ensure
- old_tz ? ENV['TZ'] = old_tz : ENV.delete('TZ')
- end
end
+
+ def test_time_zone_setter_with_non_identifying_argument_returns_nil
+ Time.zone = 'foo'
+ assert_equal nil, Time.zone
+ Time.zone = -15.hours
+ assert_equal nil, Time.zone
+ end
+
+ protected
+ def with_env_tz(new_tz = 'US/Eastern')
+ old_tz, ENV['TZ'] = ENV['TZ'], new_tz
+ yield
+ ensure
+ old_tz ? ENV['TZ'] = old_tz : ENV.delete('TZ')
+ end
end
diff --git a/activesupport/test/time_zone_test.rb b/activesupport/test/time_zone_test.rb
index a87cbadc1c..2f06c347a1 100644
--- a/activesupport/test/time_zone_test.rb
+++ b/activesupport/test/time_zone_test.rb
@@ -1,205 +1,202 @@
require 'abstract_unit'
class TimeZoneTest < Test::Unit::TestCase
-
- uses_tzinfo 'TestTimeZoneCalculations' do
- def test_utc_to_local
- silence_warnings do # silence warnings raised by tzinfo gem
- zone = TimeZone['Eastern Time (US & Canada)']
- assert_equal Time.utc(1999, 12, 31, 19), zone.utc_to_local(Time.utc(2000, 1)) # standard offset -0500
- assert_equal Time.utc(2000, 6, 30, 20), zone.utc_to_local(Time.utc(2000, 7)) # dst offset -0400
- end
+ def test_utc_to_local
+ silence_warnings do # silence warnings raised by tzinfo gem
+ zone = TimeZone['Eastern Time (US & Canada)']
+ assert_equal Time.utc(1999, 12, 31, 19), zone.utc_to_local(Time.utc(2000, 1)) # standard offset -0500
+ assert_equal Time.utc(2000, 6, 30, 20), zone.utc_to_local(Time.utc(2000, 7)) # dst offset -0400
end
+ end
+
+ def test_local_to_utc
+ silence_warnings do # silence warnings raised by tzinfo gem
+ zone = TimeZone['Eastern Time (US & Canada)']
+ assert_equal Time.utc(2000, 1, 1, 5), zone.local_to_utc(Time.utc(2000, 1)) # standard offset -0500
+ assert_equal Time.utc(2000, 7, 1, 4), zone.local_to_utc(Time.utc(2000, 7)) # dst offset -0400
+ end
+ end
- def test_local_to_utc
- silence_warnings do # silence warnings raised by tzinfo gem
- zone = TimeZone['Eastern Time (US & Canada)']
- assert_equal Time.utc(2000, 1, 1, 5), zone.local_to_utc(Time.utc(2000, 1)) # standard offset -0500
- assert_equal Time.utc(2000, 7, 1, 4), zone.local_to_utc(Time.utc(2000, 7)) # dst offset -0400
- end
+ def test_period_for_local
+ silence_warnings do # silence warnings raised by tzinfo gem
+ zone = TimeZone['Eastern Time (US & Canada)']
+ assert_instance_of TZInfo::TimezonePeriod, zone.period_for_local(Time.utc(2000))
end
-
- def test_period_for_local
+ end
+
+ TimeZone::MAPPING.keys.each do |name|
+ define_method("test_map_#{name.downcase.gsub(/[^a-z]/, '_')}_to_tzinfo") do
silence_warnings do # silence warnings raised by tzinfo gem
- zone = TimeZone['Eastern Time (US & Canada)']
- assert_instance_of TZInfo::TimezonePeriod, zone.period_for_local(Time.utc(2000))
- end
- end
-
- TimeZone::MAPPING.keys.each do |name|
- define_method("test_map_#{name.downcase.gsub(/[^a-z]/, '_')}_to_tzinfo") do
- silence_warnings do # silence warnings raised by tzinfo gem
- zone = TimeZone[name]
- assert zone.tzinfo.respond_to?(:period_for_local)
- end
+ zone = TimeZone[name]
+ assert zone.tzinfo.respond_to?(:period_for_local)
end
end
+ end
- def test_from_integer_to_map
- assert_instance_of TimeZone, TimeZone[-28800] # PST
- end
+ def test_from_integer_to_map
+ assert_instance_of TimeZone, TimeZone[-28800] # PST
+ end
- def test_from_duration_to_map
- assert_instance_of TimeZone, TimeZone[-480.minutes] # PST
- end
+ def test_from_duration_to_map
+ assert_instance_of TimeZone, TimeZone[-480.minutes] # PST
+ end
- TimeZone.all.each do |zone|
- name = zone.name.downcase.gsub(/[^a-z]/, '_')
- define_method("test_from_#{name}_to_map") do
- silence_warnings do # silence warnings raised by tzinfo gem
- assert_instance_of TimeZone, TimeZone[zone.name]
- end
+ TimeZone.all.each do |zone|
+ name = zone.name.downcase.gsub(/[^a-z]/, '_')
+ define_method("test_from_#{name}_to_map") do
+ silence_warnings do # silence warnings raised by tzinfo gem
+ assert_instance_of TimeZone, TimeZone[zone.name]
end
+ end
- define_method("test_utc_offset_for_#{name}") do
- silence_warnings do # silence warnings raised by tzinfo gem
- period = zone.tzinfo.period_for_utc(Time.utc(2006,1,1,0,0,0))
- assert_equal period.utc_offset, zone.utc_offset
- end
+ define_method("test_utc_offset_for_#{name}") do
+ silence_warnings do # silence warnings raised by tzinfo gem
+ period = zone.tzinfo.period_for_utc(Time.utc(2006,1,1,0,0,0))
+ assert_equal period.utc_offset, zone.utc_offset
end
end
+ end
- uses_mocha 'TestTimeZoneNowAndToday' do
- def test_now
- with_env_tz 'US/Eastern' do
- Time.stubs(:now).returns(Time.local(2000))
- zone = TimeZone['Eastern Time (US & Canada)']
- assert_instance_of ActiveSupport::TimeWithZone, zone.now
- assert_equal Time.utc(2000,1,1,5), zone.now.utc
- assert_equal Time.utc(2000), zone.now.time
- assert_equal zone, zone.now.time_zone
- end
- end
-
- def test_now_enforces_spring_dst_rules
- with_env_tz 'US/Eastern' do
- Time.stubs(:now).returns(Time.local(2006,4,2,2)) # 2AM springs forward to 3AM
- zone = TimeZone['Eastern Time (US & Canada)']
- assert_equal Time.utc(2006,4,2,3), zone.now.time
- assert_equal true, zone.now.dst?
- end
- end
-
- def test_now_enforces_fall_dst_rules
- with_env_tz 'US/Eastern' do
- Time.stubs(:now).returns(Time.at(1162098000)) # equivalent to 1AM DST
- zone = TimeZone['Eastern Time (US & Canada)']
- assert_equal Time.utc(2006,10,29,1), zone.now.time
- assert_equal true, zone.now.dst?
- end
+ uses_mocha 'TestTimeZoneNowAndToday' do
+ def test_now
+ with_env_tz 'US/Eastern' do
+ Time.stubs(:now).returns(Time.local(2000))
+ zone = TimeZone['Eastern Time (US & Canada)']
+ assert_instance_of ActiveSupport::TimeWithZone, zone.now
+ assert_equal Time.utc(2000,1,1,5), zone.now.utc
+ assert_equal Time.utc(2000), zone.now.time
+ assert_equal zone, zone.now.time_zone
end
+ end
- def test_today
- Time.stubs(:now).returns(Time.utc(2000, 1, 1, 4, 59, 59)) # 1 sec before midnight Jan 1 EST
- assert_equal Date.new(1999, 12, 31), TimeZone['Eastern Time (US & Canada)'].today
- Time.stubs(:now).returns(Time.utc(2000, 1, 1, 5)) # midnight Jan 1 EST
- assert_equal Date.new(2000, 1, 1), TimeZone['Eastern Time (US & Canada)'].today
- Time.stubs(:now).returns(Time.utc(2000, 1, 2, 4, 59, 59)) # 1 sec before midnight Jan 2 EST
- assert_equal Date.new(2000, 1, 1), TimeZone['Eastern Time (US & Canada)'].today
- Time.stubs(:now).returns(Time.utc(2000, 1, 2, 5)) # midnight Jan 2 EST
- assert_equal Date.new(2000, 1, 2), TimeZone['Eastern Time (US & Canada)'].today
+ def test_now_enforces_spring_dst_rules
+ with_env_tz 'US/Eastern' do
+ Time.stubs(:now).returns(Time.local(2006,4,2,2)) # 2AM springs forward to 3AM
+ zone = TimeZone['Eastern Time (US & Canada)']
+ assert_equal Time.utc(2006,4,2,3), zone.now.time
+ assert_equal true, zone.now.dst?
end
end
- def test_local
- silence_warnings do # silence warnings raised by tzinfo gem
- time = TimeZone["Hawaii"].local(2007, 2, 5, 15, 30, 45)
- assert_equal Time.utc(2007, 2, 5, 15, 30, 45), time.time
- assert_equal TimeZone["Hawaii"], time.time_zone
+ def test_now_enforces_fall_dst_rules
+ with_env_tz 'US/Eastern' do
+ Time.stubs(:now).returns(Time.at(1162098000)) # equivalent to 1AM DST
+ zone = TimeZone['Eastern Time (US & Canada)']
+ assert_equal Time.utc(2006,10,29,1), zone.now.time
+ assert_equal true, zone.now.dst?
end
end
-
- def test_local_with_old_date
- silence_warnings do # silence warnings raised by tzinfo gem
- time = TimeZone["Hawaii"].local(1850, 2, 5, 15, 30, 45)
- assert_equal [45,30,15,5,2,1850], time.to_a[0,6]
- assert_equal TimeZone["Hawaii"], time.time_zone
- end
+
+ def test_today
+ Time.stubs(:now).returns(Time.utc(2000, 1, 1, 4, 59, 59)) # 1 sec before midnight Jan 1 EST
+ assert_equal Date.new(1999, 12, 31), TimeZone['Eastern Time (US & Canada)'].today
+ Time.stubs(:now).returns(Time.utc(2000, 1, 1, 5)) # midnight Jan 1 EST
+ assert_equal Date.new(2000, 1, 1), TimeZone['Eastern Time (US & Canada)'].today
+ Time.stubs(:now).returns(Time.utc(2000, 1, 2, 4, 59, 59)) # 1 sec before midnight Jan 2 EST
+ assert_equal Date.new(2000, 1, 1), TimeZone['Eastern Time (US & Canada)'].today
+ Time.stubs(:now).returns(Time.utc(2000, 1, 2, 5)) # midnight Jan 2 EST
+ assert_equal Date.new(2000, 1, 2), TimeZone['Eastern Time (US & Canada)'].today
end
-
- def test_local_enforces_spring_dst_rules
- zone = TimeZone['Eastern Time (US & Canada)']
- twz = zone.local(2006,4,2,1,59,59) # 1 second before DST start
- assert_equal Time.utc(2006,4,2,1,59,59), twz.time
- assert_equal Time.utc(2006,4,2,6,59,59), twz.utc
- assert_equal false, twz.dst?
- assert_equal 'EST', twz.zone
- twz2 = zone.local(2006,4,2,2) # 2AM does not exist because at 2AM, time springs forward to 3AM
- assert_equal Time.utc(2006,4,2,3), twz2.time # twz is created for 3AM
- assert_equal Time.utc(2006,4,2,7), twz2.utc
- assert_equal true, twz2.dst?
- assert_equal 'EDT', twz2.zone
- twz3 = zone.local(2006,4,2,2,30) # 2:30AM does not exist because at 2AM, time springs forward to 3AM
- assert_equal Time.utc(2006,4,2,3,30), twz3.time # twz is created for 3:30AM
- assert_equal Time.utc(2006,4,2,7,30), twz3.utc
- assert_equal true, twz3.dst?
- assert_equal 'EDT', twz3.zone
+ end
+
+ def test_local
+ silence_warnings do # silence warnings raised by tzinfo gem
+ time = TimeZone["Hawaii"].local(2007, 2, 5, 15, 30, 45)
+ assert_equal Time.utc(2007, 2, 5, 15, 30, 45), time.time
+ assert_equal TimeZone["Hawaii"], time.time_zone
end
+ end
- def test_local_enforces_fall_dst_rules
- # 1AM during fall DST transition is ambiguous, it could be either DST or non-DST 1AM
- # Mirroring Time.local behavior, this method selects the DST time
- zone = TimeZone['Eastern Time (US & Canada)']
- twz = zone.local(2006,10,29,1)
- assert_equal Time.utc(2006,10,29,1), twz.time
- assert_equal Time.utc(2006,10,29,5), twz.utc
- assert_equal true, twz.dst?
- assert_equal 'EDT', twz.zone
+ def test_local_with_old_date
+ silence_warnings do # silence warnings raised by tzinfo gem
+ time = TimeZone["Hawaii"].local(1850, 2, 5, 15, 30, 45)
+ assert_equal [45,30,15,5,2,1850], time.to_a[0,6]
+ assert_equal TimeZone["Hawaii"], time.time_zone
end
+ end
- def test_at
- zone = TimeZone['Eastern Time (US & Canada)']
- secs = 946684800.0
- twz = zone.at(secs)
- assert_equal Time.utc(1999,12,31,19), twz.time
- assert_equal Time.utc(2000), twz.utc
- assert_equal zone, twz.time_zone
- assert_equal secs, twz.to_f
- end
+ def test_local_enforces_spring_dst_rules
+ zone = TimeZone['Eastern Time (US & Canada)']
+ twz = zone.local(2006,4,2,1,59,59) # 1 second before DST start
+ assert_equal Time.utc(2006,4,2,1,59,59), twz.time
+ assert_equal Time.utc(2006,4,2,6,59,59), twz.utc
+ assert_equal false, twz.dst?
+ assert_equal 'EST', twz.zone
+ twz2 = zone.local(2006,4,2,2) # 2AM does not exist because at 2AM, time springs forward to 3AM
+ assert_equal Time.utc(2006,4,2,3), twz2.time # twz is created for 3AM
+ assert_equal Time.utc(2006,4,2,7), twz2.utc
+ assert_equal true, twz2.dst?
+ assert_equal 'EDT', twz2.zone
+ twz3 = zone.local(2006,4,2,2,30) # 2:30AM does not exist because at 2AM, time springs forward to 3AM
+ assert_equal Time.utc(2006,4,2,3,30), twz3.time # twz is created for 3:30AM
+ assert_equal Time.utc(2006,4,2,7,30), twz3.utc
+ assert_equal true, twz3.dst?
+ assert_equal 'EDT', twz3.zone
+ end
+
+ def test_local_enforces_fall_dst_rules
+ # 1AM during fall DST transition is ambiguous, it could be either DST or non-DST 1AM
+ # Mirroring Time.local behavior, this method selects the DST time
+ zone = TimeZone['Eastern Time (US & Canada)']
+ twz = zone.local(2006,10,29,1)
+ assert_equal Time.utc(2006,10,29,1), twz.time
+ assert_equal Time.utc(2006,10,29,5), twz.utc
+ assert_equal true, twz.dst?
+ assert_equal 'EDT', twz.zone
+ end
- def test_at_with_old_date
+ def test_at
+ zone = TimeZone['Eastern Time (US & Canada)']
+ secs = 946684800.0
+ twz = zone.at(secs)
+ assert_equal Time.utc(1999,12,31,19), twz.time
+ assert_equal Time.utc(2000), twz.utc
+ assert_equal zone, twz.time_zone
+ assert_equal secs, twz.to_f
+ end
+
+ def test_at_with_old_date
+ zone = TimeZone['Eastern Time (US & Canada)']
+ secs = DateTime.civil(1850).to_f
+ twz = zone.at(secs)
+ assert_equal [1850, 1, 1, 0], [twz.utc.year, twz.utc.mon, twz.utc.day, twz.utc.hour]
+ assert_equal zone, twz.time_zone
+ assert_equal secs, twz.to_f
+ end
+
+ def test_parse
+ zone = TimeZone['Eastern Time (US & Canada)']
+ twz = zone.parse('1999-12-31 19:00:00')
+ assert_equal Time.utc(1999,12,31,19), twz.time
+ assert_equal Time.utc(2000), twz.utc
+ assert_equal zone, twz.time_zone
+ end
+
+ def test_parse_with_old_date
+ silence_warnings do # silence warnings raised by tzinfo gem
zone = TimeZone['Eastern Time (US & Canada)']
- secs = DateTime.civil(1850).to_f
- twz = zone.at(secs)
- assert_equal [1850, 1, 1, 0], [twz.utc.year, twz.utc.mon, twz.utc.day, twz.utc.hour]
+ twz = zone.parse('1850-12-31 19:00:00')
+ assert_equal [0,0,19,31,12,1850], twz.to_a[0,6]
assert_equal zone, twz.time_zone
- assert_equal secs, twz.to_f
end
+ end
- def test_parse
+ uses_mocha 'TestParseWithIncompleteDate' do
+ def test_parse_with_incomplete_date
zone = TimeZone['Eastern Time (US & Canada)']
- twz = zone.parse('1999-12-31 19:00:00')
+ zone.stubs(:now).returns zone.local(1999,12,31)
+ twz = zone.parse('19:00:00')
assert_equal Time.utc(1999,12,31,19), twz.time
- assert_equal Time.utc(2000), twz.utc
- assert_equal zone, twz.time_zone
- end
-
- def test_parse_with_old_date
- silence_warnings do # silence warnings raised by tzinfo gem
- zone = TimeZone['Eastern Time (US & Canada)']
- twz = zone.parse('1850-12-31 19:00:00')
- assert_equal [0,0,19,31,12,1850], twz.to_a[0,6]
- assert_equal zone, twz.time_zone
- end
- end
-
- uses_mocha 'TestParseWithIncompleteDate' do
- def test_parse_with_incomplete_date
- zone = TimeZone['Eastern Time (US & Canada)']
- zone.stubs(:now).returns zone.local(1999,12,31)
- twz = zone.parse('19:00:00')
- assert_equal Time.utc(1999,12,31,19), twz.time
- end
end
-
- def test_utc_offset_lazy_loaded_from_tzinfo_when_not_passed_in_to_initialize
- silence_warnings do # silence warnings raised by tzinfo gem
- tzinfo = TZInfo::Timezone.get('America/New_York')
- zone = TimeZone.create(tzinfo.name, nil, tzinfo)
- assert_equal nil, zone.instance_variable_get('@utc_offset')
- assert_equal(-18_000, zone.utc_offset)
- end
+ end
+
+ def test_utc_offset_lazy_loaded_from_tzinfo_when_not_passed_in_to_initialize
+ silence_warnings do # silence warnings raised by tzinfo gem
+ tzinfo = TZInfo::Timezone.get('America/New_York')
+ zone = TimeZone.create(tzinfo.name, nil, tzinfo)
+ assert_equal nil, zone.instance_variable_get('@utc_offset')
+ assert_equal(-18_000, zone.utc_offset)
end
end