require File.join(File.dirname(__FILE__), *%w[.. .. .. spec_helper]) def command_xml <<-XML XML end describe Blather::Stanza::Iq::Command do it 'registers itself' do Blather::XMPPNode.class_from_registration(:command, 'http://jabber.org/protocol/commands').must_equal Blather::Stanza::Iq::Command end it 'must be importable' do Blather::XMPPNode.import(parse_stanza(command_xml).root).must_be_instance_of Blather::Stanza::Iq::Command end it 'ensures a command node is present on create' do c = Blather::Stanza::Iq::Command.new c.xpath('xmlns:command', :xmlns => Blather::Stanza::Iq::Command.registered_ns).wont_be_empty end it 'ensures a command node exists when calling #command' do c = Blather::Stanza::Iq::Command.new c.remove_children :command c.xpath('ns:command', :ns => Blather::Stanza::Iq::Command.registered_ns).must_be_empty c.command.wont_be_nil c.xpath('ns:command', :ns => Blather::Stanza::Iq::Command.registered_ns).wont_be_empty end Blather::Stanza::Iq::Command::VALID_ACTIONS.each do |valid_action| it "provides a helper (#{valid_action}?) for action #{valid_action}" do Blather::Stanza::Iq::Command.new.must_respond_to :"#{valid_action}?" end end Blather::Stanza::Iq::Command::VALID_STATUS.each do |valid_status| it "provides a helper (#{valid_status}?) for status #{valid_status}" do Blather::Stanza::Iq::Command.new.must_respond_to :"#{valid_status}?" end end Blather::Stanza::Iq::Command::VALID_NOTE_TYPES.each do |valid_note_type| it "provides a helper (#{valid_note_type}?) for note_type #{valid_note_type}" do Blather::Stanza::Iq::Command.new.must_respond_to :"#{valid_note_type}?" end end [:cancel, :execute, :complete, :next, :prev].each do |action| it "action can be set as \"#{action}\"" do c = Blather::Stanza::Iq::Command.new nil, nil, action c.action.must_equal action end end [:get, :set, :result, :error].each do |type| it "can be set as \"#{type}\"" do c = Blather::Stanza::Iq::Command.new type c.type.must_equal type end end it 'sets type to "result" on reply' do c = Blather::Stanza::Iq::Command.new c.type.must_equal :set reply = c.reply.type.must_equal :result end it 'sets type to "result" on reply!' do c = Blather::Stanza::Iq::Command.new c.type.must_equal :set c.reply! c.type.must_equal :result end # TODO: Deal with #reply/#reply! better? it 'can be registered under a namespace' do class CommandNs < Blather::Stanza::Iq::Command; register :command_ns, nil, 'command:ns'; end Blather::XMPPNode.class_from_registration(:command, 'command:ns').must_equal CommandNs c_ns = CommandNs.new c_ns.xpath('command').must_be_empty c_ns.xpath('ns:command', :ns => 'command:ns').size.must_equal 1 c_ns.command c_ns.command c_ns.xpath('ns:command', :ns => 'command:ns').size.must_equal 1 end it 'is constructed properly' do n = Blather::Stanza::Iq::Command.new :set, "node", :execute n.to = 'to@jid.com' n.find("/iq[@to='to@jid.com' and @type='set' and @id='#{n.id}']/ns:command[@node='node' and @action='execute']", :ns => Blather::Stanza::Iq::Command.registered_ns).wont_be_empty end it 'has an action attribute' do n = Blather::Stanza::Iq::Command.new n.action.must_equal :execute n.action = :cancel n.action.must_equal :cancel end it 'has a status attribute' do n = Blather::Stanza::Iq::Command.new n.status.must_equal nil n.status = :executing n.status.must_equal :executing end it 'has a sessionid attribute' do n = Blather::Stanza::Iq::Command.new n.sessionid.wont_be_nil n.sessionid = "somerandomstring" n.sessionid.must_equal Digest::SHA1.hexdigest("somerandomstring") end it 'has an allowed_actions attribute' do n = Blather::Stanza::Iq::Command.new n.allowed_actions.must_equal [:execute] n.add_allowed_actions [:prev, :next] n.allowed_actions.must_equal [:execute, :prev, :next] n.remove_allowed_actions :prev n.allowed_actions.must_equal [:execute, :next] end it 'has a note_type attribute' do n = Blather::Stanza::Iq::Command.new n.note_type.must_equal nil n.note_type = :info n.note_type.must_equal :info end it 'has a note_text attribute' do n = Blather::Stanza::Iq::Command.new n.note_text.must_equal nil n.note_text = "Some text" n.note_text.must_equal "Some text" end it 'makes a form child available' do n = Blather::XMPPNode.import(parse_stanza(command_xml).root) n.form.fields.size.must_equal 1 n.form.fields.map { |f| f.class }.uniq.must_equal [Blather::Stanza::X::Field] n.form.must_be_instance_of Blather::Stanza::X end end