summaryrefslogtreecommitdiff
path: root/exts/pip_find_deps_tests.py
blob: 74e064e396b4938a6ba24e813c828a1d8b96a524 (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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
#!/usr/bin/env python
# Copyright (C) 2014  Codethink Limited
#
# 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; version 2 of the License.
#
# 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, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

import unittest

import pip_find_deps
from pkg_resources import parse_requirements, parse_version

def reverse(xs):
    return xs[::-1]

class ConflictDetectionTests(unittest.TestCase):

    def setUp(self):
        reqs = ['a == 0.1', 'a == 0.2']
        self.test_requirements = parse_requirements(reqs)



    def test_eqs_two_different_versions(self):
        # ('==', '0.1') conflicts with ('==', '0.2')
        deps = pip_find_deps.resolve_version_constraints(
                            self.test_requirements)

        self.assertEqual(len(deps), 1)

        _, dep = deps.popitem()

        self.assertEqual(len(dep.conflicts), 1)
        self.assertEqual(dep.conflicts, [(('==', parse_version('0.1')),
                                         ('==', parse_version('0.2')))])

    def run_conflict_test(self, requirements, expected_conflicts):
        deps = pip_find_deps.resolve_version_constraints(requirements)

        self.assertEqual(len(deps), 1)

        _, dep = deps.popitem()

        print 'requirements: ', requirements
        print 'expected_conflicts: ', expected_conflicts
        print 'dep.conflicts: ', dep.conflicts

        self.assertEqual(len(dep.conflicts), 1)
        self.assertEqual(dep.conflicts, expected_conflicts)

    # TODO: squash this into one?
    def test_less_than(self):
        requirements = list(parse_requirements(['a == 0.1', 'a < 0.1']))
        expected_conflict = (('==', parse_version('0.1')),
                              ('<', parse_version('0.1')))

        # ('==', '0.1') conflicts with ('<', 0.1)
        self.run_conflict_test(requirements, [expected_conflict])

        # ('<', 0.1) conflicts with ('==', '0.1')
        self.run_conflict_test(reverse(requirements), [reverse(expected_conflict)])

    def test_greater_than(self):
        requirements = list(parse_requirements(['a == 0.1', 'a > 0.1']))
        expected_conflict = (('==', parse_version('0.1')),
                               ('>', parse_version('0.1')))

        # ('==', '0.1') conflicts with ('>', 0.1)
        self.run_conflict_test(requirements, [expected_conflict])

        # ('>', 0.1) conflicts with ('==', '0.1')
        self.run_conflict_test(reverse(requirements), [reverse(expected_conflict)])

    def test_eqs_nt_eqs(self):
        requirements = list(parse_requirements(['a == 0.1', 'a != 0.1']))
        expected_conflict = (('==', parse_version('0.1')),
                              ('!=', parse_version('0.1')))

        # ('==', '0.1') conflicts with ('!=', '0.1')
        self.run_conflict_test(requirements, [expected_conflict])

        # ('!=', '0.1') conflicts with ('==', '0.1')
        self.run_conflict_test(reverse(requirements), [reverse(expected_conflict)])

    def test_bounds_one_version(self):
        requirements = list(parse_requirements(['a < 0.1', 'a > 0.1']))
        expected_conflict = (('<', parse_version('0.1')),
                             ('>', parse_version('0.1')))

        # ('<', '0.1') conflicts with ('>', '0.1')
        self.run_conflict_test(requirements, [expected_conflict])

        # ('>', '0.1') conflicts with ('<', '0.1')
        self.run_conflict_test(reverse(requirements), [reverse(expected_conflict)])

    def test_bounds_two_versions(self):
        requirements = list(parse_requirements(['a < 0.1', 'a > 0.2']))
        expected_conflict = (('<', parse_version('0.1')),
                             ('>', parse_version('0.2')))

        # ('<', '0.1') conflicts with ('>', '0.2')
        self.run_conflict_test(requirements, [expected_conflict])

        # ('>', '0.2') conflicts with ('<', '0.1')
        self.run_conflict_test(reverse(requirements), [reverse(expected_conflict)])

    def test_eqs_bounds_two_versions(self):
        requirements = list(parse_requirements(['a <= 0.1', 'a >= 0.2']))
        expected_conflict = (('<=', parse_version('0.1')),
                             ('>=', parse_version('0.2')))

        # ('<=', 0.1) conflicts with ('>=', 0.2)
        self.run_conflict_test(requirements, [expected_conflict])

if __name__ == '__main__':
    suite = unittest.TestLoader().loadTestsFromTestCase(ConflictDetectionTests)
    unittest.TextTestRunner(verbosity=2).run(suite)