import unittest from aioupnp.fault import UPnPError from aioupnp.serialization.soap import serialize_soap_post, deserialize_soap_post_response class TestSOAPSerialization(unittest.TestCase): param_names: list = [] kwargs: dict = {} method, gateway_address = "GetExternalIPAddress", b'10.0.0.1' st, lan_address, path = b'urn:schemas-upnp-org:service:WANIPConnection:1', '10.0.0.1', b'/soap.cgi?service=WANIPConn1' post_bytes = b'POST /soap.cgi?service=WANIPConn1 HTTP/1.1\r\n' \ b'Host: 10.0.0.1\r\nUser-Agent: python3/aioupnp, UPnP/1.0, MiniUPnPc/1.9\r\n' \ b'Content-Length: 285\r\nContent-Type: text/xml\r\n' \ b'SOAPAction: "urn:schemas-upnp-org:service:WANIPConnection:1#GetExternalIPAddress"\r\n' \ b'Connection: Close\r\nCache-Control: no-cache\r\nPragma: no-cache\r\n\r\n' \ b'\r\n' \ b'' \ b'\r\n' post_response = b"HTTP/1.1 200 OK\r\n" \ b"CONTENT-LENGTH: 340\r\n" \ b"CONTENT-TYPE: text/xml; charset=\"utf-8\"\r\n" \ b"DATE: Thu, 18 Oct 2018 01:20:23 GMT\r\n" \ b"EXT:\r\n" \ b"SERVER: Linux/3.14.28-Prod_17.2, UPnP/1.0, Portable SDK for UPnP devices/1.6.22\r\n" \ b"X-User-Agent: redsonic\r\n" \ b"\r\n" \ b"\n\r\n11.22.33.44\r\n\r\n " error_response = b"HTTP/1.1 500 Internal Server Error\r\n" \ b"Server: WebServer\r\n" \ b"Date: Thu, 11 Oct 2018 22:16:17 GMT\r\n" \ b"Connection: close\r\n" \ b"CONTENT-TYPE: text/xml; charset=\"utf-8\"\r\n" \ b"CONTENT-LENGTH: 482 \r\n" \ b"EXT:\r\n" \ b"\r\n" \ b"\n\n\t\n\t\t\n\t\t\ts:Client\n\t\t\tUPnPError\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t713\n\t\t\t\t\tSpecifiedArrayIndexInvalid\n\t\t\t\t\n\t\t\t\n\t\t\n\t\n\n" def test_serialize_post(self): self.assertEqual(serialize_soap_post( self.method, self.param_names, self.st, self.gateway_address, self.path, **self.kwargs ), self.post_bytes) def test_deserialize_post_response(self): self.assertDictEqual( deserialize_soap_post_response(self.post_response, self.method, service_id=self.st.decode()), {'NewExternalIPAddress': '11.22.33.44'} ) def test_raise_from_error_response(self): raised = False try: deserialize_soap_post_response(self.error_response, self.method, service_id=self.st.decode()) except UPnPError as err: raised = True self.assertTrue(str(err) == 'SpecifiedArrayIndexInvalid') self.assertTrue(raised)