summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorLuke Plant <L.Plant.98@cantab.net>2014-11-26 08:03:10 +0000
committerLuke Plant <L.Plant.98@cantab.net>2014-11-26 08:15:33 +0000
commit8e3c3be32d0c39a31997b905ebf0490280baa347 (patch)
tree427693cb3ebd1ef90fe798208cbe3c3294684d0f /tests
parent2a20bccda984e6d516bba3eb7e8f307185754a3b (diff)
[1.7.x] Fixed bug in circular dependency algo for migration dependencies.
Previous algo only worked if the first item was a part of the loop, and you would get an infinite loop otherwise (see test). To fix this, it was much easier to do a pre-pass. A bonus is that you now get an error message that actually helps you debug the dependency problem. Backport of ff3d746e8d8e8fbe6de287bd0f4c3a9fa23c18dc from master, with additional tests from c5def493d0993d65bf7d96f0a204006cbeaa6178
Diffstat (limited to 'tests')
-rw-r--r--tests/migrations/test_graph.py41
1 files changed, 41 insertions, 0 deletions
diff --git a/tests/migrations/test_graph.py b/tests/migrations/test_graph.py
index 3fcdd12667..3e066ed1f3 100644
--- a/tests/migrations/test_graph.py
+++ b/tests/migrations/test_graph.py
@@ -134,6 +134,20 @@ class GraphTests(TestCase):
graph.forwards_plan, ("app_a", "0003"),
)
+ def test_circular_graph_2(self):
+ graph = MigrationGraph()
+ graph.add_node(('A', '0001'), None)
+ graph.add_node(('C', '0001'), None)
+ graph.add_node(('B', '0001'), None)
+ graph.add_dependency('A.0001', ('A', '0001'),('B', '0001'))
+ graph.add_dependency('B.0001', ('B', '0001'),('A', '0001'))
+ graph.add_dependency('C.0001', ('C', '0001'),('B', '0001'))
+
+ self.assertRaises(
+ CircularDependencyError,
+ graph.forwards_plan, ('C', '0001')
+ )
+
def test_dfs(self):
graph = MigrationGraph()
root = ("app_a", "1")
@@ -188,3 +202,30 @@ class GraphTests(TestCase):
msg = "Migration app_a.0002 dependencies reference nonexistent child node ('app_a', '0002')"
with self.assertRaisesMessage(KeyError, msg):
graph.add_dependency("app_a.0002", ("app_a", "0002"), ("app_a", "0001"))
+
+ def test_infinite_loop(self):
+ """
+ Tests a complex dependency graph:
+
+ app_a: 0001 <-
+ \
+ app_b: 0001 <- x 0002 <-
+ / \
+ app_c: 0001<- <------------- x 0002
+
+ And apply sqashing on app_c.
+ """
+ graph = MigrationGraph()
+
+ graph.add_node(("app_a", "0001"), None)
+ graph.add_node(("app_b", "0001"), None)
+ graph.add_node(("app_b", "0002"), None)
+ graph.add_node(("app_c", "0001_squashed_0002"), None)
+
+ graph.add_dependency("app_b.0001", ("app_b", "0001"), ("app_c", "0001_squashed_0002"))
+ graph.add_dependency("app_b.0002", ("app_b", "0002"), ("app_a", "0001"))
+ graph.add_dependency("app_b.0002", ("app_b", "0002"), ("app_b", "0001"))
+ graph.add_dependency("app_c.0001_squashed_0002", ("app_c", "0001_squashed_0002"), ("app_b", "0002"))
+
+ with self.assertRaises(CircularDependencyError):
+ graph.forwards_plan(("app_c", "0001_squashed_0002"))