Sha256: c60f28b3502c485040898de144cc2d6e2cfb1e73a62eb69a5db4f73eb62c6931

Contents?: true

Size: 1.9 KB

Versions: 6

Compression:

Stored size: 1.9 KB

Contents

#!/usr/bin/ruby

$:.unshift File::dirname(__FILE__) + '/../../lib'

require 'test/unit'
require File::dirname(__FILE__) + '/../lib/clienttester'

require 'xmpp4r/entity_time/responder'
include Jabber

class EntityTime::ResponderTest < Test::Unit::TestCase
  include ClientTester

  def a_utc_time
    Time.utc(2000,"jan",1,20,15,1) # xmlschema = "2000-01-01T20:15:01Z"
  end

  def test_entity_time_iq
    el_time = EntityTime::IqTime.new(a_utc_time)

    assert_equal('time', el_time.name, "element has wrong name")
    assert_equal('urn:xmpp:time', el_time.namespace, "element has wrong namespace")

    assert(el_time.elements["utc"], "element does not have a utc child")
    assert_equal('2000-01-01T20:15:01Z', el_time.elements["utc"].text, "element/utc has the wrong text")

    assert(el_time.elements["tzo"], "element does not have a tzo child")
    assert_equal("+00:00", el_time.elements["tzo"].text, "element/tzo has the wrong time zone offset")
  end

=begin
   http://xmpp.org/extensions/xep-0202.html
   <iq type='get'
       from='romeo@montague.net/orchard'
       to='juliet@capulet.com/balcony'
       id='time_1'>
     <time xmlns='urn:xmpp:time'/>
   </iq>
=end
  def test_query
    EntityTime::Responder.new(@client)

    iq = Iq.new(:get)
    t = REXML::Element.new('time')
    t.add_namespace('urn:xmpp:time')
    iq.add_element(t)

    reply = @server.send_with_id(iq)

    assert_equal(:result, reply.type)
    assert_equal('time', reply[0].name)
    assert_equal('urn:xmpp:time', reply[0].namespace)

    assert(reply[0].elements["utc"].has_text?, "element must have a utc time (actual time should be check here)")

    tmp = Time.now
    local_offset = Time.now.utc_offset
    hour_offset = local_offset / 3600
    min_offset = local_offset % 60
    offset = "%+03d:%02d"%[hour_offset, min_offset]

    assert_equal(offset, reply[0].elements["tzo"].text, "element should has an incorrect time zone offset")
  end

end

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
xmpp4r-0.5.6 test/entity_time/tc_responder.rb
xmpp4r-0.5.5 test/entity_time/tc_responder.rb
mad-p-xmpp4r-0.6.3 test/entity_time/tc_responder.rb
mad-p-xmpp4r-0.6.2 test/entity_time/tc_responder.rb
mad-p-xmpp4r-0.6.1 test/entity_time/tc_responder.rb
mad-p-xmpp4r-0.6.0 test/entity_time/tc_responder.rb