Exemplo n.º 1
0
 def test_doReadWarningIsRaised(self):
     """
     When an L{IProtocol} implementation that returns a value from its
     C{dataReceived} method, a deprecated warning is emitted.
     """
     skt = FakeSocket("someData")
     protocol = FakeProtocol()
     conn = Connection(skt, protocol)
     conn.doRead()
     warnings = self.flushWarnings([FakeProtocol.dataReceived])
     self.assertEquals(warnings[0]['category'], DeprecationWarning)
     self.assertEquals(
         warnings[0]["message"], "Returning a value other than None from "
         "twisted.internet.test.test_tcp.FakeProtocol.dataReceived "
         "is deprecated since Twisted 11.0.0.")
     self.assertEquals(len(warnings), 1)
Exemplo n.º 2
0
 def test_doReadWarningIsRaised(self):
     """
     When an L{IProtocol} implementation that returns a value from its
     C{dataReceived} method, a deprecated warning is emitted.
     """
     skt = FakeSocket("someData")
     protocol = FakeProtocol()
     conn = Connection(skt, protocol)
     conn.doRead()
     warnings = self.flushWarnings([FakeProtocol.dataReceived])
     self.assertEqual(warnings[0]['category'], DeprecationWarning)
     self.assertEqual(
         warnings[0]["message"],
         "Returning a value other than None from "
         "twisted.internet.test.test_tcp.FakeProtocol.dataReceived "
         "is deprecated since Twisted 11.0.0.")
     self.assertEqual(len(warnings), 1)