Example #1
0
 private static JsonValue getDatasetDescription(String dsName) {
   try (TypedInputStream in = execHttpGet(urlRoot + "$/" + opDatasets + "/" + dsName)) {
     assertEqualsIgnoreCase(WebContent.contentTypeJSON, in.getContentType());
     JsonValue v = JSON.parse(in);
     return v;
   }
 }
Example #2
0
 @Test
 public void list_backups_1() {
   try (TypedInputStream in = execHttpGet(urlRoot + "$/" + opListBackups)) {
     assertEqualsIgnoreCase(WebContent.contentTypeJSON, in.getContentType());
     JsonValue v = JSON.parseAny(in);
     assertNotNull(v.getAsObject().get("backups"));
   }
 }
Example #3
0
 @Test
 public void list_datasets_2() {
   try (TypedInputStream in = execHttpGet(urlRoot + "$/" + opDatasets)) {
     assertEqualsIgnoreCase(WebContent.contentTypeJSON, in.getContentType());
     JsonValue v = JSON.parseAny(in);
     assertNotNull(v.getAsObject().get("datasets"));
     checkJsonDatasetsAll(v);
   }
 }
Example #4
0
 private static JsonValue execGetJSON(String url) {
   try (TypedInputStream in = execHttpGet(url)) {
     assertEqualsIgnoreCase(WebContent.contentTypeJSON, in.getContentType());
     return JSON.parse(in);
   }
 }
Example #5
0
 @Override
 public void handle(String baseIRI, HttpResponse response) throws IOException {
   try (InputStream in = response.getEntity().getContent()) {
     result = JSON.parseAny(in);
   }
 }