use of com.ibm.watson.discovery.v1.model.ListCollectionFieldsResponse in project java-sdk by watson-developer-cloud.
the class DiscoveryServiceTest method listfieldsCollectionIsSuccessful.
// no updateCollection yet?
@Test
public void listfieldsCollectionIsSuccessful() throws InterruptedException {
server.enqueue(jsonResponse(listfieldsCollResp));
ListCollectionFieldsOptions getRequest = new ListCollectionFieldsOptions.Builder(environmentId, collectionId).build();
ListCollectionFieldsResponse response = discoveryService.listCollectionFields(getRequest).execute();
RecordedRequest request = server.takeRequest();
assertEquals(COLL3_PATH, request.getPath());
assertEquals(GET, request.getMethod());
assertEquals(listfieldsCollResp, response);
}
use of com.ibm.watson.discovery.v1.model.ListCollectionFieldsResponse in project java-sdk by watson-developer-cloud.
the class Discovery method listCollectionFields.
/**
* List unique fields.
*
* Gets a list of the unique fields (and their types) stored in the index.
*
* @param listCollectionFieldsOptions the {@link ListCollectionFieldsOptions} containing the options for the call
* @return a {@link ServiceCall} with a response type of {@link ListCollectionFieldsResponse}
*/
public ServiceCall<ListCollectionFieldsResponse> listCollectionFields(ListCollectionFieldsOptions listCollectionFieldsOptions) {
Validator.notNull(listCollectionFieldsOptions, "listCollectionFieldsOptions cannot be null");
String[] pathSegments = { "v1/environments", "collections", "fields" };
String[] pathParameters = { listCollectionFieldsOptions.environmentId(), listCollectionFieldsOptions.collectionId() };
RequestBuilder builder = RequestBuilder.get(RequestBuilder.constructHttpUrl(getEndPoint(), pathSegments, pathParameters));
builder.query(VERSION, versionDate);
return createServiceCall(builder.build(), ResponseConverterUtils.getObject(ListCollectionFieldsResponse.class));
}
use of com.ibm.watson.discovery.v1.model.ListCollectionFieldsResponse in project java-sdk by watson-developer-cloud.
the class DiscoveryServiceTest method listfieldsCollectionIsSuccessful.
// no updateCollection yet?
/**
* Listfields collection is successful.
*
* @throws InterruptedException the interrupted exception
*/
@Test
public void listfieldsCollectionIsSuccessful() throws InterruptedException {
server.enqueue(jsonResponse(listfieldsCollResp));
ListCollectionFieldsOptions getRequest = new ListCollectionFieldsOptions.Builder(environmentId, collectionId).build();
ListCollectionFieldsResponse response = discoveryService.listCollectionFields(getRequest).execute().getResult();
RecordedRequest request = server.takeRequest();
assertEquals(COLL3_PATH, request.getPath());
assertEquals(GET, request.getMethod());
assertEquals(listfieldsCollResp, response);
}
use of com.ibm.watson.discovery.v1.model.ListCollectionFieldsResponse in project java-sdk by watson-developer-cloud.
the class DiscoveryTest method testListCollectionFieldsWOptions.
// Test the listCollectionFields operation with a valid options model parameter
@Test
public void testListCollectionFieldsWOptions() throws Throwable {
// Register a mock response
String mockResponseBody = "{\"fields\": [{\"field\": \"field\", \"type\": \"nested\"}]}";
String listCollectionFieldsPath = "/v1/environments/testString/collections/testString/fields";
server.enqueue(new MockResponse().setHeader("Content-type", "application/json").setResponseCode(200).setBody(mockResponseBody));
// Construct an instance of the ListCollectionFieldsOptions model
ListCollectionFieldsOptions listCollectionFieldsOptionsModel = new ListCollectionFieldsOptions.Builder().environmentId("testString").collectionId("testString").build();
// Invoke listCollectionFields() with a valid options model and verify the result
Response<ListCollectionFieldsResponse> response = discoveryService.listCollectionFields(listCollectionFieldsOptionsModel).execute();
assertNotNull(response);
ListCollectionFieldsResponse responseObj = response.getResult();
assertNotNull(responseObj);
// Verify the contents of the request sent to the mock server
RecordedRequest request = server.takeRequest();
assertNotNull(request);
assertEquals(request.getMethod(), "GET");
// Verify request path
String parsedPath = TestUtilities.parseReqPath(request);
assertEquals(parsedPath, listCollectionFieldsPath);
// Verify query params
Map<String, String> query = TestUtilities.parseQueryString(request);
assertNotNull(query);
assertEquals(query.get("version"), "testString");
}
use of com.ibm.watson.discovery.v1.model.ListCollectionFieldsResponse in project java-sdk by watson-developer-cloud.
the class DiscoveryServiceIT method getCollectionFieldsIsSuccessful.
@Ignore
@Test
public void getCollectionFieldsIsSuccessful() {
Collection collection = createTestCollection();
String collectionId = collection.getCollectionId();
createTestDocument("test_document", collectionId);
ListCollectionFieldsOptions getOptions = new ListCollectionFieldsOptions.Builder(environmentId, collectionId).build();
ListCollectionFieldsResponse getResponse = discovery.listCollectionFields(getOptions).execute();
assertFalse(getResponse.getFields().isEmpty());
}
Aggregations