use of com.ibm.watson.discovery.v1.model.AddDocumentOptions in project java-sdk by watson-developer-cloud.
the class DiscoveryTest method testAddDocumentWOptions.
@Test
public void testAddDocumentWOptions() throws Throwable {
// Schedule some responses.
String mockResponseBody = "{\"document_id\": \"documentId\", \"status\": \"processing\"}";
String addDocumentPath = "/v2/projects/testString/collections/testString/documents";
server.enqueue(new MockResponse().setHeader("Content-type", "application/json").setResponseCode(202).setBody(mockResponseBody));
constructClientService();
// Construct an instance of the AddDocumentOptions model
AddDocumentOptions addDocumentOptionsModel = new AddDocumentOptions.Builder().projectId("testString").collectionId("testString").file(TestUtilities.createMockStream("This is a mock file.")).filename("testString").fileContentType("application/json").metadata("testString").xWatsonDiscoveryForce(false).build();
// Invoke operation with valid options model (positive test)
Response<DocumentAccepted> response = discoveryService.addDocument(addDocumentOptionsModel).execute();
assertNotNull(response);
DocumentAccepted responseObj = response.getResult();
assertNotNull(responseObj);
// Verify the contents of the request
RecordedRequest request = server.takeRequest();
assertNotNull(request);
assertEquals(request.getMethod(), "POST");
// Check query
Map<String, String> query = TestUtilities.parseQueryString(request);
assertNotNull(query);
// Get query params
assertEquals(query.get("version"), "testString");
// Check request path
String parsedPath = TestUtilities.parseReqPath(request);
assertEquals(parsedPath, addDocumentPath);
}
use of com.ibm.watson.discovery.v1.model.AddDocumentOptions in project nlp4j by oyahiroki.
the class WD2DocumentImporter method importDocument.
@Override
public void importDocument(Document doc) throws IOException {
String fileName;
if (doc.getAttribute("filename") != null) {
fileName = doc.getAttributeAsString("filename");
} else {
fileName = "hello" + System.currentTimeMillis() + ".json";
}
JsonObject jsonObj = DocumentUtil.toJsonObject(doc);
jsonObj.remove("keywords");
{
IamAuthenticator authenticator = new IamAuthenticator(this.DISCOVERY_APIKEY);
Discovery v2Discovery = new Discovery("2020-08-30", authenticator);
v2Discovery.setServiceUrl(this.DISCOVERY_URL);
AddDocumentOptions options = //
new AddDocumentOptions.Builder().projectId(//
this.projectId).collectionId(//
this.collectionId).file(//
new ByteArrayInputStream(jsonObj.toString().getBytes(StandardCharsets.UTF_8))).filename(//
fileName).fileContentType(//
"application/json").build();
DocumentAccepted response = v2Discovery.addDocument(options).execute().getResult();
System.err.println(response.getStatus());
System.err.println(response);
}
}
Aggregations