Your ROOT_URL in app.ini is unix://git.lalonde.me:3000/ but you are visiting https://git.lalonde.me/matth/node-xmpp-client/commit/112a8e6302f23ee64035f313d723850c8f91e3a2?style=unified&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
15 additions and
3 deletions
@ -31,10 +31,10 @@ var BasicClient = function(params, callback) {
case 'iq' :
switch ( stanza . attrs . type ) {
case 'error' :
jabber . _iqCallback [ stanza . attrs . id ] [ 1 ] . apply ( jabber , [ stanza ] ) ;
break ;
case 'result' :
jabber . _iqCallback [ stanza . attrs . id ] [ 0 ] . apply ( jabber , [ stanza ] ) ;
break ;
default :
jabber . emit ( 'iq' , stanza ) ;
@ -9,7 +9,19 @@ exports.testInit = function(test) {
test . expect ( 1 ) ;
var b = new BasicClient ( conf . b , function ( ) {
sys . debug ( 'just connected' ) ;
test . ok ( 'true' , 'connected' ) ;
test . ok ( true , 'connected' ) ;
test . done ( ) ;
} ) ;
} ;
exports . testIq = function ( test ) {
test . expect ( 1 ) ;
new BasicClient ( conf . b , function ( ) {
this . iq ( null , new xmpp . Element ( 'query' , { xmlns : 'jabber:iq:roster' } ) , function ( iq ) {
var roster = iq . getChild ( 'query' , 'jabber:iq:roster' ) . getChildren ( 'item' ) ;
sys . debug ( roster ) ;
test . notEqual ( null , roster , 'roster' ) ;
test . done ( ) ;
} ) ;
} ) ;
} ;