File: test_version.py

package info (click to toggle)
pyzmq 27.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,984 kB
  • sloc: python: 15,189; ansic: 285; makefile: 169; sh: 85
file content (43 lines) | stat: -rw-r--r-- 1,208 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Copyright (C) PyZMQ Developers
# Distributed under the terms of the Modified BSD License.


from unittest import TestCase

import zmq
from zmq.sugar import version


class TestVersion(TestCase):
    def test_pyzmq_version(self):
        vs = zmq.pyzmq_version()
        vs2 = zmq.__version__
        assert isinstance(vs, str)
        if zmq.__revision__:
            assert vs == '@'.join(vs2, zmq.__revision__)
        else:
            assert vs == vs2
        if version.VERSION_EXTRA:
            assert version.VERSION_EXTRA in vs
            assert version.VERSION_EXTRA in vs2

    def test_pyzmq_version_info(self):
        info = zmq.pyzmq_version_info()
        assert isinstance(info, tuple)
        for n in info[:3]:
            assert isinstance(n, int)
        if version.VERSION_EXTRA:
            assert len(info) == 4
            assert info[-1] == float('inf')
        else:
            assert len(info) == 3

    def test_zmq_version_info(self):
        info = zmq.zmq_version_info()
        assert isinstance(info, tuple)
        for n in info[:3]:
            assert isinstance(n, int)

    def test_zmq_version(self):
        v = zmq.zmq_version()
        assert isinstance(v, str)