Exemple #1
0
 def test_pass(self):
     # this test password is inspired by ZNC, if anyone's wondering.
     password = '******'
     ns = new_connection(server_password=password)
     line = ns.draw_line()
     self.assertEqual(line.command, 'PASS', "PASS must be sent first")
     self.assertEqual(line.params[0], password, "Passwords don't match")
Exemple #2
0
 def test_pass(self):
     # this test password is inspired by ZNC, if anyone's wondering.
     password = '******'
     ns = new_connection(server_password=password)
     line = ns.draw_line()
     self.assertEqual(line.command, 'PASS', "PASS must be sent first")
     self.assertEqual(line.params[0], password, "Passwords don't match")
Exemple #3
0
 def test_nick(self):
     nick = 'Tester'
     ns = new_connection(nick=nick)
     line = ns.draw_line()
     while line:
         if line.command == 'NICK':
             self.assertEqual(line.params[0], nick, "Incorrect nickname")
             return
         line = ns.draw_line()
     self.assertFalse(True, "No NICK command received!")
Exemple #4
0
 def test_nick(self):
     nick = 'Tester'
     ns = new_connection(nick=nick)
     line = ns.draw_line()
     while line:
         if line.command == 'NICK':
             self.assertEqual(line.params[0], nick, "Incorrect nickname")
             return
         line = ns.draw_line()
     self.assertFalse(True, "No NICK command received!")
Exemple #5
0
 def test_nick_before_user(self):
     # RFC 1459, §4.1, pp. 13-14
     # The recommended order for a client to register is as follows:
     # 1. Pass message
     # 2. Nick message
     # 3. User message
     ns = new_connection()
     line = ns.draw_line()
     self.assertEqual(line.command, 'NICK', "NICK must be sent first")
     line = ns.draw_line()
     self.assertEqual(line.command, 'USER', "USER must be send after NICK")
Exemple #6
0
 def test_nick_before_user(self):
     # RFC 1459, §4.1, pp. 13-14
     # The recommended order for a client to register is as follows:
     # 1. Pass message
     # 2. Nick message
     # 3. User message
     ns = new_connection()
     line = ns.draw_line()
     self.assertEqual(line.command, 'NICK', "NICK must be sent first")
     line = ns.draw_line()
     self.assertEqual(line.command, 'USER', "USER must be send after NICK")
Exemple #7
0
 def test_user(self):
     ns = new_connection(username='******', gecos='Test User')
     line = ns.draw_line()
     while line:
         if line.command == 'USER':
             self.assertEqual(line.params[0], 'TestUser',
                              "Incorrect username")
             self.assertEqual(line.params[3], 'Test User',
                              "Incorrect GECOS")
             return
         line = ns.draw_line()
     self.assertFalse(True, "No USER command received!")
Exemple #8
0
 def test_user(self):
     ns = new_connection(username='******', gecos='Test User')
     line = ns.draw_line()
     while line:
         if line.command == 'USER':
             self.assertEqual(line.params[0], 'TestUser',
                              "Incorrect username")
             self.assertEqual(line.params[3], 'Test User',
                              "Incorrect GECOS")
             return
         line = ns.draw_line()
     self.assertFalse(True, "No USER command received!")