unit/test/test_node_es_modules.py
Andrei Zeliankou c183bd8749 Tests: get rid of classes in test files.
Class usage came from the unittest framework and it was always redundant
after migration to the pytest.  This commit removes classes from files
containing tests to make them more readable and understandable.
2023-06-14 18:20:09 +01:00

48 lines
1.2 KiB
Python

from packaging import version
from unit.applications.lang.node import ApplicationNode
from unit.applications.websockets import ApplicationWebsocket
prerequisites = {
'modules': {'node': lambda v: version.parse(v) >= version.parse('14.16.0')}
}
client = ApplicationNode(es_modules=True)
ws = ApplicationWebsocket()
def assert_basic_application():
resp = client.get()
assert resp['headers']['Content-Type'] == 'text/plain', 'basic header'
assert resp['body'] == 'Hello World\n', 'basic body'
def test_node_es_modules_loader_http():
client.load('loader/es_modules_http', name="app.mjs")
assert_basic_application()
def test_node_es_modules_loader_http_indirect():
client.load('loader/es_modules_http_indirect', name="app.js")
assert_basic_application()
def test_node_es_modules_loader_websockets():
client.load('loader/es_modules_websocket', name="app.mjs")
message = 'blah'
_, sock, _ = ws.upgrade()
ws.frame_write(sock, ws.OP_TEXT, message)
frame = ws.frame_read(sock)
assert message == frame['data'].decode('utf-8'), 'mirror'
ws.frame_write(sock, ws.OP_TEXT, message)
frame = ws.frame_read(sock)
assert message == frame['data'].decode('utf-8'), 'mirror 2'
sock.close()