summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Ipsum <richard.ipsum@codethink.co.uk>2014-11-06 17:37:46 +0000
committerRichard Ipsum <richard.ipsum@codethink.co.uk>2014-11-06 17:37:46 +0000
commitb0bfdec40d24e9080b8b30d4a2d73e3061875717 (patch)
tree681b879021489447d49c1f5c49d3a59c2621d668
parent0098bb90e9585307cbacb96acda89a806f1c219e (diff)
downloadimport-b0bfdec40d24e9080b8b30d4a2d73e3061875717.tar.gz
add test
-rwxr-xr-xexts/pip_find_deps_tests.py49
1 files changed, 49 insertions, 0 deletions
diff --git a/exts/pip_find_deps_tests.py b/exts/pip_find_deps_tests.py
new file mode 100755
index 0000000..a98bc73
--- /dev/null
+++ b/exts/pip_find_deps_tests.py
@@ -0,0 +1,49 @@
+#!/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
+import pkg_resources
+
+class ConflictDetectionTests(unittest.TestCase):
+
+ def setUp(self):
+ reqs = ['a == 0.1', 'a == 0.2']
+ self.test_requirements = pkg_resources.parse_requirements(reqs)
+
+ # ('==', '0.1') conflicts with ('<', 0.1)
+ # ('==', '0.1') conflicts with ('>', 0.1)
+ # ('==', '0.1') conflicts with ('!=', 0.1)
+
+ # ('<', '0.1') conflicts with ('>', '0.1')
+ # ('<=', 0.1) conflicts with ('>=', 0.2)
+ # ('<', '0.1') conflicts with ('>', '0.2')
+
+ 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)
+
+
+if __name__ == '__main__':
+ suite = unittest.TestLoader().loadTestsFromTestCase(ConflictDetectionTests)
+ unittest.TextTestRunner(verbosity=2).run(suite) \ No newline at end of file