Home | History | Annotate | Download | only in test

Lines Matching full:authkey

188         authkey = current.authkey
192 self.assertIsInstance(authkey, bytes)
193 self.assertTrue(len(authkey) > 0)
204 q.put(bytes(current.authkey))
220 self.assertEqual(p.authkey, current.authkey)
237 self.assertEqual(q.get(), current.authkey)
1376 def _putter(cls, address, authkey):
1378 address=address, authkey=authkey, serializer=SERIALIZER
1385 authkey = os.urandom(32)
1388 address=('localhost', 0), authkey=authkey, serializer=SERIALIZER
1392 p = self.Process(target=self._putter, args=(manager.address, authkey))
1397 address=manager.address, authkey=authkey, serializer=SERIALIZER
1416 def _putter(cls, address, authkey):
1418 address=address, authkey=authkey, serializer=SERIALIZER)
1424 authkey = os.urandom(32)
1426 address=('localhost', 0), authkey=authkey, serializer=SERIALIZER)
1434 p = self.Process(target=self._putter, args=(manager.address, authkey))
1442 address=addr, authkey=authkey, serializer=SERIALIZER)