@@ -12,7 +12,7 @@ class CollectionQueryTest : CollectionAny() {
1212 override val logger = LoggerFactory .getLogger(CollectionQueryTest ::class .java)
1313
1414 init {
15- " POST $demoCollectionPath / query - non-existent collection returns 404" {
15+ " POST collection query - non-existent collection returns 404" {
1616 testApplication {
1717 httpPost(" $demoCollectionPath /query" ) {
1818 setSparqlQueryBody(queryPersonNames)
@@ -22,7 +22,7 @@ class CollectionQueryTest : CollectionAny() {
2222 }
2323 }
2424
25- " POST $demoCollectionPath / query - query across branch and lock returns union" {
25+ " POST collection query - query across branch and lock returns union" {
2626 testApplication {
2727 // insert Alice into first repo's master branch
2828 commitModel(masterBranchPath, insertAlice)
@@ -57,7 +57,7 @@ class CollectionQueryTest : CollectionAny() {
5757 }
5858 }
5959
60- " POST $demoCollectionPath / query - query across branch and scratch returns union" {
60+ " POST collection query - query across branch and scratch returns union" {
6161 testApplication {
6262 // insert Alice into the master branch
6363 commitModel(masterBranchPath, insertAlice)
@@ -91,7 +91,7 @@ class CollectionQueryTest : CollectionAny() {
9191 }
9292 }
9393
94- " POST $demoCollectionPath / query - query across branch, lock, and scratch returns full union" {
94+ " POST collection query - query across branch, lock, and scratch returns full union" {
9595 testApplication {
9696 // insert Alice into first repo's master branch
9797 commitModel(masterBranchPath, insertAlice)
@@ -134,7 +134,7 @@ class CollectionQueryTest : CollectionAny() {
134134 }
135135 }
136136
137- " POST $demoCollectionPath / query - ASK query returns true when data exists" {
137+ " POST collection query - ASK query returns true when data exists" {
138138 testApplication {
139139 // insert Alice into the master branch
140140 commitModel(masterBranchPath, insertAlice)
@@ -161,7 +161,7 @@ class CollectionQueryTest : CollectionAny() {
161161 }
162162 }
163163
164- " POST $demoCollectionPath / query - ASK query returns false when no matching data" {
164+ " POST collection query - ASK query returns false when no matching data" {
165165 testApplication {
166166 // insert Bob (not Alice) into the master branch
167167 commitModel(masterBranchPath, insertBob)
@@ -188,7 +188,7 @@ class CollectionQueryTest : CollectionAny() {
188188 }
189189 }
190190
191- " POST $demoCollectionPath / query - CONSTRUCT returns union triples" {
191+ " POST collection query - CONSTRUCT returns union triples" {
192192 testApplication {
193193 // insert Alice into master branch
194194 commitModel(masterBranchPath, insertAlice)
@@ -222,7 +222,7 @@ class CollectionQueryTest : CollectionAny() {
222222 }
223223 }
224224
225- " POST $demoCollectionPath / query - FROM clause rejected with 403" {
225+ " POST collection query - FROM clause rejected with 403" {
226226 testApplication {
227227 // create collection
228228 httpPut(demoCollectionPath) {
@@ -246,7 +246,7 @@ class CollectionQueryTest : CollectionAny() {
246246 }
247247 }
248248
249- " POST $demoCollectionPath / query - FROM NAMED clause rejected with 403" {
249+ " POST collection query - FROM NAMED clause rejected with 403" {
250250 testApplication {
251251 // create collection
252252 httpPut(demoCollectionPath) {
@@ -272,7 +272,7 @@ class CollectionQueryTest : CollectionAny() {
272272 }
273273 }
274274
275- " POST $demoCollectionPath / query/ inspect - inspect generated query" {
275+ " POST collection query inspect - inspect generated query" {
276276 testApplication {
277277 // insert data and create collection
278278 commitModel(masterBranchPath, insertAlice)
@@ -291,7 +291,7 @@ class CollectionQueryTest : CollectionAny() {
291291 }
292292 }
293293
294- " GET $demoCollectionPath / graph - get union graph across branch and lock" {
294+ " GET collection graph - get union graph across branch and lock" {
295295 testApplication {
296296 // insert Alice into first repo
297297 commitModel(masterBranchPath, insertAlice)
@@ -324,7 +324,7 @@ class CollectionQueryTest : CollectionAny() {
324324 }
325325 }
326326
327- " POST $demoCollectionPath / query - single branch collection returns only that branch's data" {
327+ " POST collection query - single branch collection returns only that branch's data" {
328328 testApplication {
329329 // insert Alice into master
330330 commitModel(masterBranchPath, insertAlice)
@@ -350,7 +350,7 @@ class CollectionQueryTest : CollectionAny() {
350350 }
351351 }
352352
353- " POST $demoCollectionPath / query - lock preserves snapshot at time of locking" {
353+ " POST collection query - lock preserves snapshot at time of locking" {
354354 testApplication {
355355 // insert Alice, then lock
356356 commitModel(masterBranchPath, insertAlice)
0 commit comments