def setUp(self):
		self.sparql = SimpleSPARQL("http://localhost:2020/sparql")
		self.sparql.setGraph("http://dwiel.net/axpress/testing")
		self.sparql.setNamespaces(n)
		self.p = PassCheckCreateUnlessExists(self.sparql)
	
	# depends on Joseki
	#def test1(self):
		#q = {
			#n.sparql.reads : [
			#],
			#n.sparql.writes : [
				#{
					#n.sparql.create : n.sparql.unless_exists,
					#n.sparql.path : (0,),
					#n.test.x : 1,
				#},
			#],
		#}
		#r = {
			#n.sparql.reads : [ ],
			#n.sparql.writes : [
				#{
					#n.sparql.create : n.sparql.existed,
					#n.sparql.path : (0,),
					#n.sparql.subject : n.test.object1,
					#n.test.x : 1,
				#},
			#],
		#}


		print prettyquery(q)
		self.p(q)
Exemplo n.º 2
0
	def __init__(self):
		"""One instance of Globals is created during application
		initialization and is available during requests via the 'g'
		variable
		"""
		
		self.n = globalNamespaces()
		self.n.bind('bk', '<http://theburningkumquat.com/schema/>')
		self.n.bind('bkitem', '<http://theburningkumquat.com/item/>')
		
		self.sparql = SimpleSPARQL("http://localhost:2020/queryKumquat",
		                           sparul = "http://localhost:2020/updateKumquat")
		self.sparql.setNamespaces(self.n)
Exemplo n.º 3
0
class Globals(object):
	"""Globals acts as a container for objects available throughout the
	life of the application
	"""

	def __init__(self):
		"""One instance of Globals is created during application
		initialization and is available during requests via the 'g'
		variable
		"""
		
		self.n = globalNamespaces()
		self.n.bind('bk', '<http://theburningkumquat.com/schema/>')
		self.n.bind('bkitem', '<http://theburningkumquat.com/item/>')
		
		self.sparql = SimpleSPARQL("http://localhost:2020/queryKumquat",
		                           sparul = "http://localhost:2020/updateKumquat")
		self.sparql.setNamespaces(self.n)
# -*- coding: utf-8 -*-
# Translator testing
# this translator assumes the translations available in loadTranslator

import unittest

import time, urllib
from rdflib import *
from SimpleSPARQL import *

from SimpleSPARQL.Utils import sub_var_bindings

sparql = SimpleSPARQL("http://localhost:2020/sparql")
sparql.setGraph("http://dwiel.net/axpress/testing")

n = sparql.n
n.bind('library', '<http://dwiel.net/axpress/library/0.1/>')
n.bind('music', '<http://dwiel.net/axpress/music/0.1/>')
n.bind('music_album', '<http://dwiel.net/axpress/music_album/0.1/>')
n.bind('source', '<http://dwiel.net/axpress/source/0.1/>')
n.bind('lastfm', '<http://dwiel.net/axpress/lastfm/0.1/>')
n.bind('rdfs', '<http://www.w3.org/2000/01/rdf-schema#>')
n.bind('test', '<http://dwiel.net/express/test/0.1/>')
n.bind('bound_var', '<http://dwiel.net/axpress/bound_var/0.1/>')

a = n.rdfs.type

cache_sparql = SimpleSPARQL("http://localhost:2020/sparql",
                            graph="http://dwiel.net/axpress/cache")
cache = Cache(cache_sparql)
translator = Translator(cache)
Exemplo n.º 5
0
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Translator testing
# this translator assumes the translations available in loadTranslator

import unittest

import time, urllib
from rdflib import *
from SimpleSPARQL import *

sparql = SimpleSPARQL("http://localhost:2020/sparql")
sparql.setGraph("http://dwiel.net/axpress/testing")

n = sparql.n
n.bind("library", "<http://dwiel.net/axpress/library/0.1/>")
n.bind("music", "<http://dwiel.net/axpress/music/0.1/>")
n.bind("music_album", "<http://dwiel.net/axpress/music_album/0.1/>")
n.bind("source", "<http://dwiel.net/axpress/source/0.1/>")
n.bind("lastfm", "<http://dwiel.net/axpress/lastfm/0.1/>")
n.bind("rdfs", "<http://www.w3.org/2000/01/rdf-schema#>")
n.bind("test", "<http://dwiel.net/express/test/0.1/>")
n.bind("bound_var", "<http://dwiel.net/axpress/bound_var/0.1/>")

a = n.rdfs.type

cache_sparql = SimpleSPARQL("http://localhost:2020/sparql", graph="http://dwiel.net/axpress/cache")
cache = Cache(cache_sparql)
translator = Translator(cache)

