diff options
author | Kali Kaneko <kali@leap.se> | 2013-07-23 23:34:37 +0200 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2013-07-23 23:34:37 +0200 |
commit | cacb2d58c87e8ca6327f991a9ca62acfb095e6e2 (patch) | |
tree | 0ef1417430f26f7b249f09a4d4b42f534d15002e /src/leap/util/tests | |
parent | e5b50a129f6cb276fd20d9969cb7d300265f40e1 (diff) | |
parent | 1ed6f016b6d2c052a021cd974dbd8ab24c767dfb (diff) |
Merge remote-tracking branch 'ivan-github/feature/3224_code-in-release-builds' into develop
Diffstat (limited to 'src/leap/util/tests')
-rw-r--r-- | src/leap/util/tests/test_is_release_version.py | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/src/leap/util/tests/test_is_release_version.py b/src/leap/util/tests/test_is_release_version.py new file mode 100644 index 00000000..4199f603 --- /dev/null +++ b/src/leap/util/tests/test_is_release_version.py @@ -0,0 +1,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) |