mirror of
https://github.com/openvswitch/ovs
synced 2025-08-22 01:51:26 +00:00
Python 2 reaches end-of-life on January 1, 2020, which is only a few months away. This means that OVS needs to stop depending on in the next release that should occur roughly that same time. Therefore, this commit removes all support for Python 2. It also makes Python 3 a mandatory build dependency. Some of the interesting consequences: - HAVE_PYTHON, HAVE_PYTHON2, and HAVE_PYTHON3 conditionals have been removed, since we now know that Python3 is available. - $PYTHON and $PYTHON2 are removed, and $PYTHON3 is always available. - Many tests for Python 2 support have been removed, and the ones that depended on Python 3 now run unconditionally. This allowed several macros in the testsuite to be removed, making the code clearer. This does make some of the changes to the testsuite files large due to indentation level changes. - #! lines for Python now use /usr/bin/python3 instead of /usr/bin/python. - Packaging depends on Python 3 packages. Acked-by: Numan Siddique <nusiddiq@redhat.com> Tested-by: Numan Siddique <nusiddiq@redhat.com> Signed-off-by: Ben Pfaff <blp@ovn.org>
32 lines
1.3 KiB
Plaintext
32 lines
1.3 KiB
Plaintext
AT_BANNER([JSON-RPC - Python3])
|
|
|
|
AT_SETUP([JSON-RPC request and successful reply - Python3])
|
|
AT_KEYWORDS([python jsonrpc])
|
|
AT_CHECK([$PYTHON3 $srcdir/test-jsonrpc.py --pidfile --detach --no-chdir listen punix:socket])
|
|
on_exit 'kill `cat test-jsonrpc.py.pid`'
|
|
AT_CHECK(
|
|
[[$PYTHON3 $srcdir/test-jsonrpc.py request unix:socket echo '[{"a": "b", "x": null}]']], [0],
|
|
[[{"error":null,"id":0,"result":[{"a":"b","x":null}]}
|
|
]])
|
|
AT_CLEANUP
|
|
|
|
AT_SETUP([JSON-RPC request and error reply - Python3])
|
|
AT_KEYWORDS([python jsonrpc])
|
|
AT_CHECK([$PYTHON3 $srcdir/test-jsonrpc.py --pidfile --detach --no-chdir listen punix:socket])
|
|
on_exit 'kill `cat test-jsonrpc.py.pid`'
|
|
AT_CHECK(
|
|
[[$PYTHON3 $srcdir/test-jsonrpc.py request unix:socket bad-request '[]']], [0],
|
|
[[{"error":{"error":"unknown method"},"id":0,"result":null}
|
|
]])
|
|
AT_CLEANUP
|
|
|
|
AT_SETUP([JSON-RPC notification - Python3])
|
|
AT_KEYWORDS([python jsonrpc])
|
|
AT_CHECK([$PYTHON3 $srcdir/test-jsonrpc.py --pidfile --detach --no-chdir listen punix:socket])
|
|
on_exit 'kill `cat test-jsonrpc.py.pid`'
|
|
AT_CHECK([test -e test-jsonrpc.py.pid])
|
|
AT_CHECK([[$PYTHON3 $srcdir/test-jsonrpc.py notify unix:socket shutdown '[]']])
|
|
# Wait for test-jsonrpc to die, based on its pidfile disappearing
|
|
OVS_WAIT_WHILE([test -e test-jsonrpc.py.pid])
|
|
AT_CLEANUP
|