-
Notifications
You must be signed in to change notification settings - Fork 635
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1704 from minrk/green-const
ensure constants are in `zmq.__all__`
- Loading branch information
Showing
3 changed files
with
100 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,65 +1,99 @@ | ||
""" | ||
Test Imports - the quickest test to ensure that we haven't | ||
introduced version-incompatible syntax errors. | ||
""" | ||
# Copyright (C) PyZMQ Developers | ||
# Distributed under the terms of the Modified BSD License. | ||
|
||
# flake8: noqa: F401 | ||
|
||
from unittest import TestCase | ||
|
||
import pytest | ||
|
||
|
||
class TestImports(TestCase): | ||
"""Test Imports - the quickest test to ensure that we haven't | ||
introduced version-incompatible syntax errors.""" | ||
|
||
def test_toplevel(self): | ||
"""test toplevel import""" | ||
import zmq | ||
|
||
def test_core(self): | ||
"""test core imports""" | ||
from zmq import ( | ||
Context, | ||
Frame, | ||
Poller, | ||
Socket, | ||
constants, | ||
device, | ||
proxy, | ||
pyzmq_version, | ||
pyzmq_version_info, | ||
zmq_version, | ||
zmq_version_info, | ||
) | ||
|
||
def test_devices(self): | ||
"""test device imports""" | ||
import zmq.devices | ||
from zmq.devices import basedevice, monitoredqueue, monitoredqueuedevice | ||
|
||
def test_log(self): | ||
"""test log imports""" | ||
import zmq.log | ||
from zmq.log import handlers | ||
|
||
def test_eventloop(self): | ||
"""test eventloop imports""" | ||
try: | ||
import tornado | ||
except ImportError: | ||
pytest.skip('requires tornado') | ||
import zmq.eventloop | ||
from zmq.eventloop import ioloop, zmqstream | ||
|
||
def test_utils(self): | ||
"""test util imports""" | ||
import zmq.utils | ||
from zmq.utils import jsonapi, strtypes | ||
|
||
def test_ssh(self): | ||
"""test ssh imports""" | ||
from zmq.ssh import tunnel | ||
|
||
def test_decorators(self): | ||
"""test decorators imports""" | ||
from zmq.decorators import context, socket | ||
def test_toplevel(): | ||
"""test toplevel import""" | ||
import zmq | ||
|
||
|
||
def test_core(): | ||
"""test core imports""" | ||
from zmq import ( | ||
Context, | ||
Frame, | ||
Poller, | ||
Socket, | ||
constants, | ||
device, | ||
proxy, | ||
pyzmq_version, | ||
pyzmq_version_info, | ||
zmq_version, | ||
zmq_version_info, | ||
) | ||
|
||
|
||
def test_devices(): | ||
"""test device imports""" | ||
import zmq.devices | ||
from zmq.devices import basedevice, monitoredqueue, monitoredqueuedevice | ||
|
||
|
||
def test_log(): | ||
"""test log imports""" | ||
import zmq.log | ||
from zmq.log import handlers | ||
|
||
|
||
def test_eventloop(): | ||
"""test eventloop imports""" | ||
pytest.importorskip("tornado") | ||
import zmq.eventloop | ||
from zmq.eventloop import ioloop, zmqstream | ||
|
||
|
||
def test_utils(): | ||
"""test util imports""" | ||
import zmq.utils | ||
from zmq.utils import jsonapi, strtypes | ||
|
||
|
||
def test_ssh(): | ||
"""test ssh imports""" | ||
from zmq.ssh import tunnel | ||
|
||
|
||
def test_decorators(): | ||
"""test decorators imports""" | ||
from zmq.decorators import context, socket | ||
|
||
|
||
def test_zmq_all(): | ||
import zmq | ||
|
||
for name in zmq.__all__: | ||
assert hasattr(zmq, name) | ||
|
||
|
||
@pytest.mark.parametrize("pkgname", ["zmq", "zmq.green"]) | ||
@pytest.mark.parametrize( | ||
"attr", | ||
[ | ||
"RCVTIMEO", | ||
"PUSH", | ||
"zmq_version_info", | ||
"SocketOption", | ||
"device", | ||
"Socket", | ||
"Context", | ||
], | ||
) | ||
def test_all_exports(pkgname, attr): | ||
import zmq | ||
|
||
subpkg = pytest.importorskip(pkgname) | ||
for name in zmq.__all__: | ||
assert hasattr(subpkg, name) | ||
|
||
assert attr in subpkg.__all__ | ||
if attr not in ("Socket", "Context", "device"): | ||
assert getattr(subpkg, attr) is getattr(zmq, attr) |