test_graph.py 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896
  1. import pdb
  2. import pytest
  3. from shutil import rmtree
  4. from rdflib import Graph, Namespace, URIRef
  5. from lakesuperior.model.rdf.graph import Graph
  6. from lakesuperior.store.ldp_rs.lmdb_store import LmdbStore
  7. @pytest.fixture(scope='class')
  8. def store():
  9. """
  10. Test LMDB store.
  11. This store has a different life cycle than the one used for tests in higher
  12. levels of the stack and is not bootstrapped (i.e. starts completely empty).
  13. """
  14. env_path = '/tmp/test_lmdbstore'
  15. # Remove previous test DBs
  16. rmtree(env_path, ignore_errors=True)
  17. store = LmdbStore(env_path)
  18. yield store
  19. store.close()
  20. store.destroy()
  21. @pytest.fixture(scope='class')
  22. def trp():
  23. return (
  24. (URIRef('urn:s:0'), URIRef('urn:p:0'), URIRef('urn:o:0')),
  25. # Exact same as [0].
  26. (URIRef('urn:s:0'), URIRef('urn:p:0'), URIRef('urn:o:0')),
  27. # NOTE: s and o are in reversed order.
  28. (URIRef('urn:o:0'), URIRef('urn:p:0'), URIRef('urn:s:0')),
  29. (URIRef('urn:s:0'), URIRef('urn:p:1'), URIRef('urn:o:0')),
  30. (URIRef('urn:s:0'), URIRef('urn:p:1'), URIRef('urn:o:1')),
  31. (URIRef('urn:s:1'), URIRef('urn:p:1'), URIRef('urn:o:1')),
  32. (URIRef('urn:s:1'), URIRef('urn:p:2'), URIRef('urn:o:2')),
  33. )
  34. @pytest.mark.usefixtures('trp')
  35. @pytest.mark.usefixtures('store')
  36. class TestGraphInit:
  37. """
  38. Test initialization of graphs with different base data sets.
  39. """
  40. def test_empty(self, store):
  41. """
  42. Test creation of an empty graph.
  43. """
  44. # No transaction needed to init an empty graph.
  45. gr = Graph(store)
  46. # len() should not need a DB transaction open.
  47. assert len(gr) == 0
  48. def test_init_triples(self, trp, store):
  49. """
  50. Test creation using a Python set.
  51. """
  52. with store.txn_ctx():
  53. gr = Graph(store, data=set(trp))
  54. assert len(gr) == 6
  55. for t in trp:
  56. assert t in gr
  57. @pytest.mark.usefixtures('trp')
  58. @pytest.mark.usefixtures('store')
  59. class TestGraphLookup:
  60. """
  61. Test triple lookup.
  62. """
  63. def test_lookup_all_unbound(self, trp, store):
  64. """
  65. Test lookup ? ? ? (all unbound)
  66. """
  67. with store.txn_ctx():
  68. gr = Graph(store, data=set(trp))
  69. flt_gr = gr.lookup((None, None, None))
  70. assert len(flt_gr) == 6
  71. assert trp[0] in flt_gr
  72. assert trp[2] in flt_gr
  73. assert trp[3] in flt_gr
  74. assert trp[4] in flt_gr
  75. assert trp[5] in flt_gr
  76. assert trp[6] in flt_gr
  77. def test_lookup_s(self, trp, store):
  78. """
  79. Test lookup s ? ?
  80. """
  81. with store.txn_ctx():
  82. gr = Graph(store, data=set(trp))
  83. flt_gr = gr.lookup((URIRef('urn:s:0'), None, None))
  84. assert len(flt_gr) == 3
  85. assert trp[0] in flt_gr
  86. assert trp[3] in flt_gr
  87. assert trp[4] in flt_gr
  88. assert trp[2] not in flt_gr
  89. assert trp[5] not in flt_gr
  90. assert trp[6] not in flt_gr
  91. # Test for empty results.
  92. empty_flt_gr = gr.lookup((URIRef('urn:s:8'), None, None))
  93. assert len(empty_flt_gr) == 0
  94. def test_lookup_p(self, trp, store):
  95. """
  96. Test lookup ? p ?
  97. """
  98. with store.txn_ctx():
  99. gr = Graph(store, data=set(trp))
  100. flt_gr = gr.lookup((None, URIRef('urn:p:0'), None))
  101. assert len(flt_gr) == 2
  102. assert trp[0] in flt_gr
  103. assert trp[2] in flt_gr
  104. assert trp[3] not in flt_gr
  105. assert trp[4] not in flt_gr
  106. assert trp[5] not in flt_gr
  107. assert trp[6] not in flt_gr
  108. # Test for empty results.
  109. empty_flt_gr = gr.lookup((None, URIRef('urn:p:8'), None))
  110. assert len(empty_flt_gr) == 0
  111. def test_lookup_o(self, trp, store):
  112. """
  113. Test lookup ? ? o
  114. """
  115. with store.txn_ctx():
  116. gr = Graph(store, data=set(trp))
  117. flt_gr = gr.lookup((None, None, URIRef('urn:o:1')))
  118. assert len(flt_gr) == 2
  119. assert trp[4] in flt_gr
  120. assert trp[5] in flt_gr
  121. assert trp[0] not in flt_gr
  122. assert trp[2] not in flt_gr
  123. assert trp[3] not in flt_gr
  124. assert trp[6] not in flt_gr
  125. # Test for empty results.
  126. empty_flt_gr = gr.lookup((None, None, URIRef('urn:o:8')))
  127. assert len(empty_flt_gr) == 0
  128. def test_lookup_sp(self, trp, store):
  129. """
  130. Test lookup s p ?
  131. """
  132. with store.txn_ctx():
  133. gr = Graph(store, data=set(trp))
  134. flt_gr = gr.lookup((URIRef('urn:s:0'), URIRef('urn:p:1'), None))
  135. assert len(flt_gr) == 2
  136. assert trp[3] in flt_gr
  137. assert trp[4] in flt_gr
  138. assert trp[0] not in flt_gr
  139. assert trp[2] not in flt_gr
  140. assert trp[5] not in flt_gr
  141. assert trp[6] not in flt_gr
  142. # Test for empty results.
  143. empty_flt_gr = gr.lookup((URIRef('urn:s:0'), URIRef('urn:p:2'), None))
  144. assert len(empty_flt_gr) == 0
  145. def test_lookup_so(self, trp, store):
  146. """
  147. Test lookup s ? o
  148. """
  149. with store.txn_ctx():
  150. gr = Graph(store, data=set(trp))
  151. flt_gr = gr.lookup((URIRef('urn:s:0'), None, URIRef('urn:o:0')))
  152. assert len(flt_gr) == 2
  153. assert trp[0] in flt_gr
  154. assert trp[3] in flt_gr
  155. assert trp[2] not in flt_gr
  156. assert trp[4] not in flt_gr
  157. assert trp[5] not in flt_gr
  158. assert trp[6] not in flt_gr
  159. # Test for empty results.
  160. empty_flt_gr = gr.lookup((URIRef('urn:s:0'), None, URIRef('urn:o:2')))
  161. assert len(empty_flt_gr) == 0
  162. def test_lookup_po(self, trp, store):
  163. """
  164. Test lookup ? p o
  165. """
  166. with store.txn_ctx():
  167. gr = Graph(store, data=set(trp))
  168. flt_gr = gr.lookup((None, URIRef('urn:p:1'), URIRef('urn:o:1')))
  169. assert len(flt_gr) == 2
  170. assert trp[4] in flt_gr
  171. assert trp[5] in flt_gr
  172. assert trp[0] not in flt_gr
  173. assert trp[2] not in flt_gr
  174. assert trp[3] not in flt_gr
  175. assert trp[6] not in flt_gr
  176. # Test for empty results.
  177. empty_flt_gr = gr.lookup((None, URIRef('urn:p:1'), URIRef('urn:o:2')))
  178. assert len(empty_flt_gr) == 0
  179. def test_lookup_spo(self, trp, store):
  180. """
  181. Test lookup s p o
  182. """
  183. with store.txn_ctx():
  184. gr = Graph(store, data=set(trp))
  185. flt_gr = gr.lookup(
  186. (URIRef('urn:s:1'), URIRef('urn:p:1'), URIRef('urn:o:1'))
  187. )
  188. assert len(flt_gr) == 1
  189. assert trp[5] in flt_gr
  190. assert trp[0] not in flt_gr
  191. assert trp[2] not in flt_gr
  192. assert trp[3] not in flt_gr
  193. assert trp[4] not in flt_gr
  194. assert trp[6] not in flt_gr
  195. # Test for empty results.
  196. empty_flt_gr = gr.lookup(
  197. (URIRef('urn:s:1'), URIRef('urn:p:1'), URIRef('urn:o:2'))
  198. )
  199. assert len(empty_flt_gr) == 0
  200. @pytest.mark.usefixtures('trp')
  201. @pytest.mark.usefixtures('store')
  202. class TestGraphSlicing:
  203. """
  204. Test triple lookup.
  205. """
  206. # TODO
  207. pass
  208. @pytest.mark.usefixtures('trp')
  209. class TestGraphOps:
  210. """
  211. Test various graph operations.
  212. """
  213. def test_len(self, trp, store):
  214. """
  215. Test the length of a graph with and without duplicates.
  216. """
  217. with store.txn_ctx():
  218. gr = Graph(store)
  219. assert len(gr) == 0
  220. gr.add((trp[0],))
  221. assert len(gr) == 1
  222. gr.add((trp[1],)) # Same values
  223. assert len(gr) == 1
  224. gr.add((trp[2],))
  225. assert len(gr) == 2
  226. gr.add(trp)
  227. assert len(gr) == 6
  228. def test_dup(self, trp, store):
  229. """
  230. Test operations with duplicate triples.
  231. """
  232. with store.txn_ctx():
  233. gr = Graph(store)
  234. gr.add((trp[0],))
  235. assert trp[1] in gr
  236. assert trp[2] not in gr
  237. def test_remove(self, trp, store):
  238. """
  239. Test adding and removing triples.
  240. """
  241. with store.txn_ctx():
  242. gr = Graph(store)
  243. gr.add(trp)
  244. gr.remove(trp[0])
  245. assert len(gr) == 5
  246. assert trp[0] not in gr
  247. assert trp[1] not in gr
  248. # This is the duplicate triple.
  249. gr.remove(trp[1])
  250. assert len(gr) == 5
  251. # This is the triple in reverse order.
  252. gr.remove(trp[2])
  253. assert len(gr) == 4
  254. gr.remove(trp[4])
  255. assert len(gr) == 3
  256. def test_union(self, trp, store):
  257. """
  258. Test graph union.
  259. """
  260. with store.txn_ctx():
  261. gr1 = Graph(store)
  262. gr2 = Graph(store)
  263. gr1.add(trp[0:3])
  264. gr2.add(trp[2:6])
  265. gr3 = gr1 | gr2
  266. assert len(gr3) == 5
  267. assert trp[0] in gr3
  268. assert trp[4] in gr3
  269. def test_ip_union(self, trp, store):
  270. """
  271. Test graph in-place union.
  272. """
  273. with store.txn_ctx():
  274. gr1 = Graph(store)
  275. gr2 = Graph(store)
  276. gr1.add(trp[0:3])
  277. gr2.add(trp[2:6])
  278. gr1 |= gr2
  279. assert len(gr1) == 5
  280. assert trp[0] in gr1
  281. assert trp[4] in gr1
  282. def test_addition(self, trp):
  283. """
  284. Test graph addition.
  285. """
  286. gr1 = Graph()
  287. gr2 = Graph()
  288. gr1.add(trp[0:3])
  289. gr2.add(trp[2:6])
  290. gr3 = gr1 + gr2
  291. assert len(gr3) == 5
  292. assert trp[0] in gr3
  293. assert trp[4] in gr3
  294. def test_ip_addition(self, trp):
  295. """
  296. Test graph in-place addition.
  297. """
  298. gr1 = Graph()
  299. gr2 = Graph()
  300. gr1.add(trp[0:3])
  301. gr2.add(trp[2:6])
  302. gr1 += gr2
  303. assert len(gr1) == 5
  304. assert trp[0] in gr1
  305. assert trp[4] in gr1
  306. def test_subtraction(self, trp):
  307. """
  308. Test graph addition.
  309. """
  310. gr1 = Graph()
  311. gr2 = Graph()
  312. gr1.add(trp[0:4])
  313. gr2.add(trp[2:6])
  314. gr3 = gr1 - gr2
  315. assert len(gr3) == 1
  316. assert trp[0] in gr3
  317. assert trp[1] in gr3
  318. assert trp[2] not in gr3
  319. assert trp[3] not in gr3
  320. assert trp[4] not in gr3
  321. gr3 = gr2 - gr1
  322. assert len(gr3) == 2
  323. assert trp[0] not in gr3
  324. assert trp[1] not in gr3
  325. assert trp[2] not in gr3
  326. assert trp[3] not in gr3
  327. assert trp[4] in gr3
  328. assert trp[5] in gr3
  329. def test_ip_subtraction(self, trp):
  330. """
  331. Test graph in-place addition.
  332. """
  333. gr1 = Graph()
  334. gr2 = Graph()
  335. gr1.add(trp[0:4])
  336. gr2.add(trp[2:6])
  337. gr1 -= gr2
  338. assert len(gr1) == 1
  339. assert trp[0] in gr1
  340. assert trp[1] in gr1
  341. assert trp[2] not in gr1
  342. assert trp[3] not in gr1
  343. assert trp[4] not in gr1
  344. def test_intersect(self, trp):
  345. """
  346. Test graph intersextion.
  347. """
  348. gr1 = Graph()
  349. gr2 = Graph()
  350. gr1.add(trp[0:4])
  351. gr2.add(trp[2:6])
  352. gr3 = gr1 & gr2
  353. assert len(gr3) == 2
  354. assert trp[2] in gr3
  355. assert trp[3] in gr3
  356. assert trp[0] not in gr3
  357. assert trp[5] not in gr3
  358. def test_ip_intersect(self, trp):
  359. """
  360. Test graph intersextion.
  361. """
  362. gr1 = Graph()
  363. gr2 = Graph()
  364. gr1.add(trp[0:4])
  365. gr2.add(trp[2:6])
  366. gr1 &= gr2
  367. assert len(gr1) == 2
  368. assert trp[2] in gr1
  369. assert trp[3] in gr1
  370. assert trp[0] not in gr1
  371. assert trp[5] not in gr1
  372. def test_xor(self, trp):
  373. """
  374. Test graph intersextion.
  375. """
  376. gr1 = Graph()
  377. gr2 = Graph()
  378. gr1.add(trp[0:4])
  379. gr2.add(trp[2:6])
  380. gr3 = gr1 ^ gr2
  381. assert len(gr3) == 3
  382. assert trp[2] not in gr3
  383. assert trp[3] not in gr3
  384. assert trp[0] in gr3
  385. assert trp[5] in gr3
  386. def test_ip_xor(self, trp):
  387. """
  388. Test graph intersextion.
  389. """
  390. gr1 = Graph()
  391. gr2 = Graph()
  392. gr1.add(trp[0:4])
  393. gr2.add(trp[2:6])
  394. gr1 ^= gr2
  395. assert len(gr1) == 3
  396. assert trp[2] not in gr1
  397. assert trp[3] not in gr1
  398. assert trp[0] in gr1
  399. assert trp[5] in gr1
  400. @pytest.mark.usefixtures('trp')
  401. class TestNamedGraphOps:
  402. """
  403. Test various operations on a named graph.
  404. """
  405. def test_len(self, trp):
  406. """
  407. Test the length of a graph with and without duplicates.
  408. """
  409. imr = Graph(uri='http://example.edu/imr01')
  410. assert len(imr) == 0
  411. imr.add((trp[0],))
  412. assert len(imr) == 1
  413. imr.add((trp[1],)) # Same values
  414. assert len(imr) == 1
  415. imr.add((trp[2],))
  416. assert len(imr) == 2
  417. imr.add(trp)
  418. assert len(imr) == 6
  419. def test_dup(self, trp):
  420. """
  421. Test operations with duplicate triples.
  422. """
  423. imr = Graph(uri='http://example.edu/imr01')
  424. #import pdb; pdb.set_trace()
  425. imr.add((trp[0],))
  426. assert trp[1] in imr
  427. assert trp[2] not in imr
  428. def test_remove(self, trp):
  429. """
  430. Test adding and removing triples.
  431. """
  432. imr = Graph(uri='http://example.edu/imr01')
  433. imr.add(trp)
  434. imr.remove(trp[0])
  435. assert len(imr) == 5
  436. assert trp[0] not in imr
  437. assert trp[1] not in imr
  438. # This is the duplicate triple.
  439. imr.remove(trp[1])
  440. assert len(imr) == 5
  441. # This is the triple in reverse order.
  442. imr.remove(trp[2])
  443. assert len(imr) == 4
  444. imr.remove(trp[4])
  445. assert len(imr) == 3
  446. def test_union(self, trp):
  447. """
  448. Test graph union.
  449. """
  450. gr1 = Graph(uri='http://example.edu/imr01')
  451. gr2 = Graph(uri='http://example.edu/imr02')
  452. gr1.add(trp[0:3])
  453. gr2.add(trp[2:6])
  454. gr3 = gr1 | gr2
  455. assert len(gr3) == 5
  456. assert trp[0] in gr3
  457. assert trp[4] in gr3
  458. assert gr3.uri == URIRef('http://example.edu/imr01')
  459. def test_ip_union(self, trp):
  460. """
  461. Test graph in-place union.
  462. """
  463. gr1 = Graph(uri='http://example.edu/imr01')
  464. gr2 = Graph(uri='http://example.edu/imr02')
  465. gr1.add(trp[0:3])
  466. gr2.add(trp[2:6])
  467. gr1 |= gr2
  468. assert len(gr1) == 5
  469. assert trp[0] in gr1
  470. assert trp[4] in gr1
  471. assert gr1.uri == URIRef('http://example.edu/imr01')
  472. def test_addition(self, trp):
  473. """
  474. Test graph addition.
  475. """
  476. gr1 = Graph(uri='http://example.edu/imr01')
  477. gr2 = Graph(uri='http://example.edu/imr02')
  478. gr1.add(trp[0:3])
  479. gr2.add(trp[2:6])
  480. gr3 = gr1 + gr2
  481. assert len(gr3) == 5
  482. assert trp[0] in gr3
  483. assert trp[4] in gr3
  484. assert gr3.uri == URIRef('http://example.edu/imr01')
  485. def test_ip_addition(self, trp):
  486. """
  487. Test graph in-place addition.
  488. """
  489. gr1 = Graph(uri='http://example.edu/imr01')
  490. gr2 = Graph(uri='http://example.edu/imr02')
  491. gr1.add(trp[0:3])
  492. gr2.add(trp[2:6])
  493. gr1 += gr2
  494. assert len(gr1) == 5
  495. assert trp[0] in gr1
  496. assert trp[4] in gr1
  497. assert gr1.uri == URIRef('http://example.edu/imr01')
  498. def test_subtraction(self, trp):
  499. """
  500. Test graph addition.
  501. """
  502. gr1 = Graph(uri='http://example.edu/imr01')
  503. gr2 = Graph(uri='http://example.edu/imr02')
  504. gr1.add(trp[0:4])
  505. gr2.add(trp[2:6])
  506. gr3 = gr1 - gr2
  507. assert len(gr3) == 1
  508. assert trp[0] in gr3
  509. assert trp[1] in gr3
  510. assert trp[2] not in gr3
  511. assert trp[3] not in gr3
  512. assert trp[4] not in gr3
  513. assert gr3.uri == URIRef('http://example.edu/imr01')
  514. gr3 = gr2 - gr1
  515. assert len(gr3) == 2
  516. assert trp[0] not in gr3
  517. assert trp[1] not in gr3
  518. assert trp[2] not in gr3
  519. assert trp[3] not in gr3
  520. assert trp[4] in gr3
  521. assert trp[5] in gr3
  522. assert gr3.uri == URIRef('http://example.edu/imr02')
  523. def test_ip_subtraction(self, trp):
  524. """
  525. Test graph in-place addition.
  526. """
  527. gr1 = Graph(uri='http://example.edu/imr01')
  528. gr2 = Graph(uri='http://example.edu/imr02')
  529. gr1.add(trp[0:4])
  530. gr2.add(trp[2:6])
  531. gr1 -= gr2
  532. assert len(gr1) == 1
  533. assert trp[0] in gr1
  534. assert trp[1] in gr1
  535. assert trp[2] not in gr1
  536. assert trp[3] not in gr1
  537. assert trp[4] not in gr1
  538. assert gr1.uri == URIRef('http://example.edu/imr01')
  539. def test_intersect(self, trp):
  540. """
  541. Test graph intersextion.
  542. """
  543. gr1 = Graph(uri='http://example.edu/imr01')
  544. gr2 = Graph(uri='http://example.edu/imr02')
  545. gr1.add(trp[0:4])
  546. gr2.add(trp[2:6])
  547. gr3 = gr1 & gr2
  548. assert len(gr3) == 2
  549. assert trp[2] in gr3
  550. assert trp[3] in gr3
  551. assert trp[0] not in gr3
  552. assert trp[5] not in gr3
  553. assert gr3.uri == URIRef('http://example.edu/imr01')
  554. def test_ip_intersect(self, trp):
  555. """
  556. Test graph intersextion.
  557. """
  558. gr1 = Graph(uri='http://example.edu/imr01')
  559. gr2 = Graph(uri='http://example.edu/imr02')
  560. gr1.add(trp[0:4])
  561. gr2.add(trp[2:6])
  562. gr1 &= gr2
  563. assert len(gr1) == 2
  564. assert trp[2] in gr1
  565. assert trp[3] in gr1
  566. assert trp[0] not in gr1
  567. assert trp[5] not in gr1
  568. assert gr1.uri == URIRef('http://example.edu/imr01')
  569. def test_xor(self, trp):
  570. """
  571. Test graph intersextion.
  572. """
  573. gr1 = Graph(uri='http://example.edu/imr01')
  574. gr2 = Graph(uri='http://example.edu/imr02')
  575. gr1.add(trp[0:4])
  576. gr2.add(trp[2:6])
  577. gr3 = gr1 ^ gr2
  578. assert len(gr3) == 3
  579. assert trp[2] not in gr3
  580. assert trp[3] not in gr3
  581. assert trp[0] in gr3
  582. assert trp[5] in gr3
  583. assert gr3.uri == URIRef('http://example.edu/imr01')
  584. def test_ip_xor(self, trp):
  585. """
  586. Test graph intersextion.
  587. """
  588. gr1 = Graph(uri='http://example.edu/imr01')
  589. gr2 = Graph(uri='http://example.edu/imr02')
  590. gr1.add(trp[0:4])
  591. gr2.add(trp[2:6])
  592. gr1 ^= gr2
  593. assert len(gr1) == 3
  594. assert trp[2] not in gr1
  595. assert trp[3] not in gr1
  596. assert trp[0] in gr1
  597. assert trp[5] in gr1
  598. assert gr1.uri == URIRef('http://example.edu/imr01')
  599. @pytest.mark.usefixtures('trp')
  600. class TestHybridOps:
  601. """
  602. Test operations between IMR and graph.
  603. """
  604. def test_union(self, trp):
  605. """
  606. Test hybrid IMR + graph union.
  607. """
  608. gr1 = Graph(uri='http://example.edu/imr01')
  609. gr2 = Graph()
  610. gr1.add(trp[0:3])
  611. gr2.add(trp[2:6])
  612. gr3 = gr1 | gr2
  613. assert len(gr3) == 5
  614. assert trp[0] in gr3
  615. assert trp[4] in gr3
  616. assert isinstance(gr3, Graph)
  617. assert gr3.uri == URIRef('http://example.edu/imr01')
  618. gr4 = gr2 | gr1
  619. assert isinstance(gr4, Graph)
  620. assert gr3 == gr4
  621. def test_ip_union_imr(self, trp):
  622. """
  623. Test IMR + graph in-place union.
  624. """
  625. gr1 = Graph(uri='http://example.edu/imr01')
  626. gr2 = Graph()
  627. gr1.add(trp[0:3])
  628. gr2.add(trp[2:6])
  629. gr1 |= gr2
  630. assert len(gr1) == 5
  631. assert trp[0] in gr1
  632. assert trp[4] in gr1
  633. assert gr1.uri == URIRef('http://example.edu/imr01')
  634. def test_ip_union_gr(self, trp):
  635. """
  636. Test graph + IMR in-place union.
  637. """
  638. gr1 = Graph()
  639. gr2 = Graph(uri='http://example.edu/imr01')
  640. gr1.add(trp[0:3])
  641. gr2.add(trp[2:6])
  642. gr1 |= gr2
  643. assert len(gr1) == 5
  644. assert trp[0] in gr1
  645. assert trp[4] in gr1
  646. assert isinstance(gr1, Graph)