Skip to content

Commit

Permalink
Test version comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
y0urself committed Mar 14, 2023
1 parent a4f1edf commit ee2e709
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions tests/version/test_version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# Copyright (C) 2023 Greenbone AG
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
# 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/>.

import unittest

from pontos.version.schemes._pep440 import PEP440Version
from pontos.version.schemes._semantic import SemanticVersion


class VersionTestCase(unittest.TestCase):
def test_equal(self):
self.assertEqual(PEP440Version("22.2.2"), PEP440Version("22.2.2"))
self.assertNotEqual(PEP440Version("22.2.1"), PEP440Version("22.2.2"))
self.assertNotEqual(SemanticVersion("22.2.2"), "22.2.2")
self.assertNotEqual(
SemanticVersion("22.2.1"), SemanticVersion("22.2.2")
)
self.assertNotEqual(PEP440Version("22.2.2"), "22.2.2")

def test_equal_other(self):
self.assertEqual(PEP440Version("22.2.2"), SemanticVersion("22.2.2"))

def test_equal_other_other_way_around(self):
self.assertEqual(SemanticVersion("22.2.2"), PEP440Version("22.2.2"))

def test_equal_raises(self):
with self.assertRaises(ValueError):
self.assertNotEqual(SemanticVersion("22.2.2"), 22)

with self.assertRaises(ValueError):
self.assertNotEqual(PEP440Version("22.2.2"), 22)

0 comments on commit ee2e709

Please sign in to comment.