mack-notifier 0.8.1 → 0.8.2
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/gems.rb +13 -0
- data/lib/gems/tmail-1.2.3.1/ext/Makefile +20 -0
- data/lib/gems/tmail-1.2.3.1/ext/tmailscanner/tmail/MANIFEST +4 -0
- data/lib/gems/tmail-1.2.3.1/ext/tmailscanner/tmail/depend +1 -0
- data/lib/gems/tmail-1.2.3.1/ext/tmailscanner/tmail/extconf.rb +33 -0
- data/lib/gems/tmail-1.2.3.1/ext/tmailscanner/tmail/tmailscanner.c +583 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail.rb +5 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/Makefile +18 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/address.rb +426 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/attachments.rb +46 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/base64.rb +46 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/compat.rb +41 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/config.rb +67 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/core_extensions.rb +63 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/encode.rb +581 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/header.rb +960 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/index.rb +9 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/interface.rb +1125 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/loader.rb +3 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/mail.rb +578 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/mailbox.rb +495 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/main.rb +6 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/mbox.rb +3 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/net.rb +248 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/obsolete.rb +132 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/parser.rb +1476 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/parser.y +381 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/port.rb +379 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/quoting.rb +118 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/require_arch.rb +58 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/scanner.rb +49 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/scanner_r.rb +261 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/stringio.rb +280 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/utils.rb +337 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/version.rb +39 -0
- data/lib/gems/tmail-1.2.3.1/meta/MANIFEST +128 -0
- data/lib/gems/tmail-1.2.3.1/meta/VERSION +1 -0
- data/lib/gems/tmail-1.2.3.1/meta/project.yaml +30 -0
- data/lib/gems/tmail-1.2.3.1/meta/unixname +1 -0
- data/lib/gems/validatable-1.6.7/README +118 -0
- data/lib/gems/validatable-1.6.7/lib/child_validation.rb +15 -0
- data/lib/gems/validatable-1.6.7/lib/errors.rb +74 -0
- data/lib/gems/validatable-1.6.7/lib/included_validation.rb +9 -0
- data/lib/gems/validatable-1.6.7/lib/macros.rb +283 -0
- data/lib/gems/validatable-1.6.7/lib/object_extension.rb +21 -0
- data/lib/gems/validatable-1.6.7/lib/requireable.rb +26 -0
- data/lib/gems/validatable-1.6.7/lib/understandable.rb +31 -0
- data/lib/gems/validatable-1.6.7/lib/validatable.rb +19 -0
- data/lib/gems/validatable-1.6.7/lib/validatable_class_methods.rb +85 -0
- data/lib/gems/validatable-1.6.7/lib/validatable_instance_methods.rb +106 -0
- data/lib/gems/validatable-1.6.7/lib/validations/validates_acceptance_of.rb +11 -0
- data/lib/gems/validatable-1.6.7/lib/validations/validates_confirmation_of.rb +15 -0
- data/lib/gems/validatable-1.6.7/lib/validations/validates_each.rb +14 -0
- data/lib/gems/validatable-1.6.7/lib/validations/validates_format_of.rb +13 -0
- data/lib/gems/validatable-1.6.7/lib/validations/validates_length_of.rb +25 -0
- data/lib/gems/validatable-1.6.7/lib/validations/validates_numericality_of.rb +16 -0
- data/lib/gems/validatable-1.6.7/lib/validations/validates_presence_of.rb +13 -0
- data/lib/gems/validatable-1.6.7/lib/validations/validates_true_for.rb +13 -0
- data/lib/gems/validatable-1.6.7/lib/validations/validation_base.rb +88 -0
- data/lib/gems/validatable-1.6.7/rakefile.rb +50 -0
- data/lib/gems/validatable-1.6.7/test/all_tests.rb +1 -0
- data/lib/gems/validatable-1.6.7/test/functional/validatable_test.rb +437 -0
- data/lib/gems/validatable-1.6.7/test/functional/validates_acceptance_of_test.rb +16 -0
- data/lib/gems/validatable-1.6.7/test/functional/validates_confirmation_of_test.rb +56 -0
- data/lib/gems/validatable-1.6.7/test/functional/validates_each_test.rb +14 -0
- data/lib/gems/validatable-1.6.7/test/functional/validates_format_of_test.rb +34 -0
- data/lib/gems/validatable-1.6.7/test/functional/validates_length_of_test.rb +64 -0
- data/lib/gems/validatable-1.6.7/test/functional/validates_numericality_of_test.rb +57 -0
- data/lib/gems/validatable-1.6.7/test/functional/validates_presence_of_test.rb +16 -0
- data/lib/gems/validatable-1.6.7/test/functional/validates_true_for_test.rb +27 -0
- data/lib/gems/validatable-1.6.7/test/test_helper.rb +33 -0
- data/lib/gems/validatable-1.6.7/test/unit/errors_test.rb +64 -0
- data/lib/gems/validatable-1.6.7/test/unit/understandable_test.rb +19 -0
- data/lib/gems/validatable-1.6.7/test/unit/validatable_test.rb +38 -0
- data/lib/gems/validatable-1.6.7/test/unit/validates_acceptance_of_test.rb +21 -0
- data/lib/gems/validatable-1.6.7/test/unit/validates_confirmation_of_test.rb +64 -0
- data/lib/gems/validatable-1.6.7/test/unit/validates_format_of_test.rb +34 -0
- data/lib/gems/validatable-1.6.7/test/unit/validates_length_of_test.rb +75 -0
- data/lib/gems/validatable-1.6.7/test/unit/validates_numericality_of_test.rb +52 -0
- data/lib/gems/validatable-1.6.7/test/unit/validates_presence_of_test.rb +25 -0
- data/lib/gems/validatable-1.6.7/test/unit/validates_true_for_test.rb +29 -0
- data/lib/gems/validatable-1.6.7/test/unit/validation_base_test.rb +52 -0
- data/lib/gems/xmpp4r-0.4/CHANGELOG +83 -0
- data/lib/gems/xmpp4r-0.4/COPYING +340 -0
- data/lib/gems/xmpp4r-0.4/LICENSE +59 -0
- data/lib/gems/xmpp4r-0.4/README.rdoc +110 -0
- data/lib/gems/xmpp4r-0.4/README_ruby19.txt +43 -0
- data/lib/gems/xmpp4r-0.4/Rakefile +262 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/adventure/README +56 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/adventure/adventure.rb +23 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/adventure/adventuremuc.rb +136 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/adventure/cube.xml +15 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/adventure/tower.xml +69 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/adventure/world.rb +424 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/fileserve.conf +11 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/fileserve.rb +346 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/getonline.rb +56 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/gtkmucclient.rb +315 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/migrate.rb +88 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/minimuc.rb +266 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/pep-aggregator/index.xsl +235 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/pep-aggregator/pep-aggregator.rb +147 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/recvfile.rb +84 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/rosterdiscovery.rb +129 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/sendfile.conf +10 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/sendfile.rb +72 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr.rb +51 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr_jabber.rb +43 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr_test.rb +10 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/versionpoll.rb +90 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/xmpping.rb +146 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/xmppingrc.sample +14 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/change_password.rb +41 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/client.rb +70 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/component.rb +11 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/echo.rb +37 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/jabbersend.rb +41 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/mass_sender.rb +68 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/muc_owner_config.rb +12 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/mucinfo.rb +41 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/mucsimplebot.rb +82 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/register.rb +42 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/remove_registration.rb +18 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/roster.rb +44 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/rosterprint.rb +50 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/rosterrename.rb +34 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/rosterwatch.rb +171 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/send_vcard.rb +67 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/tune_client.rb +56 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/tune_server.rb +58 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/versionbot.rb +75 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r.rb +116 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/base64.rb +32 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams.rb +15 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/filetransfer.rb +319 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/ibb/base.rb +257 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/ibb/initiator.rb +31 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/ibb/target.rb +47 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/socks5bytestreams/base.rb +152 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/socks5bytestreams/initiator.rb +86 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/socks5bytestreams/server.rb +198 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/socks5bytestreams/socks5.rb +65 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/socks5bytestreams/target.rb +73 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/socks5bytestreams/target.rb.orig +62 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/iq/bytestreams.rb +170 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/iq/si.rb +206 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/callbacks.rb +124 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/caps.rb +1 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/caps/c.rb +53 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/caps/helper/generator.rb +160 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/caps/helper/helper.rb +87 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/client.rb +317 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/command/helper/responder.rb +53 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/command/iq/command.rb +154 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/component.rb +103 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/connection.rb +219 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/dataforms.rb +5 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/dataforms/x/data.rb +297 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/debuglog.rb +42 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/delay.rb +5 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/delay/x/delay.rb +99 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/discovery.rb +7 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/discovery/helper/responder.rb +165 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/discovery/iq/discoinfo.rb +211 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/discovery/iq/discoitems.rb +147 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/errors.rb +281 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/feature_negotiation.rb +5 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/feature_negotiation/iq/feature.rb +28 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/framework/base.rb +55 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/framework/bot.rb +148 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/httpbinding.rb +5 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/httpbinding/client.rb +285 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/idgenerator.rb +37 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/iq.rb +221 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/jid.rb +167 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/message.rb +148 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/muc.rb +14 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/helper/mucbrowser.rb +92 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/helper/mucclient.rb +462 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/helper/simplemucclient.rb +332 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/iq/mucadmin.rb +23 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/iq/mucadminitem.rb +20 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/iq/mucowner.rb +15 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/item.rb +143 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/x/muc.rb +70 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/x/mucuserinvite.rb +60 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/x/mucuseritem.rb +36 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/presence.rb +232 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub.rb +8 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/children/configuration.rb +86 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/children/event.rb +49 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/children/item.rb +35 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/children/items.rb +44 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/children/node_config.rb +48 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/children/publish.rb +24 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/children/subscription.rb +62 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/children/subscription_config.rb +67 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/children/unsubscribe.rb +48 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/helper/nodebrowser.rb +130 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/helper/nodehelper.rb +156 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/helper/servicehelper.rb +417 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/iq/pubsub.rb +19 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/query.rb +15 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/rexmladdons.rb +151 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/roster.rb +7 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/roster/helper/roster.rb +519 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/roster/iq/roster.rb +215 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/roster/x/roster.rb +138 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/rpc.rb +2 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/rpc/helper/client.rb +123 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/rpc/helper/server.rb +74 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/rpc/helper/xmlrpcaddons.rb +67 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/rpc/iq/rpc.rb +23 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/sasl.rb +237 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/semaphore.rb +38 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/stream.rb +497 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/streamparser.rb +77 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/tune.rb +2 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/tune/helper/helper.rb +58 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/tune/tune.rb +113 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/vcard.rb +6 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/vcard/helper/vcard.rb +84 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/vcard/iq/vcard.rb +109 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/version.rb +7 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/version/helper/responder.rb +72 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/version/helper/simpleresponder.rb +44 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/version/iq/version.rb +105 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/x.rb +37 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/xhtml.rb +1 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/xhtml/html.rb +115 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/xmpp4r.rb +18 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/xmppelement.rb +168 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/xmppstanza.rb +162 -0
- data/lib/gems/xmpp4r-0.4/setup.rb +1586 -0
- data/lib/gems/xmpp4r-0.4/test/bytestreams/tc_ibb.rb +186 -0
- data/lib/gems/xmpp4r-0.4/test/bytestreams/tc_socks5bytestreams.rb +113 -0
- data/lib/gems/xmpp4r-0.4/test/caps/tc_helper.rb +156 -0
- data/lib/gems/xmpp4r-0.4/test/dataforms/tc_data.rb +81 -0
- data/lib/gems/xmpp4r-0.4/test/delay/tc_xdelay.rb +51 -0
- data/lib/gems/xmpp4r-0.4/test/discovery/tc_responder.rb +91 -0
- data/lib/gems/xmpp4r-0.4/test/lib/assert_equal_xml.rb +14 -0
- data/lib/gems/xmpp4r-0.4/test/lib/clienttester.rb +120 -0
- data/lib/gems/xmpp4r-0.4/test/muc/tc_muc_mucclient.rb +830 -0
- data/lib/gems/xmpp4r-0.4/test/muc/tc_muc_simplemucclient.rb +114 -0
- data/lib/gems/xmpp4r-0.4/test/muc/tc_mucowner.rb +50 -0
- data/lib/gems/xmpp4r-0.4/test/pubsub/tc_helper.rb +662 -0
- data/lib/gems/xmpp4r-0.4/test/pubsub/tc_nodeconfig.rb +54 -0
- data/lib/gems/xmpp4r-0.4/test/pubsub/tc_subscriptionconfig.rb +41 -0
- data/lib/gems/xmpp4r-0.4/test/roster/tc_helper.rb +514 -0
- data/lib/gems/xmpp4r-0.4/test/roster/tc_iqqueryroster.rb +173 -0
- data/lib/gems/xmpp4r-0.4/test/roster/tc_xroster.rb +73 -0
- data/lib/gems/xmpp4r-0.4/test/rpc/tc_helper.rb +96 -0
- data/lib/gems/xmpp4r-0.4/test/tc_callbacks.rb +129 -0
- data/lib/gems/xmpp4r-0.4/test/tc_class_names.rb +146 -0
- data/lib/gems/xmpp4r-0.4/test/tc_client.rb +30 -0
- data/lib/gems/xmpp4r-0.4/test/tc_errors.rb +146 -0
- data/lib/gems/xmpp4r-0.4/test/tc_idgenerator.rb +30 -0
- data/lib/gems/xmpp4r-0.4/test/tc_iq.rb +113 -0
- data/lib/gems/xmpp4r-0.4/test/tc_iqquery.rb +31 -0
- data/lib/gems/xmpp4r-0.4/test/tc_jid.rb +204 -0
- data/lib/gems/xmpp4r-0.4/test/tc_message.rb +116 -0
- data/lib/gems/xmpp4r-0.4/test/tc_presence.rb +150 -0
- data/lib/gems/xmpp4r-0.4/test/tc_rexml.rb +139 -0
- data/lib/gems/xmpp4r-0.4/test/tc_stream.rb +229 -0
- data/lib/gems/xmpp4r-0.4/test/tc_streamComponent.rb +95 -0
- data/lib/gems/xmpp4r-0.4/test/tc_streamError.rb +131 -0
- data/lib/gems/xmpp4r-0.4/test/tc_streamSend.rb +59 -0
- data/lib/gems/xmpp4r-0.4/test/tc_streamparser.rb +112 -0
- data/lib/gems/xmpp4r-0.4/test/tc_xmppstanza.rb +135 -0
- data/lib/gems/xmpp4r-0.4/test/ts_xmpp4r.rb +53 -0
- data/lib/gems/xmpp4r-0.4/test/tune/tc_helper_recv.rb +84 -0
- data/lib/gems/xmpp4r-0.4/test/tune/tc_helper_send.rb +74 -0
- data/lib/gems/xmpp4r-0.4/test/tune/tc_tune.rb +79 -0
- data/lib/gems/xmpp4r-0.4/test/vcard/tc_helper.rb +49 -0
- data/lib/gems/xmpp4r-0.4/test/vcard/tc_iqvcard.rb +62 -0
- data/lib/gems/xmpp4r-0.4/test/version/tc_helper.rb +60 -0
- data/lib/gems/xmpp4r-0.4/test/version/tc_iqqueryversion.rb +97 -0
- data/lib/gems/xmpp4r-0.4/test/xhtml/tc_html.rb +41 -0
- data/lib/gems/xmpp4r-0.4/tools/gen_requires.bash +31 -0
- data/lib/gems/xmpp4r-0.4/tools/xmpp4r-gemspec-test.rb +11 -0
- data/lib/gems/xmpp4r-0.4/xmpp4r.gemspec +291 -0
- data/lib/gems/xmpp4r-simple-0.8.8/CHANGELOG +73 -0
- data/lib/gems/xmpp4r-simple-0.8.8/COPYING +281 -0
- data/lib/gems/xmpp4r-simple-0.8.8/README +59 -0
- data/lib/gems/xmpp4r-simple-0.8.8/lib/xmpp4r-simple.rb +492 -0
- data/lib/gems/xmpp4r-simple-0.8.8/test/test_xmpp4r_simple.rb +242 -0
- data/lib/mack-notifier.rb +1 -3
- metadata +398 -46
@@ -0,0 +1,186 @@
|
|
1
|
+
#!/usr/bin/ruby
|
2
|
+
|
3
|
+
$:.unshift File::dirname(__FILE__) + '/../../lib'
|
4
|
+
|
5
|
+
require 'test/unit'
|
6
|
+
require File::dirname(__FILE__) + '/../lib/clienttester'
|
7
|
+
|
8
|
+
require 'xmpp4r'
|
9
|
+
require 'xmpp4r/bytestreams'
|
10
|
+
require 'xmpp4r/semaphore'
|
11
|
+
include Jabber
|
12
|
+
|
13
|
+
class IBBTest < Test::Unit::TestCase
|
14
|
+
include ClientTester
|
15
|
+
|
16
|
+
def create_buffer(size)
|
17
|
+
([nil] * size).collect { rand(256).chr }.join
|
18
|
+
end
|
19
|
+
|
20
|
+
def test_ibb_target2initiator
|
21
|
+
target = Bytestreams::IBBTarget.new(@server, '1', nil, '1@a.com/1')
|
22
|
+
initiator = Bytestreams::IBBInitiator.new(@client, '1', nil, '1@a.com/1')
|
23
|
+
|
24
|
+
buffer = create_buffer(9999)
|
25
|
+
|
26
|
+
Thread.new do
|
27
|
+
target.accept
|
28
|
+
target.write(buffer)
|
29
|
+
Thread.pass
|
30
|
+
target.close
|
31
|
+
end
|
32
|
+
|
33
|
+
|
34
|
+
initiator.open
|
35
|
+
|
36
|
+
received = ''
|
37
|
+
while buf = initiator.read
|
38
|
+
received += buf
|
39
|
+
end
|
40
|
+
|
41
|
+
initiator.close
|
42
|
+
|
43
|
+
assert_equal(buffer, received)
|
44
|
+
end
|
45
|
+
|
46
|
+
def test_ibb_initiator2target
|
47
|
+
target = Bytestreams::IBBTarget.new(@server, '1', nil, '1@a.com/1')
|
48
|
+
initiator = Bytestreams::IBBInitiator.new(@client, '1', nil, '1@a.com/1')
|
49
|
+
|
50
|
+
buffer = create_buffer(9999)
|
51
|
+
|
52
|
+
Thread.new do
|
53
|
+
Thread.pass
|
54
|
+
initiator.open
|
55
|
+
initiator.write(buffer)
|
56
|
+
Thread.pass
|
57
|
+
initiator.close
|
58
|
+
end
|
59
|
+
|
60
|
+
|
61
|
+
target.accept
|
62
|
+
|
63
|
+
received = ''
|
64
|
+
while buf = target.read
|
65
|
+
received += buf
|
66
|
+
end
|
67
|
+
|
68
|
+
target.close
|
69
|
+
|
70
|
+
assert_equal(buffer, received)
|
71
|
+
end
|
72
|
+
|
73
|
+
def test_ibb_pingpong
|
74
|
+
ignored_stanzas = 0
|
75
|
+
wait = Semaphore.new
|
76
|
+
@server.add_message_callback { ignored_stanzas += 1; wait.run }
|
77
|
+
@server.add_iq_callback { ignored_stanzas += 1; wait.run }
|
78
|
+
|
79
|
+
|
80
|
+
target = Bytestreams::IBBTarget.new(@server, '1', nil, '1@a.com/1')
|
81
|
+
initiator = Bytestreams::IBBInitiator.new(@client, '1', nil, '1@a.com/1')
|
82
|
+
|
83
|
+
Thread.new do
|
84
|
+
target.accept
|
85
|
+
|
86
|
+
while buf = target.read
|
87
|
+
target.write(buf)
|
88
|
+
target.flush
|
89
|
+
end
|
90
|
+
|
91
|
+
target.close
|
92
|
+
end
|
93
|
+
|
94
|
+
|
95
|
+
assert_equal(0, ignored_stanzas)
|
96
|
+
@client.send("<iq from='1@a.com/1' type='set'>
|
97
|
+
<close xmlns='http://jabber.org/protocol/ibb' sid='another session id'/>
|
98
|
+
</iq>")
|
99
|
+
wait.wait
|
100
|
+
assert_equal(1, ignored_stanzas)
|
101
|
+
|
102
|
+
|
103
|
+
initiator.open
|
104
|
+
|
105
|
+
|
106
|
+
assert_equal(1, ignored_stanzas)
|
107
|
+
@client.send("<message from='1@a.com/1' type='error'>
|
108
|
+
<data xmlns='http://jabber.org/protocol/ibb' sid='another session id' seq='0'/>
|
109
|
+
</message>")
|
110
|
+
wait.wait
|
111
|
+
assert_equal(2, ignored_stanzas)
|
112
|
+
@client.send("<iq from='1@a.com/1' type='set'>
|
113
|
+
<close xmlns='http://jabber.org/protocol/ibb' sid='another session id'/>
|
114
|
+
</iq>")
|
115
|
+
wait.wait
|
116
|
+
assert_equal(3, ignored_stanzas)
|
117
|
+
|
118
|
+
|
119
|
+
10.times do
|
120
|
+
buf = create_buffer(9999)
|
121
|
+
initiator.write(buf)
|
122
|
+
initiator.flush
|
123
|
+
|
124
|
+
bufr = ''
|
125
|
+
begin
|
126
|
+
bufr += initiator.read
|
127
|
+
end while bufr.size < buf.size
|
128
|
+
assert_equal(buf, bufr)
|
129
|
+
end
|
130
|
+
|
131
|
+
initiator.close
|
132
|
+
|
133
|
+
|
134
|
+
assert_equal(3, ignored_stanzas)
|
135
|
+
end
|
136
|
+
|
137
|
+
def test_ibb_error
|
138
|
+
target = Bytestreams::IBBTarget.new(@server, '1', nil, '1@a.com/1')
|
139
|
+
initiator = Bytestreams::IBBInitiator.new(@client, '1', nil, '1@a.com/1')
|
140
|
+
|
141
|
+
Thread.new do
|
142
|
+
target.accept
|
143
|
+
|
144
|
+
@server.send("<message from='1@a.com/1' type='error'>
|
145
|
+
<data xmlns='http://jabber.org/protocol/ibb' sid='#{target.instance_variable_get(:@session_id)}' seq='0'/>
|
146
|
+
</message>")
|
147
|
+
end
|
148
|
+
|
149
|
+
|
150
|
+
initiator.open
|
151
|
+
|
152
|
+
assert_nil(initiator.read)
|
153
|
+
|
154
|
+
initiator.close
|
155
|
+
end
|
156
|
+
|
157
|
+
def test_ibb_inactive
|
158
|
+
target = Bytestreams::IBBTarget.new(@server, '1', nil, '1@a.com/1')
|
159
|
+
initiator = Bytestreams::IBBInitiator.new(@client, '1', nil, '1@a.com/1')
|
160
|
+
|
161
|
+
assert_nil(target.read)
|
162
|
+
assert_nil(initiator.read)
|
163
|
+
|
164
|
+
assert_raise(RuntimeError) {
|
165
|
+
target.write('a' * target.block_size)
|
166
|
+
}
|
167
|
+
assert_raise(RuntimeError) {
|
168
|
+
initiator.write('a' * initiator.block_size)
|
169
|
+
}
|
170
|
+
end
|
171
|
+
|
172
|
+
def test_ibb_queueitem
|
173
|
+
i1 = Bytestreams::IBBQueueItem.new(:close)
|
174
|
+
assert_equal(:close, i1.type)
|
175
|
+
assert_nil(i1.seq)
|
176
|
+
|
177
|
+
i2 = Bytestreams::IBBQueueItem.new(:data, 1, ['blah'].pack('m'))
|
178
|
+
assert_equal(:data, i2.type)
|
179
|
+
assert_equal(1, i2.seq)
|
180
|
+
assert_equal('blah', i2.data)
|
181
|
+
|
182
|
+
assert_raise(RuntimeError) {
|
183
|
+
i3 = Bytestreams::IBBQueueItem.new(:invalid)
|
184
|
+
}
|
185
|
+
end
|
186
|
+
end
|
@@ -0,0 +1,113 @@
|
|
1
|
+
#!/usr/bin/ruby
|
2
|
+
|
3
|
+
$:.unshift File::dirname(__FILE__) + '/../../lib'
|
4
|
+
|
5
|
+
require 'test/unit'
|
6
|
+
require File::dirname(__FILE__) + '/../lib/clienttester'
|
7
|
+
|
8
|
+
require 'xmpp4r'
|
9
|
+
require 'xmpp4r/bytestreams'
|
10
|
+
include Jabber
|
11
|
+
|
12
|
+
class SOCKS5BytestreamsTest < Test::Unit::TestCase
|
13
|
+
include ClientTester
|
14
|
+
|
15
|
+
@@server = Bytestreams::SOCKS5BytestreamsServer.new(65005)
|
16
|
+
@@server.add_address('localhost')
|
17
|
+
|
18
|
+
def create_buffer(size)
|
19
|
+
([nil] * size).collect { rand(256).chr }.join
|
20
|
+
end
|
21
|
+
|
22
|
+
def test_server2multi
|
23
|
+
target1 = Bytestreams::SOCKS5BytestreamsTarget.new(@server, '1', '1@a.com/1', '1@a.com/2')
|
24
|
+
target2 = Bytestreams::SOCKS5BytestreamsTarget.new(@server, '2', '2@a.com/1', '2@a.com/2')
|
25
|
+
initiator1 = Bytestreams::SOCKS5BytestreamsInitiator.new(@client, '1', '1@a.com/1', '1@a.com/2')
|
26
|
+
initiator2 = Bytestreams::SOCKS5BytestreamsInitiator.new(@client, '2', '2@a.com/1', '2@a.com/2')
|
27
|
+
initiator1.add_streamhost(@@server)
|
28
|
+
initiator2.add_streamhost(@@server)
|
29
|
+
|
30
|
+
buf1 = create_buffer(8192)
|
31
|
+
buf2 = create_buffer(8192)
|
32
|
+
|
33
|
+
Thread.new do
|
34
|
+
target1.accept
|
35
|
+
target1.write(buf1)
|
36
|
+
target1.flush
|
37
|
+
target1.close
|
38
|
+
end
|
39
|
+
|
40
|
+
Thread.new do
|
41
|
+
target2.accept
|
42
|
+
target2.write(buf2)
|
43
|
+
target2.flush
|
44
|
+
target2.close
|
45
|
+
end
|
46
|
+
|
47
|
+
initiator1.open
|
48
|
+
initiator2.open
|
49
|
+
|
50
|
+
recv1 = ''
|
51
|
+
recv2 = ''
|
52
|
+
|
53
|
+
while buf = initiator2.read(256)
|
54
|
+
recv2 += buf
|
55
|
+
end
|
56
|
+
|
57
|
+
while buf = initiator1.read(256)
|
58
|
+
recv1 += buf
|
59
|
+
end
|
60
|
+
|
61
|
+
initiator1.close
|
62
|
+
initiator2.close
|
63
|
+
|
64
|
+
assert_equal(buf1, recv1)
|
65
|
+
assert_equal(buf2, recv2)
|
66
|
+
end
|
67
|
+
|
68
|
+
def test_pingpong
|
69
|
+
target = Bytestreams::SOCKS5BytestreamsTarget.new(@server, '1', '1@a.com/1', '1@a.com/2')
|
70
|
+
initiator = Bytestreams::SOCKS5BytestreamsInitiator.new(@client, '1', '1@a.com/1', '1@a.com/2')
|
71
|
+
initiator.add_streamhost(@@server)
|
72
|
+
|
73
|
+
|
74
|
+
Thread.new do
|
75
|
+
target.accept
|
76
|
+
|
77
|
+
while buf = target.read(256)
|
78
|
+
target.write(buf)
|
79
|
+
target.flush
|
80
|
+
end
|
81
|
+
|
82
|
+
target.close
|
83
|
+
end
|
84
|
+
|
85
|
+
|
86
|
+
initiator.open
|
87
|
+
|
88
|
+
10.times do
|
89
|
+
buf = create_buffer(8192)
|
90
|
+
initiator.write(buf)
|
91
|
+
initiator.flush
|
92
|
+
|
93
|
+
bufr = ''
|
94
|
+
begin
|
95
|
+
bufr += initiator.read(256)
|
96
|
+
end while bufr.size < buf.size
|
97
|
+
assert_equal(buf, bufr)
|
98
|
+
end
|
99
|
+
|
100
|
+
initiator.close
|
101
|
+
end
|
102
|
+
|
103
|
+
def test_timeout
|
104
|
+
target = Bytestreams::SOCKS5BytestreamsTarget.new(@server, '1', '1@a.com/1', '1@a.com/2')
|
105
|
+
|
106
|
+
assert_nothing_raised do
|
107
|
+
Timeout::timeout(2) do
|
108
|
+
target.connect_timeout = 1
|
109
|
+
assert target.accept == false
|
110
|
+
end
|
111
|
+
end
|
112
|
+
end
|
113
|
+
end
|
@@ -0,0 +1,156 @@
|
|
1
|
+
|
2
|
+
$:.unshift File::dirname(__FILE__) + '/../../lib'
|
3
|
+
|
4
|
+
require 'test/unit'
|
5
|
+
require File::dirname(__FILE__) + '/../lib/clienttester'
|
6
|
+
|
7
|
+
require 'xmpp4r/discovery'
|
8
|
+
require 'xmpp4r/caps/helper/helper'
|
9
|
+
require 'xmpp4r/dataforms'
|
10
|
+
include Jabber
|
11
|
+
|
12
|
+
class Caps::HelperTest < Test::Unit::TestCase
|
13
|
+
include ClientTester
|
14
|
+
|
15
|
+
##
|
16
|
+
# Walk through the client/ server conversation defined
|
17
|
+
# in http://www.xmpp.org/extensions/xep-0115.html#usecases
|
18
|
+
# and assert conformance.
|
19
|
+
def test_caps_reply
|
20
|
+
# This will be invoked by 'wait_state' below...
|
21
|
+
state { |presence|
|
22
|
+
assert_kind_of(Jabber::Presence, presence)
|
23
|
+
c = presence.first_element('c')
|
24
|
+
assert_kind_of(Jabber::Caps::C, c)
|
25
|
+
|
26
|
+
# see http://www.xmpp.org/extensions/xep-0115.html#ver
|
27
|
+
assert_equal('SrFo9ar2CCk2EnOH4q4QANeuxLQ=', c.ver)
|
28
|
+
|
29
|
+
# version 1.5 of xep 0115 indicates that the <c /> stanzq MUST feature a 'hash' attribute
|
30
|
+
assert_equal('sha-1', c.hash)
|
31
|
+
|
32
|
+
assert_equal("http://home.gna.org/xmpp4r/##{Jabber::XMPP4R_VERSION}", c.node)
|
33
|
+
|
34
|
+
send(iq_discovering_capabilities)
|
35
|
+
}
|
36
|
+
|
37
|
+
# Construct Caps::Helper which will send a <presence>
|
38
|
+
# stanza (with embedded <c/> advert) to the 'server'
|
39
|
+
h = Caps::Helper.new(@client, identities, features)
|
40
|
+
|
41
|
+
# The 'server' will receive the <presence> stanza and
|
42
|
+
# yield it to the 'state' block above, where an <iq> query
|
43
|
+
# will be sent back to the 'client,' to discover its capabilities.
|
44
|
+
# Wait here until the block has been executed.
|
45
|
+
wait_state
|
46
|
+
|
47
|
+
# The Caps::Helper will process the <iq> query from the 'server'
|
48
|
+
# and reply with an <iq> result providing the details of its
|
49
|
+
# identities and features.
|
50
|
+
|
51
|
+
state { |iq|
|
52
|
+
assert_kind_of(Jabber::Iq, iq)
|
53
|
+
assert_equal(:result, iq.type)
|
54
|
+
assert_equal('1867999907', iq.id)
|
55
|
+
assert_equal('new-big-computer.local', iq.to.to_s)
|
56
|
+
|
57
|
+
assert_kind_of(Jabber::Discovery::IqQueryDiscoInfo, iq.query)
|
58
|
+
assert_equal(iq.query.identities.size, identities.size)
|
59
|
+
get_category_iname_type = lambda{ |i| [i.category,i.iname,i.type] }
|
60
|
+
assert_equal(iq.query.identities.map(&get_category_iname_type).sort!, identities.map(&get_category_iname_type).sort!)
|
61
|
+
|
62
|
+
assert_equal(3, iq.query.features.size)
|
63
|
+
get_var = lambda { |f| f.var }
|
64
|
+
assert_equal(iq.query.features.sort, features.map(&get_var).sort)
|
65
|
+
}
|
66
|
+
|
67
|
+
# The 'server' will receive the <iq> result from the
|
68
|
+
# 'client' and yield it to the block above. Wait here
|
69
|
+
# until that block exits.
|
70
|
+
wait_state
|
71
|
+
end
|
72
|
+
|
73
|
+
def test_custom_node
|
74
|
+
client_id='http://new-big-computer.local/client#321'
|
75
|
+
|
76
|
+
state { |presence|
|
77
|
+
c = presence.first_element('c')
|
78
|
+
assert_kind_of(Jabber::Caps::C, c)
|
79
|
+
assert_equal(client_id, c.node)
|
80
|
+
assert_equal('SrFo9ar2CCk2EnOH4q4QANeuxLQ=', c.ver)
|
81
|
+
}
|
82
|
+
h = Caps::Helper.new(@client, identities, features, client_id)
|
83
|
+
wait_state
|
84
|
+
end
|
85
|
+
|
86
|
+
def identities
|
87
|
+
[Jabber::Discovery::Identity.new('client', 'Exodus 0.9.1', 'pc')]
|
88
|
+
end
|
89
|
+
|
90
|
+
def features
|
91
|
+
[Jabber::Discovery::Feature.new("http://jabber.org/protocol/disco#info"),
|
92
|
+
Jabber::Discovery::Feature.new("http://jabber.org/protocol/disco#items"),
|
93
|
+
Jabber::Discovery::Feature.new("http://jabber.org/protocol/muc")]
|
94
|
+
end
|
95
|
+
|
96
|
+
def iq_discovering_capabilities
|
97
|
+
"<iq from='new-big-computer.local' type='get' to='matt@new-big-computer.local/capable_client' id='1867999907' xmlns='jabber:client'><query xmlns='http://jabber.org/protocol/disco#info'/></iq>"
|
98
|
+
end
|
99
|
+
|
100
|
+
##
|
101
|
+
# http://www.xmpp.org/extensions/xep-0115.html#ver-gen-complex
|
102
|
+
def test_caps_complex
|
103
|
+
form = Dataforms::XData.new(:result)
|
104
|
+
form.add(Dataforms::XDataField.new('FORM_TYPE', :hidden)).value = 'urn:xmpp:dataforms:softwareinfo'
|
105
|
+
form.add(Dataforms::XDataField.new('ip_version')).values = ['ipv4', 'ipv6']
|
106
|
+
form.add(Dataforms::XDataField.new('software')).value = 'Psi' # re-ordered
|
107
|
+
form.add(Dataforms::XDataField.new('software_version')).value = '0.11'
|
108
|
+
form.add(Dataforms::XDataField.new('os')).value = 'Mac'
|
109
|
+
form.add(Dataforms::XDataField.new('os_version')).value = '10.5.1'
|
110
|
+
ver = Caps::generate_ver([Discovery::Identity.new('client', 'Psi 0.9.1', 'pc').set_xml_lang('en'),
|
111
|
+
Discovery::Identity.new('client', 'Ψ 0.9.1', 'pc').set_xml_lang('el')],
|
112
|
+
[Discovery::Feature.new('http://jabber.org/protocol/muc'), # re-ordered
|
113
|
+
Discovery::Feature.new('http://jabber.org/protocol/disco#info'),
|
114
|
+
Discovery::Feature.new('http://jabber.org/protocol/disco#items')],
|
115
|
+
[form])
|
116
|
+
assert_equal('8lu+88MRxmKM7yO3MEzY7YmTsWs=', ver)
|
117
|
+
end
|
118
|
+
|
119
|
+
##
|
120
|
+
# http://www.xmpp.org/extensions/xep-0115.html#ver-gen-complex
|
121
|
+
def test_caps_complex_imported
|
122
|
+
query = IqQuery::import(REXML::Document.new(<<END).root)
|
123
|
+
<query xmlns='http://jabber.org/protocol/disco#info'
|
124
|
+
node='http://psi-im.org#8lu+88MRxmKM7yO3MEzY7YmTsWs='>
|
125
|
+
<identity xml:lang='en' category='client' name='Psi 0.9.1' type='pc'/>
|
126
|
+
<identity xml:lang='el' category='client' name='Ψ 0.9.1' type='pc'/>
|
127
|
+
<feature var='http://jabber.org/protocol/disco#info'/>
|
128
|
+
<feature var='http://jabber.org/protocol/disco#items'/>
|
129
|
+
<feature var='http://jabber.org/protocol/muc'/>
|
130
|
+
<x xmlns='jabber:x:data' type='result'>
|
131
|
+
<field var='FORM_TYPE' type='hidden'>
|
132
|
+
<value>urn:xmpp:dataforms:softwareinfo</value>
|
133
|
+
</field>
|
134
|
+
<field var='ip_version'>
|
135
|
+
<value>ipv4</value>
|
136
|
+
<value>ipv6</value>
|
137
|
+
</field>
|
138
|
+
<field var='os'>
|
139
|
+
<value>Mac</value>
|
140
|
+
</field>
|
141
|
+
<field var='os_version'>
|
142
|
+
<value>10.5.1</value>
|
143
|
+
</field>
|
144
|
+
<field var='software'>
|
145
|
+
<value>Psi</value>
|
146
|
+
</field>
|
147
|
+
<field var='software_version'>
|
148
|
+
<value>0.11</value>
|
149
|
+
</field>
|
150
|
+
</x>
|
151
|
+
</query>
|
152
|
+
END
|
153
|
+
assert_equal('8lu+88MRxmKM7yO3MEzY7YmTsWs=',
|
154
|
+
Caps::generate_ver_from_discoinfo(query))
|
155
|
+
end
|
156
|
+
end
|