File: test_version.py

package info (click to toggle)
pontos 26.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,808 kB
  • sloc: python: 44,771; makefile: 21; sh: 10; xml: 3
file content (54 lines) | stat: -rw-r--r-- 1,938 bytes parent folder | download
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
# Copyright (C) 2023 Greenbone AG
#
# SPDX-License-Identifier: GPL-3.0-or-later
#

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)

    def test_hash(self):
        self.assertEqual(
            hash(PEP440Version("22.2.2")), hash(PEP440Version("22.2.2"))
        )
        self.assertNotEqual(
            hash(PEP440Version("22.2.1")), hash(PEP440Version("22.2.2"))
        )
        self.assertNotEqual(hash(SemanticVersion("22.2.2")), hash("22.2.2"))
        self.assertNotEqual(
            hash(SemanticVersion("22.2.1")), hash(SemanticVersion("22.2.2"))
        )

    def test_hash_semantic(self):
        self.assertEqual(
            hash(SemanticVersion("22.2.2")), hash(SemanticVersion("22.2.2"))
        )
        self.assertNotEqual(
            hash(SemanticVersion("22.2.1")), hash(SemanticVersion("22.2.2"))
        )
        self.assertNotEqual(hash(SemanticVersion("22.2.2")), hash("22.2.2"))