summaryrefslogtreecommitdiff
path: root/src/leap/util/tests/test_is_release_version.py
blob: 4199f603f0057e14f1359acfebd62e599478d935 (plain)
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
# -*- coding: utf-8 -*-
# test_is_release_version.py
# Copyright (C) 2013 LEAP
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
"""
tests for _is_release_version function
"""

import unittest
from leap.common.testing.basetest import BaseLeapTest
from leap.util import _is_release_version as is_release_version


class TestIsReleaseVersion(BaseLeapTest):
    """Tests for release version check."""

    def setUp(self):
        pass

    def tearDown(self):
        pass

    def test_git_version(self):
        version = '0.2.3-12-ge5b50a1'
        self.assertFalse(is_release_version(version))

    def test_release(self):
        version = '0.2.4'
        self.assertTrue(is_release_version(version))

    def test_release_candidate(self):
        version = '0.2.4-rc1'
        self.assertFalse(is_release_version(version))

    def test_complex_version(self):
        version = '12.5.2.4-rc12.dev.alpha1'
        self.assertFalse(is_release_version(version))

    def test_super_high_version(self):
        version = '12.5.2.4.45'
        self.assertTrue(is_release_version(version))


if __name__ == "__main__":
    unittest.main(verbosity=2)