SQT The SPARQL-Query-Tester

The SQT is a simple Tool which allows you to execute SPARQL-Queries within the browser and test the results.
Below you should see the results of your last configuration or a default configuration.
If you want to learn more about the SQT, head over to Github.

Invalid configuration.

It seems like you tried to upload an invalid configuration!
Please make sure that your configuration is well formatted and contains a config and a tests part.
A minimal working example would be:

config:
   url: http://dbpedia.org/sparql
tests:
- title: Working test
  query: |
     Select ?s ?p ?o {
       ?s ?p ?o .
     } LIMIT 10
            
Upload config.yml

 

Test Results Test all Benchmark all
Upload config.yml
Benchmark Runs:

{{bar.amount}} of {{totalCount}} tests {{bar.label}} (~{{bar.value | number:0}}%)
{{test.title || 'no test title given'}} last: {{test.$duration.list[0]}} ms (ø {{test.$duration.total/test.$duration.list.length | number : 2}} ms)

Tests:

  • {{testName}}
    {{result.message}}

    {{result.expected}}

Config:

                             Endpoint: {{test.config.url}}
DefaultGraph: {{test.config.graph}}
Timeout: {{test.config.timeout || 5000}}

Execution time:

                        
{{test.$duration.list | beautifyDurations : test.$duration.max}}
                        

Query:

                        
                        {{test.query}}
                    

Results:

                        
                        {{test.$queryResults | replaceURIsWithPrefixes : prefixes}}