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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
#!/usr/bin/env python
#
# test_version.py
# Tests for library function: version_cmp().
#
# Copyright (c) 2017 by
# Network Device Education Foundation, Inc. ("NetDEF")
#
# Permission to use, copy, modify, and/or distribute this software
# for any purpose with or without fee is hereby granted, provided
# that the above copyright notice and this permission notice appear
# in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND NETDEF DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NETDEF BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY
# DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
# WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
# ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
# OF THIS SOFTWARE.
#
"""
Tests for the version_cmp() function.
"""
import os
import sys
import pytest
# Save the Current Working Directory to find lib files.
CWD = os.path.dirname(os.path.realpath(__file__))
sys.path.append(os.path.join(CWD, "../../"))
# pylint: disable=C0413
from lib.topotest import version_cmp
def test_valid_versions():
"Test valid version compare results"
curver = "3.0"
samever = "3"
oldver = "2.0"
newver = "3.0.1"
newerver = "3.0.11"
vercustom = "3.0-dev"
verysmallinc = "3.0.0.0.0.0.0.1"
assert version_cmp(curver, oldver) == 1
assert version_cmp(curver, newver) == -1
assert version_cmp(curver, curver) == 0
assert version_cmp(curver, newerver) == -1
assert version_cmp(newver, newerver) == -1
assert version_cmp(curver, samever) == 0
assert version_cmp(curver, vercustom) == 0
assert version_cmp(vercustom, vercustom) == 0
assert version_cmp(vercustom, oldver) == 1
assert version_cmp(vercustom, newver) == -1
assert version_cmp(vercustom, samever) == 0
assert version_cmp(curver, verysmallinc) == -1
assert version_cmp(newver, verysmallinc) == 1
assert version_cmp(verysmallinc, verysmallinc) == 0
assert version_cmp(vercustom, verysmallinc) == -1
def test_invalid_versions():
"Test invalid version strings"
curver = "3.0"
badver1 = ".1"
badver2 = "-1.0"
badver3 = "."
badver4 = "3.-0.3"
with pytest.raises(ValueError):
assert version_cmp(curver, badver1)
assert version_cmp(curver, badver2)
assert version_cmp(curver, badver3)
assert version_cmp(curver, badver4)
def test_regression_1():
"""
Test regression on the following type of comparison: '3.0.2' > '3'
Expected result is 1.
"""
assert version_cmp("3.0.2", "3") == 1
|