1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
$:.unshift File.join(File.dirname(__FILE__), "..", "lib")
require 'test/unit'
require 'tzinfo/timezone'
include TZInfo
class TCTimezoneProxy < Test::Unit::TestCase
def test_not_exist
proxy = TimezoneProxy.new('Nothing/Special')
assert_equal('Nothing/Special', proxy.identifier)
assert_raises(InvalidTimezoneIdentifier) { proxy.now }
assert_raises(InvalidTimezoneIdentifier) { proxy.current_period }
assert_raises(InvalidTimezoneIdentifier) { proxy.current_period_and_time }
assert_raises(InvalidTimezoneIdentifier) { proxy.current_time_and_period }
assert_raises(InvalidTimezoneIdentifier) { proxy.utc_to_local(DateTime.new(2006,1,1,0,0,0)) }
assert_raises(InvalidTimezoneIdentifier) { proxy.local_to_utc(DateTime.new(2006,1,1,0,0,0)) }
assert_raises(InvalidTimezoneIdentifier) { proxy.period_for_utc(DateTime.new(2006,1,1,0,0,0)) }
assert_raises(InvalidTimezoneIdentifier) { proxy.period_for_local(DateTime.new(2006,1,1,0,0,0)) }
end
def test_valid
proxy = TimezoneProxy.new('Europe/London')
assert_equal('Europe/London', proxy.identifier)
# Test nothing raised
proxy.now
proxy.current_period
proxy.current_period_and_time
proxy.current_time_and_period
real = Timezone.get('Europe/London')
assert_equal(real.utc_to_local(DateTime.new(2005,8,1,0,0,0)), proxy.utc_to_local(DateTime.new(2005,8,1,0,0,0)))
assert_equal(real.local_to_utc(DateTime.new(2005,8,1,0,0,0)), proxy.local_to_utc(DateTime.new(2005,8,1,0,0,0)))
assert_equal(real.period_for_utc(DateTime.new(2005,8,1,0,0,0)), proxy.period_for_utc(DateTime.new(2005,8,1,0,0,0)))
assert_equal(real.period_for_local(DateTime.new(2005,8,1,0,0,0)), proxy.period_for_local(DateTime.new(2005,8,1,0,0,0)))
assert_equal(real.identifier, proxy.identifier)
assert_equal(real.name, proxy.name)
assert_equal(real.to_s, proxy.to_s)
assert_equal(real.friendly_identifier(true), proxy.friendly_identifier(true))
assert_equal(real.friendly_identifier(false), proxy.friendly_identifier(false))
assert_equal(real.friendly_identifier, proxy.friendly_identifier)
assert_equal('Europe/London', proxy.identifier)
assert(real == proxy)
assert(proxy == real)
assert_equal(0, real <=> proxy)
assert_equal(0, proxy <=> real)
end
def test_equals
assert_equal(true, TimezoneProxy.new('Europe/London') == TimezoneProxy.new('Europe/London'))
assert_equal(false, TimezoneProxy.new('Europe/London') == TimezoneProxy.new('Europe/Paris'))
assert(!(TimezoneProxy.new('Europe/London') == Object.new))
end
def test_compare
assert_equal(0, TimezoneProxy.new('Europe/London') <=> TimezoneProxy.new('Europe/London'))
assert_equal(0, Timezone.get('Europe/London') <=> TimezoneProxy.new('Europe/London'))
assert_equal(0, TimezoneProxy.new('Europe/London') <=> Timezone.get('Europe/London'))
assert_equal(-1, TimezoneProxy.new('Europe/London') <=> TimezoneProxy.new('Europe/Paris'))
assert_equal(-1, Timezone.get('Europe/London') <=> TimezoneProxy.new('Europe/Paris'))
assert_equal(-1, TimezoneProxy.new('Europe/London') <=> Timezone.get('Europe/Paris'))
assert_equal(1, TimezoneProxy.new('Europe/Paris') <=> TimezoneProxy.new('Europe/London'))
assert_equal(1, Timezone.get('Europe/Paris') <=> TimezoneProxy.new('Europe/London'))
assert_equal(1, TimezoneProxy.new('Europe/Paris') <=> Timezone.get('Europe/London'))
assert_equal(-1, TimezoneProxy.new('America/New_York') <=> TimezoneProxy.new('Europe/Paris'))
assert_equal(-1, Timezone.get('America/New_York') <=> TimezoneProxy.new('Europe/Paris'))
assert_equal(-1, TimezoneProxy.new('America/New_York') <=> Timezone.get('Europe/Paris'))
assert_equal(1, TimezoneProxy.new('Europe/Paris') <=> TimezoneProxy.new('America/New_York'))
assert_equal(1, Timezone.get('Europe/Paris') <=> TimezoneProxy.new('America/New_York'))
assert_equal(1, TimezoneProxy.new('Europe/Paris') <=> Timezone.get('America/New_York'))
end
def test_kind
assert_kind_of(Timezone, TimezoneProxy.new('America/New_York'))
end
def test_marshal
tp = TimezoneProxy.new('Europe/London')
tp2 = Marshal.load(Marshal.dump(tp))
assert_kind_of(TimezoneProxy, tp2)
assert_equal('Europe/London', tp2.identifier)
end
end
|