loadTranslations(translator, n)
Exemplo n.º 6
0
 def setUp(self):
     self.sparql = SimpleSPARQL("http://localhost:2020/sparql")
     self.sparql.setGraph("http://dwiel.net/axpress/testing")
     self.sparql.setNamespaces(n)
     self.p = PassCompleteWrites(self.sparql)
Exemplo n.º 7
0
import time, urllib
from rdflib import *
from SimpleSPARQL import *

sparql = SimpleSPARQL("http://localhost:2020/sparql")
sparql.setGraph("http://dwiel.net/axpress/testing")

n = sparql.n
n.bind('library', '<http://dwiel.net/axpress/library/0.1/>')
n.bind('music', '<http://dwiel.net/axpress/music/0.1/>')
n.bind('music_album', '<http://dwiel.net/axpress/music_album/0.1/>')
n.bind('source', '<http://dwiel.net/axpress/source/0.1/>')
n.bind('lastfm', '<http://dwiel.net/axpress/lastfm/0.1/>')
n.bind('rdfs', '<http://www.w3.org/2000/01/rdf-schema#>')
n.bind('test', '<http://dwiel.net/express/test/0.1/>')
n.bind('bound_var', '<http://dwiel.net/axpress/bound_var/0.1/>')

a = n.rdfs.type

cache_sparql = SimpleSPARQL("http://localhost:2020/sparql", graph = "http://dwiel.net/axpress/cache")
cache = Cache(cache_sparql)
translator = Translator(cache)

loadTranslations(translator, n)



exit()


