test_graph.py 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. import pytest
  2. from rdflib import Graph, Namespace, URIRef
  3. from lakesuperior.model.graph.graph import SimpleGraph, Imr
  4. @pytest.fixture(scope='class')
  5. def trp():
  6. return (
  7. (URIRef('urn:s:0'), URIRef('urn:p:0'), URIRef('urn:o:0')),
  8. (URIRef('urn:s:0'), URIRef('urn:p:0'), URIRef('urn:o:0')),
  9. (URIRef('urn:s:0'), URIRef('urn:p:1'), URIRef('urn:o:0')),
  10. (URIRef('urn:s:0'), URIRef('urn:p:1'), URIRef('urn:o:1')),
  11. (URIRef('urn:s:1'), URIRef('urn:p:1'), URIRef('urn:o:1')),
  12. (URIRef('urn:s:1'), URIRef('urn:p:2'), URIRef('urn:o:2')),
  13. )
  14. @pytest.mark.usefixtures('trp')
  15. class TestGraphOps:
  16. """
  17. Test various graph operations.
  18. """
  19. def test_len(self, trp):
  20. """
  21. Test the length of a graph with and without duplicates.
  22. """
  23. gr = SimpleGraph()
  24. assert len(gr) == 0
  25. gr.add((trp[0],))
  26. assert len(gr) == 1
  27. gr.add((trp[1],)) # Same values
  28. assert len(gr) == 1
  29. gr.add((trp[2],))
  30. assert len(gr) == 2
  31. gr.add(trp)
  32. assert len(gr) == 5
  33. def test_dup(self, trp):
  34. """
  35. Test operations with duplicate triples.
  36. """
  37. gr = SimpleGraph()
  38. #import pdb; pdb.set_trace()
  39. gr.add((trp[0],))
  40. assert trp[1] in gr
  41. assert trp[2] not in gr
  42. def test_remove(self, trp):
  43. """
  44. Test adding and removing triples.
  45. """
  46. gr = SimpleGraph()
  47. gr.add(trp)
  48. gr.remove(trp[1])
  49. assert len(gr) == 4
  50. assert trp[0] not in gr
  51. assert trp[1] not in gr