|  |  | @ -1,17 +1,17 @@ | 
			
		
	
		
		
			
				
					
					|  |  |  | var sys = require('sys'), |  |  |  | var sys = require('sys'), | 
			
		
	
		
		
			
				
					
					|  |  |  | 	colors = require('colors'), |  |  |  | 	colors = require('colors'), | 
			
		
	
		
		
			
				
					
					|  |  |  | 	Client = require('../lib/xmpp-client').Client, |  |  |  | 	Client = require('../lib/xmpp-client').Client, | 
			
		
	
		
		
			
				
					
					|  |  |  | 	Jid = require('../lib/xmpp-client').Jid, |  |  |  | 	JID = require('xmpp').JID, | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	conf = require('./conf').conf; |  |  |  | 	conf = require('./conf').conf; | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | exports.testJid = function(test) { |  |  |  | exports.testJid = function(test) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 	test.expect(4); |  |  |  | 	test.expect(4); | 
			
		
	
		
		
			
				
					
					|  |  |  | 	var j = new Jid('mathieu@gtalk.com'); |  |  |  | 	var j = new JID('mathieu@gtalk.com'); | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	//sys.debug(JSON.stringify(j));
 |  |  |  | 	//sys.debug(JSON.stringify(j));
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	test.equals('mathieu', j.node); |  |  |  | 	test.equals('mathieu', j.user); | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	test.equals('gtalk.com', j.domain); |  |  |  | 	test.equals('gtalk.com', j.domain); | 
			
		
	
		
		
			
				
					
					|  |  |  | 	test.equals('node', j.resource); |  |  |  | 	test.equals(null, j.resource); | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	j = new Jid('mathieu@jabber.org/machin'); |  |  |  | 	j = new JID('mathieu@jabber.org/machin'); | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	//sys.debug(JSON.stringify(j));
 |  |  |  | 	//sys.debug(JSON.stringify(j));
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	test.equals('machin', j.resource); |  |  |  | 	test.equals('machin', j.resource); | 
			
		
	
		
		
			
				
					
					|  |  |  | 	test.done(); |  |  |  | 	test.done(); | 
			
		
	
	
		
		
			
				
					|  |  | 
 |