Skip to content

Commit 2d084c3

Browse files
Fix generator for ADD, MOVE, COPY (#151)
* Add failing test case for SPARQL 1.1 graph mgmt operations The test case currently fails and will drop <http://example.com/my-graph> * Fix sparql generator for SPARQL 1.1 update ADD, MOVE, COPY operations Previously the generator incorrectly omitted the source graph. Reference https://www.w3.org/TR/sparql11-update/#copy
1 parent a80062a commit 2d084c3

File tree

2 files changed

+32
-2
lines changed

2 files changed

+32
-2
lines changed

lib/SparqlGenerator.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -384,8 +384,8 @@ Generator.prototype.toUpdate = function (update) {
384384
case 'add':
385385
case 'copy':
386386
case 'move':
387-
return update.type.toUpperCase() + (update.source.default ? ' DEFAULT ' : ' ') +
388-
'TO ' + this.toEntity(update.destination.name);
387+
return update.type.toUpperCase()+ ' ' + (update.silent ? 'SILENT ' : '') + (update.source.default ? 'DEFAULT' : this.toEntity(update.source.name)) +
388+
' TO ' + this.toEntity(update.destination.name);
389389
case 'create':
390390
case 'clear':
391391
case 'drop':

test/SparqlGenerator-test.js

+30
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,36 @@ describe('A SPARQL generator', function () {
9393
'GROUP BY ?k';
9494
expect(generatedQuery).toEqual(expectedQuery);
9595
});
96+
97+
it('should preserve source graph in sparql 1.1 update ADD operation', function () {
98+
var parser = new SparqlParser();
99+
var parsedQuery = parser.parse('ADD <http://example.com/my-graph> TO <http://example.com/your-graph>');
100+
var generator = new SparqlGenerator();
101+
var generatedQuery = generator.stringify(parsedQuery);
102+
var expectedQuery =
103+
'ADD <http://example.com/my-graph> TO <http://example.com/your-graph>';
104+
expect(generatedQuery).toEqual(expectedQuery);
105+
});
106+
107+
it('should preserve source, default graph in sparql 1.1 update MOVE operation', function () {
108+
var parser = new SparqlParser();
109+
var parsedQuery = parser.parse('MOVE DEFAULT TO <http://example.org/named>');
110+
var generator = new SparqlGenerator();
111+
var generatedQuery = generator.stringify(parsedQuery);
112+
var expectedQuery =
113+
'MOVE DEFAULT TO <http://example.org/named>';
114+
expect(generatedQuery).toEqual(expectedQuery);
115+
});
116+
117+
it('should preserve source, default graph in sparql 1.1 update MOVE operation', function () {
118+
var parser = new SparqlParser();
119+
var parsedQuery = parser.parse('COPY SILENT DEFAULT TO <http://example.org/named>');
120+
var generator = new SparqlGenerator();
121+
var generatedQuery = generator.stringify(parsedQuery);
122+
var expectedQuery =
123+
'COPY SILENT DEFAULT TO <http://example.org/named>';
124+
expect(generatedQuery).toEqual(expectedQuery);
125+
});
96126
});
97127

98128
function testQueries(directory, settings) {

0 commit comments

Comments
 (0)