class TestStore

Public Instance Methods

test_hash_bdb() click to toggle source
# File test/test_store.rb, line 15
def test_hash_bdb()
  store = HashStore.new('bdb','mystore')
  assert_equal('bdb',store.hash_type)
  model = Model.new(store)
  model.add(
    Uri.new("http://xmlns.com"),
    Uri.new("http://predicate"),
    "baz"
  )
  st = Statement.new(
    Uri.new("http://xmlns.com"),
    Uri.new("http://predicate"),
    "baz"
  )
  assert(model.include_statement?(st))
end
test_hash_raises() click to toggle source
# File test/test_store.rb, line 32
def test_hash_raises()
  assert_raises(RedlandError){
  store = HashStore.new('bdb')
  } # bdb needs a name
end
test_hash_store() click to toggle source
# File test/test_store.rb, line 7
def test_hash_store()
  store = HashStore.new()
  assert_equal('memory',store.hash_type)
  model = Model.new(store)
  model = nil
  store = nil
end
test_read_store() click to toggle source
# File test/test_store.rb, line 38
def test_read_store()
  store = HashStore.new('bdb','thestore')
  model = Model.new(store)
  parser = Parser.new(name="ntriples",mime_type=nil)
  parser.parse_into_model(model,"file:./one.nt")
  st = Statement.new(
    Uri.new("http://example.org/dom"),
    Uri.new("http://example.org/project"),
    "2334"
  )
  assert(model.include_statement?(st))
  #model.triples(){|s,p,o| puts "#{s}:#{p}:#{o}"}
end