ret = translator.read_translations([
Exemplo n.º 8
0
 def setUp(self):
     self.sparql = SimpleSPARQL("http://localhost:2020/sparql")
     self.sparql.setGraph("http://dwiel.net/axpress/testing")
     self.sparql.setNamespaces(n)
     self.parser = Parser(n)
Exemplo n.º 9
0
class SimpleSPARQLTestCase(unittest.TestCase):
    def setUp(self):
        self.sparql = SimpleSPARQL("http://*****:*****@en', 'incorrect handling of strings'

    def testn3Uri(self):
        assert self.sparql.python_to_n3(
            "e:tag") == 'e:tag', 'incorrect handling of uris'

    def testn3Int(self):
        assert self.sparql.python_to_n3(
            100) == '100', 'incorrect handling of ints'

    def testn3Float(self):
        assert self.sparql.python_to_n3(
            3.1415) == '3.1415', 'incorrect handling of floats'

    def testn3Datetime(self):
        assert self.sparql.python_to_n3(
            datetime.datetime(2008, 10, 20, 21, 45, 31)
        ) == '"2008-10-20T21:45:31T"^^xsd:dateTime', 'incorrect handling of floats'

    #def testn3Dictionary1(self):
    #assert self.sparql.python_to_n3({"x" : "y", 1 : 2}) == """@prefix : <http://dwiel.net/express/rule/0.1/> .


#@prefix e: <http://dwiel.net/express/rule/0.1/> .
#@prefix sparql: <http://dwiel.net/express/sparql/0.1/> .
#@prefix schema_property: <http://dwiel.net/express/schema_property/0.1/> .
#@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
#@prefix schema: <http://dwiel.net/express/schema/0.1/> .
#:new "x"@en "y"@en ; 1 2 .""", 'failed dictionary test 1: ' + self.sparql.python_to_n3({"x" : "y", 1 : 2})

#def testn3Dictionary2(self):
#assert self.sparql.python_to_n3({":x" : "y", 1 : 2}) == """@prefix : <http://dwiel.net/express/rule/0.1/> .
#@prefix e: <http://dwiel.net/express/rule/0.1/> .
#@prefix sparql: <http://dwiel.net/express/sparql/0.1/> .
#@prefix schema_property: <http://dwiel.net/express/schema_property/0.1/> .
#@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
#@prefix schema: <http://dwiel.net/express/schema/0.1/> .
#:new 1 2 ; :x "y"@en .""", 'failed dictionary test 2: ' + self.sparql.python_to_n3({":x" : "y", 1 : 2})

#def testn3Dictionary3(self):
#assert self.sparql.python_to_n3({":x" : "y", "e:b" : [1, 2, 3]}) == """@prefix : <http://dwiel.net/express/rule/0.1/> .
#@prefix e: <http://dwiel.net/express/rule/0.1/> .
#@prefix sparql: <http://dwiel.net/express/sparql/0.1/> .
#@prefix schema_property: <http://dwiel.net/express/schema_property/0.1/> .
#@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
#@prefix schema: <http://dwiel.net/express/schema/0.1/> .
#:new :x "y"@en ; e:b 1, 2, 3 .""", 'failed dictionary test 3'

##def testn3Dictionary4(self):
##assert self.sparql.python_to_n3({"e:b" : [{"e:tag" : ["abc", 'd"ef']}]}) == """@prefix : <http://dwiel.net/express/rule/0.1/> .
##@prefix e: <http://dwiel.net/express/rule/0.1/> .
##@prefix sparql: <http://dwiel.net/express/sparql/0.1/> .
##@prefix schema_property: <http://dwiel.net/express/schema_property/0.1/> .
##@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
##@prefix schema: <http://dwiel.net/express/schema/0.1/> .
##:new e:b [ e:tag "abc"@en, 'd"ef'@en ] .""", 'failed dictionary test 4'

#def testn3Dictionary5(self):
#assert self.sparql.python_to_n3({"e:a" : {"e:b" : "b", "e:c" : "c"}}) == """@prefix : <http://dwiel.net/express/rule/0.1/> .
#@prefix e: <http://dwiel.net/express/rule/0.1/> .
#@prefix sparql: <http://dwiel.net/express/sparql/0.1/> .
#@prefix schema_property: <http://dwiel.net/express/schema_property/0.1/> .
#@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
#@prefix schema: <http://dwiel.net/express/schema/0.1/> .
#:new e:a [ e:b "b"@en ; e:c "c"@en ] .""", 'failed dictionary test 4'

#def testSPARQLDictionary1(self):
#print '---'
#print self.sparql.python_to_SPARQL({'e:x' : 1, 'abc' : 'def'})

#def testSPARQLDictionary2(self):
#for rdfo in self.sparql.find(
#{
#'rdf:type' : 'schema:type',
#'schema:property' : {
#'schema_property:default' : None,
#'schema_property:type' : None,
#}
#}
#) :
#print rdfo.root

#def testWriteDictionary(self):
#self.sparql.write({
#n.feed.url : entry.content[0].base,
#n.feed.entry : {
#n.sparql.connect : n.sparql.insert,
#n.entry['title'] : entry.title,
#n.entry.date : entry.updated_parsed,
#n.entry.content : entry.content[0].value
#}
#})

    def test_preprocess_query1(self):
        query = {
            n.e.url:
            'url',
            n.e.entry: [{
                n.sparql.create: n.sparql.unless_exists,
                n.e['title']: 'title',
                n.e.date: 'date',
                n.e.content: 'content'
            }],
            n.e.friend: {
                n.e.entry: {
                    n.sparql.create: n.sparql.unless_exists,
                    n.e['title']: 'title2',
                    n.e.date: 'date2',
                    n.e.content: 'content2'
                }
            }
        }
        transformed = self.sparql._preprocess_query(query)
        assert transformed == {
            n.e.url:
            'url',
            n.e.friend: {
                n.sparql.var: 1
            },
            n.sparql.var:
            2,
            n.sparql.insert: [{
                n.sparql.subject: 1,
                n.sparql.predicate: n.e.entry,
                n.sparql.create: n.sparql.unless_exists,
                n.e['title']: 'title2',
                n.e.date: 'date2',
                n.e.content: 'content2'
            }, {
                n.sparql.subject: 2,
                n.sparql.predicate: n.e.entry,
                n.sparql.create: n.sparql.unless_exists,
                n.e['title']: 'title',
                n.e.date: 'date',
                n.e.content: 'content'
            }],
            n.sparql.delete: []
        }, 'bad transformation'

    def test_preprocess_query2(self):
        query = {
            n.e.url: 'url',
            n.e.entry: {
                n.sparql.create: n.sparql.unless_exists,
                n.e['title']: 'title',
                n.e.date: 'date',
                n.e.content: 'content'
            }
        }
        transformed = self.sparql._preprocess_query(query)
        assert transformed == {
            n.e.url:
            'url',
            n.sparql.var:
            1,
            n.sparql.insert: [{
                n.sparql.subject: 1,
                n.sparql.predicate: n.e.entry,
                n.sparql.create: n.sparql.unless_exists,
                n.e['title']: 'title',
                n.e.date: 'date',
                n.e.content: 'content'
            }],
            n.sparql.delete: []
        }, 'bad transformation'

    def test_python_to_SPARQL_long(self):
        query = {
            n.e.url: 'url',
            n.e.friend: {
                n.sparql.var: 1
            },
            n.sparql.var: 2
        }
        assert self.sparql.python_to_SPARQL_long(
            query
        ) == '?var2 <http://dwiel.net/express/rule/0.1/friend> ?var1 .\n?var2 <http://dwiel.net/express/rule/0.1/url> "url"@en .\n', 'test_python_to_SPARQL_long'

    #def testWrite(self):
    #query = {
    #n.e.url : 'url',
    #n.e.entry : [{
    #n.sparql.create : n.sparql.unless_exists,
    #n.e['title'] : 'title',
    #n.e.date : 'date',
    #n.e.content : 'content'
    #}],
    #n.e.friend : {
    #n.e.entry : {
    #n.sparql.create : n.sparql.unless_exists,
    #n.e['title'] : 'title2',
    #n.e.date : 'date2',
    #n.e.content : 'content2'
    #}
    #}
    #}
    #self.sparql.write(query)

    #def testWrite1(self):
    #query = {
    #n.e.url : 'url',
    #n.e.similar : {
    #n.sparql.create : n.sparql.unless_exists,
    #n.e.similarity : 1.0,
    #n.e.similar_to : {
    #n.e.url : 'url'
    #}
    #}
    #}
    #ret = self.sparql.write(query)

    def testRead1(self):
        query = {n.test.x: 1}
        result = {
            n.sparql.error_message: 'too many values',
            n.sparql.error_path: (),
            n.sparql.query: {
                n.test.x: 1,
                n.sparql.error_inside: '.',
            },
            n.sparql.status: n.sparql.error,
        }
        assert result == self.sparql.read(query)

    def testRead2(self):
        query = [{n.test.x: 1}]
        result = {
            n.sparql.result: [
                {},
                {},
            ],
            n.sparql.status: n.sparql.ok,
        }
        assert result == self.sparql.read(query)

    def testRead3(self):
        query = [{n.test.x: 1, n.sparql.subject: None}]
        result = {
            n.sparql.result: [
                {
                    n.sparql.subject: n.test.object1,
                },
                {
                    n.sparql.subject: n.test.object2,
                },
            ],
            n.sparql.status:
            n.sparql.ok,
        }
        assert result == self.sparql.read(query)

    def testRead4(self):
        query = [{n.test.x: None, n.sparql.subject: None}]
        result = {
            n.sparql.result: [
                {
                    n.sparql.subject: n.test.object5,
                    n.test.x: rdflib.Literal(5),
                },
                {
                    n.sparql.subject: n.test.object1,
                    n.test.x: rdflib.Literal(1),
                },
                {
                    n.sparql.subject: n.test.object2,
                    n.test.x: rdflib.Literal(1),
                },
            ],
            n.sparql.status:
            n.sparql.ok,
        }
        assert result == self.sparql.read(query)

    def testRead5(self):
        query = [{n.test.x: 2, n.sparql.subject: None}]
        result = {
            n.sparql.result: [],
            n.sparql.status: n.sparql.ok,
        }
        assert result == self.sparql.read(query)

    def testRead6(self):
        query = {n.test.x: 2, n.sparql.subject: None}
        result = {
            n.sparql.error_message: 'no match found',
            n.sparql.error_path: (),
            n.sparql.query: {
                n.sparql.error_inside: '.',
                n.test.x: 2,
            },
            n.sparql.status: n.sparql.error,
        }
        assert result == self.sparql.read(query)

    def testRead7(self):
        query = {
            n.test.x: 5,
            n.test.y: {
                n.test.y: {
                    n.test.a: None,
                }
            }
        }
        result = {
            n.sparql.result: {
                n.test.y: {
                    n.test.y: {
                        n.test.a: 21,
                    },
                },
            },
            n.sparql.status: n.sparql.ok,
        }
        assert result == self.sparql.read(query)

    def testRead8(self):
        query = {n.test.x: None, n.sparql.subject: n.test.object1}
        result = {
            n.sparql.result: {
                n.test.x: 1,
            },
            n.sparql.status: n.sparql.ok,
        }
        assert result == self.sparql.read(query)

    def testRead9(self):
        query = {
            n.test.x: None,
            n.test.y: None,
            n.sparql.subject: n.test.object1
        }
        result = {
            n.sparql.result: {
                n.test.x: 1,
                n.test.y: 2,
            },
            n.sparql.status: n.sparql.ok,
        }
        assert result == self.sparql.read(query)

    def testRead10(self):
        query = {
            n.test.x: None,
            n.test.y: {
                n.test.a: None,
            },
            n.sparql.subject: n.test.object2
        }
        result = {
            n.sparql.result: {
                n.test.x: 1,
                n.test.y: {
                    n.test.a: 21,
                },
            },
            n.sparql.status: n.sparql.ok,
        }
        assert result == self.sparql.read(query)

    def testRead11(self):
        query = {
            n.test.x: 5,
            n.test.y: {
                n.test.y: {
                    n.test.a: None,
                }
            },
            n.sparql.subject: n.test.object5,
        }
        result = {
            n.sparql.result: {
                n.test.y: {
                    n.test.y: {
                        n.test.a: 21,
                    },
                },
            },
            n.sparql.status: n.sparql.ok,
        }
        assert result == self.sparql.read(query)

    def testRead12(self):
        query = {
            n.test.x: 5,
            n.test.y: [{
                n.test.y: {
                    n.test.a: None,
                }
            }],
            n.sparql.subject: n.test.object5,
        }
        result = {
            n.sparql.result: {
                n.test.y: [{
                    n.test.y: {
                        n.test.a: 21,
                    },
                }],
            },
            n.sparql.status: n.sparql.ok,
        }
        assert result == self.sparql.read(query)

    def testRead13(self):
        #query = [
        #{
        #n.sparql.subject : None,
        #None : 21
        #}
        #]
        #assert True == False
        pass

    def testRead14(self):
        # TODO: allow n.sparql.any as the predicate.  Could also use None predicate?
        # or var?
        query = [{n.test.x: None, n.sparql.subject: None, n.sparql.any: None}]
        result = {}
        ret = self.sparql.read(query)
        print prettyquery(ret)
        assert result == ret

    def testRead15(self):
        query = []
        ret = self.sparql.read(query)
        assert ret == {
            n.sparql.error_message: 'empty query',
            n.sparql.error_path: '',
            n.sparql.query: [],
            n.sparql.status: n.sparql.error,
        }

    def testReadTripleList(self):
        query = """
			foo[test.x] = x
			query.query[query.sort_ascending] = x
			query.query[query.limit] = 1
		"""
        query_triples = self.parser.parse(query)
        ret = self.sparql.read(query_triples)
        ret = [x for x in ret]
        assert len(ret) == 1 and ret[0]['x'] == 1

    def testReadTripleList2(self):
        query = """
			foo[test.x] = x
			query.query[query.sort_descending] = x
			query.query[query.limit] = 1
		"""
        query_triples = self.parser.parse(query)
        ret = self.sparql.read(query_triples)
        ret = [x for x in ret]
        assert len(ret) == 1 and ret[0]['x'] == 5

    def testReadTripleList3(self):
        query = """
			foo[test.x] = x
			query.query[query.sort_descending] = x
			query.query[query.limit] = 1
			query.query[query.offset] = 1
		"""
        query_triples = self.parser.parse(query)
        ret = self.sparql.read(query_triples)
        ret = [x for x in ret]
        assert len(ret) == 1 and ret[0]['x'] == 1

    def testReadMultilineString(self):
        query = """
			foo[test.x] = x
			query.query[query.sort_descending] = x
			query.query[query.limit] = 1
			query.query[query.offset] = 1
		"""
        ret = self.sparql.read(query)
        ret = [x for x in ret]
        assert len(ret) == 1 and ret[0]['x'] == 1
class PassCompleteReadsTestCase(unittest.TestCase):
    def setUp(self):
        self.sparql = SimpleSPARQL("http://localhost:2020/sparql")
        self.sparql.setGraph("http://dwiel.net/axpress/testing")
        self.sparql.setNamespaces(n)
        self.p = PassCompleteReads(self.sparql)
Exemplo n.º 11
0
class PassCompleteReadsTestCase(unittest.TestCase):
	def setUp(self):
		self.sparql = SimpleSPARQL("http://localhost:2020/sparql")
		self.sparql.setGraph("http://dwiel.net/axpress/testing")
		self.sparql.setNamespaces(n)
		self.p = PassCompleteReads(self.sparql)
Exemplo n.º 12
0
class SimpleSPARQLTestCase(unittest.TestCase):
	def setUp(self):
		self.sparql = SimpleSPARQL("http://*****:*****@en', 'incorrect handling of strings'
	
	def testn3Uri(self):
		assert self.sparql.python_to_n3("e:tag") == 'e:tag', 'incorrect handling of uris'
	
	def testn3Int(self):
		assert self.sparql.python_to_n3(100) == '100', 'incorrect handling of ints'
	
	def testn3Float(self):
		assert self.sparql.python_to_n3(3.1415) == '3.1415', 'incorrect handling of floats'
		
	def testn3Datetime(self):
		assert self.sparql.python_to_n3(datetime.datetime(2008, 10, 20, 21, 45, 31)) == '"2008-10-20T21:45:31T"^^xsd:dateTime', 'incorrect handling of floats'	
	
	#def testn3Dictionary1(self):
		#assert self.sparql.python_to_n3({"x" : "y", 1 : 2}) == """@prefix : <http://dwiel.net/express/rule/0.1/> .
#@prefix e: <http://dwiel.net/express/rule/0.1/> .
#@prefix sparql: <http://dwiel.net/express/sparql/0.1/> .
#@prefix schema_property: <http://dwiel.net/express/schema_property/0.1/> .
#@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
#@prefix schema: <http://dwiel.net/express/schema/0.1/> .
 #:new "x"@en "y"@en ; 1 2 .""", 'failed dictionary test 1: ' + self.sparql.python_to_n3({"x" : "y", 1 : 2})

	#def testn3Dictionary2(self):
		#assert self.sparql.python_to_n3({":x" : "y", 1 : 2}) == """@prefix : <http://dwiel.net/express/rule/0.1/> .
#@prefix e: <http://dwiel.net/express/rule/0.1/> .
#@prefix sparql: <http://dwiel.net/express/sparql/0.1/> .
#@prefix schema_property: <http://dwiel.net/express/schema_property/0.1/> .
#@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
#@prefix schema: <http://dwiel.net/express/schema/0.1/> .
 #:new 1 2 ; :x "y"@en .""", 'failed dictionary test 2: ' + self.sparql.python_to_n3({":x" : "y", 1 : 2})
 
	#def testn3Dictionary3(self):
		#assert self.sparql.python_to_n3({":x" : "y", "e:b" : [1, 2, 3]}) == """@prefix : <http://dwiel.net/express/rule/0.1/> .
#@prefix e: <http://dwiel.net/express/rule/0.1/> .
#@prefix sparql: <http://dwiel.net/express/sparql/0.1/> .
#@prefix schema_property: <http://dwiel.net/express/schema_property/0.1/> .
#@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
#@prefix schema: <http://dwiel.net/express/schema/0.1/> .
 #:new :x "y"@en ; e:b 1, 2, 3 .""", 'failed dictionary test 3'

	##def testn3Dictionary4(self):
		##assert self.sparql.python_to_n3({"e:b" : [{"e:tag" : ["abc", 'd"ef']}]}) == """@prefix : <http://dwiel.net/express/rule/0.1/> .
##@prefix e: <http://dwiel.net/express/rule/0.1/> .
##@prefix sparql: <http://dwiel.net/express/sparql/0.1/> .
##@prefix schema_property: <http://dwiel.net/express/schema_property/0.1/> .
##@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
##@prefix schema: <http://dwiel.net/express/schema/0.1/> .
 ##:new e:b [ e:tag "abc"@en, 'd"ef'@en ] .""", 'failed dictionary test 4'

	#def testn3Dictionary5(self):
		#assert self.sparql.python_to_n3({"e:a" : {"e:b" : "b", "e:c" : "c"}}) == """@prefix : <http://dwiel.net/express/rule/0.1/> .
#@prefix e: <http://dwiel.net/express/rule/0.1/> .
#@prefix sparql: <http://dwiel.net/express/sparql/0.1/> .
#@prefix schema_property: <http://dwiel.net/express/schema_property/0.1/> .
#@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
#@prefix schema: <http://dwiel.net/express/schema/0.1/> .
 #:new e:a [ e:b "b"@en ; e:c "c"@en ] .""", 'failed dictionary test 4'

	#def testSPARQLDictionary1(self):
		#print '---'
		#print self.sparql.python_to_SPARQL({'e:x' : 1, 'abc' : 'def'})

	#def testSPARQLDictionary2(self):
		#for rdfo in self.sparql.find(
			#{
				#'rdf:type' : 'schema:type', 
				#'schema:property' : {
					#'schema_property:default' : None,
					#'schema_property:type' : None,
				#}
			#}
		#) :
			#print rdfo.root
	
	#def testWriteDictionary(self):
		#self.sparql.write({
			#n.feed.url : entry.content[0].base,
			#n.feed.entry : {
				#n.sparql.connect : n.sparql.insert,
				#n.entry['title'] : entry.title,
				#n.entry.date : entry.updated_parsed,
				#n.entry.content : entry.content[0].value
			#}
		#})
	
	def test_preprocess_query1(self):
		query = {
			n.e.url : 'url',
			n.e.entry : [{
				n.sparql.create : n.sparql.unless_exists,
				n.e['title'] : 'title',
				n.e.date : 'date',
				n.e.content : 'content'
			}],
			n.e.friend : {
				n.e.entry : {
					n.sparql.create : n.sparql.unless_exists,
					n.e['title'] : 'title2',
					n.e.date : 'date2',
					n.e.content : 'content2'
				}
			}
		}
		transformed = self.sparql._preprocess_query(query)
		assert transformed == {
			n.e.url : 'url',
			n.e.friend : {
				n.sparql.var : 1
			},
			n.sparql.var : 2,
			n.sparql.insert : [{
				n.sparql.subject : 1,
				n.sparql.predicate : n.e.entry,
				n.sparql.create : n.sparql.unless_exists,
				n.e['title'] : 'title2',
				n.e.date : 'date2',
				n.e.content : 'content2'
			},{
				n.sparql.subject : 2,
				n.sparql.predicate : n.e.entry,
				n.sparql.create : n.sparql.unless_exists,
				n.e['title'] : 'title',
				n.e.date : 'date',
				n.e.content : 'content'
			}],
			n.sparql.delete : []
		}, 'bad transformation'
		
	def test_preprocess_query2(self):
		query = {
			n.e.url : 'url',
			n.e.entry : {
				n.sparql.create : n.sparql.unless_exists,
				n.e['title'] : 'title',
				n.e.date : 'date',
				n.e.content : 'content'
			}
		}
		transformed = self.sparql._preprocess_query(query)
		assert transformed == {
			n.e.url : 'url',
			n.sparql.var : 1,
			n.sparql.insert : [{
				n.sparql.subject : 1,
				n.sparql.predicate : n.e.entry,
				n.sparql.create : n.sparql.unless_exists,
				n.e['title'] : 'title',
				n.e.date : 'date',
				n.e.content : 'content'
			}],
			n.sparql.delete : []
		}, 'bad transformation'
	
	def test_python_to_SPARQL_long(self):
		query = {
			n.e.url : 'url',
			n.e.friend : {
				n.sparql.var : 1
			},
			n.sparql.var : 2
		}
		assert self.sparql.python_to_SPARQL_long(query) == '?var2 <http://dwiel.net/express/rule/0.1/friend> ?var1 .\n?var2 <http://dwiel.net/express/rule/0.1/url> "url"@en .\n', 'test_python_to_SPARQL_long'
	
	#def testWrite(self):
		#query = {
			#n.e.url : 'url',
			#n.e.entry : [{
				#n.sparql.create : n.sparql.unless_exists,
				#n.e['title'] : 'title',
				#n.e.date : 'date',
				#n.e.content : 'content'
			#}],
			#n.e.friend : {
				#n.e.entry : {
					#n.sparql.create : n.sparql.unless_exists,
					#n.e['title'] : 'title2',
					#n.e.date : 'date2',
					#n.e.content : 'content2'
				#}
			#}
		#}
		#self.sparql.write(query)
	
	#def testWrite1(self):
		#query = {
			#n.e.url : 'url',
			#n.e.similar : {
				#n.sparql.create : n.sparql.unless_exists,
				#n.e.similarity : 1.0,
				#n.e.similar_to : {
					#n.e.url : 'url'
				#}
			#}
		#}
		#ret = self.sparql.write(query)
	
	def testRead1(self) :
		query = {
			n.test.x : 1
		}
		result = {
			n.sparql.error_message : 'too many values',
			n.sparql.error_path : (),
			n.sparql.query : {
				n.test.x : 1,
				n.sparql.error_inside : '.',
			},
			n.sparql.status : n.sparql.error,
		}
		assert result == self.sparql.read(query)

	def testRead2(self) :
		query = [
			{
				n.test.x : 1
			}
		]
		result = {
			n.sparql.result : [
				{
				}, {
				},
			],
			n.sparql.status : n.sparql.ok,
		}
		assert result == self.sparql.read(query)
	
	def testRead3(self) :
		query = [
			{
				n.test.x : 1,
				n.sparql.subject : None
			}
		]
		result = {
			n.sparql.result : [
				{
					n.sparql.subject : n.test.object1,
				}, {
					n.sparql.subject : n.test.object2,
				},
			],
			n.sparql.status : n.sparql.ok,
		}
		assert result == self.sparql.read(query)
	
	def testRead4(self) :
		query = [
			{
				n.test.x : None,
				n.sparql.subject : None
			}
		]
		result = {
			n.sparql.result : [
				{
					n.sparql.subject : n.test.object5,
					n.test.x : rdflib.Literal(5),
				}, {
					n.sparql.subject : n.test.object1,
					n.test.x : rdflib.Literal(1),
				}, {
					n.sparql.subject : n.test.object2,
					n.test.x : rdflib.Literal(1),
				}, 
			],
			n.sparql.status : n.sparql.ok,
		}
		assert result == self.sparql.read(query)
	
	def testRead5(self) :
		query = [
			{
				n.test.x : 2,
				n.sparql.subject : None
			}
		]
		result = {
			n.sparql.result : [],
			n.sparql.status : n.sparql.ok,
		}
		assert result == self.sparql.read(query)
	
	def testRead6(self) :
		query = {
			n.test.x : 2,
			n.sparql.subject : None
		}
		result = {
			n.sparql.error_message : 'no match found',
			n.sparql.error_path : (),
			n.sparql.query : {
				n.sparql.error_inside : '.',
				n.test.x : 2,
			},
			n.sparql.status : n.sparql.error,
		}
		assert result == self.sparql.read(query)
	
	def testRead7(self) :
		query = {
			n.test.x : 5,
			n.test.y : {
				n.test.y : {
					n.test.a : None,
				}
			}
		}
		result = {
			n.sparql.result : {
				n.test.y : {
					n.test.y : {
						n.test.a : 21,
					},
				},
			},
			n.sparql.status : n.sparql.ok,
		}
		assert result == self.sparql.read(query)
	
	def testRead8(self) :
		query = {
			n.test.x : None,
			n.sparql.subject : n.test.object1
		}
		result = {
			n.sparql.result : {
				n.test.x : 1,
			},
			n.sparql.status : n.sparql.ok,
		}
		assert result == self.sparql.read(query)

	def testRead9(self) :
		query = {
			n.test.x : None,
			n.test.y : None,
			n.sparql.subject : n.test.object1
		}
		result = {
			n.sparql.result : {
				n.test.x : 1,
				n.test.y : 2,
			},
			n.sparql.status : n.sparql.ok,
		}
		assert result == self.sparql.read(query)

	def testRead10(self) :
		query = {
			n.test.x : None,
			n.test.y : {
				n.test.a : None,
			},
			n.sparql.subject : n.test.object2
		}
		result = {
			n.sparql.result : {
				n.test.x : 1,
				n.test.y : {
					n.test.a : 21,
				},
			},
			n.sparql.status : n.sparql.ok,
		}
		assert result == self.sparql.read(query)

	def testRead11(self) :
		query = {
			n.test.x : 5,
			n.test.y : {
				n.test.y : {
					n.test.a : None,
				}
			},
			n.sparql.subject : n.test.object5,
		}
		result = {
			n.sparql.result : {
				n.test.y : {
					n.test.y : {
						n.test.a : 21,
					},
				},
			},
			n.sparql.status : n.sparql.ok,
		}
		assert result == self.sparql.read(query)

	def testRead12(self) :
		query = {
			n.test.x : 5,
			n.test.y : [{
				n.test.y : {
					n.test.a : None,
				}
			}],
			n.sparql.subject : n.test.object5,
		}
		result = {
			n.sparql.result : {
				n.test.y : [{
					n.test.y : {
						n.test.a : 21,
					},
				}],
			},
			n.sparql.status : n.sparql.ok,
		}
		assert result == self.sparql.read(query)
	
	def testRead13(self) :
		#query = [
			#{
				#n.sparql.subject : None,
				#None : 21
			#}
		#]
		#assert True == False
		pass
	
	def testRead14(self) :
		# TODO: allow n.sparql.any as the predicate.  Could also use None predicate?
		# or var?
		query = [
			{
				n.test.x : None,
				n.sparql.subject : None,
				n.sparql.any : None
			}
		]
		result = {}
		ret = self.sparql.read(query)
		print prettyquery(ret)
		assert result == ret
	
	def testRead15(self):
		query = []
		ret = self.sparql.read(query)
		assert ret == {
			n.sparql.error_message : 'empty query',
			n.sparql.error_path : '',
			n.sparql.query : [],
			n.sparql.status : n.sparql.error,
		}
	
	def testReadTripleList(self) :
		query = """
			foo[test.x] = x
			query.query[query.sort_ascending] = x
			query.query[query.limit] = 1
		"""
		query_triples = self.parser.parse(query)
		ret = self.sparql.read(query_triples)
		ret = [x for x in ret]
		assert len(ret) == 1 and ret[0]['x'] == 1
	
	def testReadTripleList2(self) :
		query = """
			foo[test.x] = x
			query.query[query.sort_descending] = x
			query.query[query.limit] = 1
		"""
		query_triples = self.parser.parse(query)
		ret = self.sparql.read(query_triples)
		ret = [x for x in ret]
		assert len(ret) == 1 and ret[0]['x'] == 5
	
	def testReadTripleList3(self) :
		query = """
			foo[test.x] = x
			query.query[query.sort_descending] = x
			query.query[query.limit] = 1
			query.query[query.offset] = 1
		"""
		query_triples = self.parser.parse(query)
		ret = self.sparql.read(query_triples)
		ret = [x for x in ret]
		assert len(ret) == 1 and ret[0]['x'] == 1
	
	def testReadMultilineString(self) :
		query = """
			foo[test.x] = x
			query.query[query.sort_descending] = x
			query.query[query.limit] = 1
			query.query[query.offset] = 1
		"""
		ret = self.sparql.read(query)
		ret = [x for x in ret]
		assert len(ret) == 1 and ret[0]['x'] == 1