[old local changes] add content-type
This commit is contained in:
parent
5f1d0338c9
commit
ab67b00717
1 changed files with 9 additions and 0 deletions
9
main.py
9
main.py
|
@ -16,6 +16,7 @@ HTTP_URL = 'http://127.0.0.1:8080'
|
|||
class TestTCP(TestCase):
|
||||
|
||||
def setUp(self) -> None:
|
||||
self.skipTest('Not implemented yet')
|
||||
self.sock = socket.socket()
|
||||
self.sock.connect(TCP_ADDR)
|
||||
|
||||
|
@ -38,6 +39,7 @@ class TestTCP(TestCase):
|
|||
class TestUDP(TestCase):
|
||||
|
||||
def setUp(self) -> None:
|
||||
self.skipTest('Useless until no client API')
|
||||
self.sock = socket.socket(type=socket.SOCK_DGRAM)
|
||||
|
||||
def test_nm(self) -> None:
|
||||
|
@ -69,13 +71,20 @@ class TestHTTP(TestCase):
|
|||
'POST',
|
||||
HTTP_URL + '/post',
|
||||
body=device.http_req_data(),
|
||||
headers={
|
||||
'Content-Type': 'application/x-www-form-urlencoded',
|
||||
},
|
||||
))
|
||||
|
||||
def test_json(self) -> None:
|
||||
self.skipTest('Not implemented yet')
|
||||
self._check_status(self.http.request(
|
||||
'POST',
|
||||
HTTP_URL + '/json',
|
||||
body=device.json_req_data(),
|
||||
headers={
|
||||
'Content-Type': 'application/json',
|
||||
},
|
||||
))
|
||||
|
||||
def _check_status(self, resp: urllib3.HTTPResponse) -> None:
|
||||
|
|
Loading…
Reference in a new issue