_graphviz_test.py 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # yamify - define family trees in YAML
  2. #
  3. # Copyright (C) 2020 Fabian Peter Hammerle <fabian@hammerle.me>
  4. #
  5. # This program is free software: you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation, either version 3 of the License, or
  8. # (at your option) any later version.
  9. #
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. # GNU General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU General Public License
  16. # along with this program. If not, see <https://www.gnu.org/licenses/>.
  17. from yamily import Person, PersonCollection
  18. from yamily._graphviz import digraph
  19. def test_digraph_single_family():
  20. collection = PersonCollection()
  21. child = Person("child")
  22. child.father = Person("father")
  23. child.mother = Person("mother")
  24. collection.add_person(child)
  25. graph = digraph(collection)
  26. expected_graph = """digraph yamily {
  27. subgraph cluster_mother {
  28. rank=same style=invisible
  29. mother [label=mother shape=box]
  30. "relation-father-mother" [shape=point width=0]
  31. father -> "relation-father-mother" [arrowhead=none constraint=False]
  32. mother -> "relation-father-mother" [arrowhead=none constraint=False]
  33. father [label=father shape=box]
  34. }
  35. subgraph cluster_child {
  36. rank=same style=invisible
  37. child [label=child shape=box]
  38. }
  39. "relation-father-mother" -> child
  40. }"""
  41. assert graph.source == expected_graph