Sha256: b06b94f2571e6a054cad34c260932e16e9c86539643645d23a2705d4c775beef

Contents?: true

Size: 1.28 KB

Versions: 9

Compression:

Stored size: 1.28 KB

Contents

#!/usr/bin/ruby

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

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

require 'xmpp4r'
require 'xmpp4r/vcard/helper/vcard'
include Jabber

class Vcard::HelperTest < Test::Unit::TestCase
  include ClientTester

  def test_create
    h = Vcard::Helper.new(@client)
    assert_kind_of(Vcard::Helper, h)
  end

  def test_callback
    # @server.on_exception{|*e| p e}
    class << @client
      remove_method(:jid)
      def jid
        JID.new('b@b.com/b')
      end
    end

    state { |iq|
      assert_kind_of(Iq, iq)
      assert_equal(JID.new('a@b.com'), iq.to)
      assert_equal(:get, iq.type)
      assert_nil(iq.queryns)
      assert_kind_of(Vcard::IqVcard, iq.vcard)
      children = 0
      iq.vcard.each_child { children += 1 }
      assert_equal(0, children)

      send("<iq type='result' from='#{iq.to}' to='#{iq.from}' id='#{iq.id}'><vCard xmlns='vcard-temp'><NICKNAME>Mr. B</NICKNAME><PHOTO><TYPE>image/png</TYPE><BINVAL>====</BINVAL></PHOTO></vCard></iq>")
    }

    res = Vcard::Helper::get(@client, 'a@b.com')
    wait_state
    assert_kind_of(Vcard::IqVcard, res)
    assert_equal('Mr. B', res['NICKNAME'])
    assert_equal('image/png', res['PHOTO/TYPE'])
    assert_equal('====', res['PHOTO/BINVAL'])
  end
end

Version data entries

9 entries across 9 versions & 4 rubygems

Version Path
brontes3d-xmpp4r-0.4 test/vcard/tc_helper.rb
ln-xmpp4r-0.5 test/vcard/tc_helper.rb
xmpp4r-0.5.6 test/vcard/tc_helper.rb
xmpp4r-0.5.5 test/vcard/tc_helper.rb
mad-p-xmpp4r-0.6.3 test/vcard/tc_helper.rb
mad-p-xmpp4r-0.6.2 test/vcard/tc_helper.rb
mad-p-xmpp4r-0.6.1 test/vcard/tc_helper.rb
mad-p-xmpp4r-0.6.0 test/vcard/tc_helper.rb
xmpp4r-0.5 test/vcard/tc_helper.rb