use of com.ibm.watson.developer_cloud.assistant.v1.model.Pagination in project java-sdk by watson-developer-cloud.
the class PaginationTypeAdapterTest method testParseTypeAdapter.
/**
* Test parse type adapter.
*
* @throws FileNotFoundException the file not found exception
*/
@Test
public void testParseTypeAdapter() throws FileNotFoundException {
Pagination pagination = loadFixture(FIXTURE, Pagination.class);
assertEquals(pagination.getCursor(), "batman");
}
use of com.ibm.watson.developer_cloud.assistant.v1.model.Pagination in project java-sdk by watson-developer-cloud.
the class ValuesIT method testListValuesWithPaging.
/**
* Test listValues with pagination.
*/
@Test
public void testListValuesWithPaging() {
String entity = "beverage";
String entityValue1 = "coffee";
String entityValue2 = "orange juice";
try {
CreateEntityOptions createOptions = new CreateEntityOptions.Builder(workspaceId, entity).build();
service.createEntity(createOptions).execute();
} catch (Exception ex) {
// Exception is okay if is for Unique Violation
assertTrue(ex.getLocalizedMessage().startsWith("Unique Violation"));
}
CreateValueOptions createOptions = new CreateValueOptions.Builder(workspaceId, entity, entityValue1).build();
try {
service.createValue(createOptions).execute();
} catch (Exception ex) {
// Exception is okay if is for Unique Violation
assertTrue(ex.getLocalizedMessage().startsWith("Unique Violation"));
}
try {
service.createValue(createOptions.newBuilder().value(entityValue2).build()).execute();
} catch (Exception ex) {
// Exception is okay if is for Unique Violation
assertTrue(ex.getLocalizedMessage().startsWith("Unique Violation"));
}
try {
ListValuesOptions.Builder listOptionsBuilder = new ListValuesOptions.Builder(workspaceId, entity);
listOptionsBuilder.sort("updated");
listOptionsBuilder.pageLimit(1L);
listOptionsBuilder.export(true);
ValueCollection response = service.listValues(listOptionsBuilder.build()).execute();
assertNotNull(response);
assertNotNull(response.getPagination());
assertNotNull(response.getPagination().getRefreshUrl());
assertNotNull(response.getPagination().getNextUrl());
assertNotNull(response.getPagination().getCursor());
boolean found1 = false, found2 = false;
while (true) {
assertNotNull(response.getValues());
assertTrue(response.getValues().size() == 1);
found1 |= response.getValues().get(0).getValueText().equals(entityValue1);
found2 |= response.getValues().get(0).getValueText().equals(entityValue2);
if (response.getPagination().getCursor() == null) {
break;
}
String cursor = response.getPagination().getCursor();
response = service.listValues(listOptionsBuilder.cursor(cursor).build()).execute();
}
assertTrue(found1 && found2);
} catch (Exception ex) {
fail(ex.getMessage());
} finally {
DeleteValueOptions deleteOptions = new DeleteValueOptions.Builder(workspaceId, entity, entityValue1).build();
service.deleteValue(deleteOptions).execute();
service.deleteValue(deleteOptions.newBuilder().value(entityValue2).build()).execute();
}
}
use of com.ibm.watson.developer_cloud.assistant.v1.model.Pagination in project java-sdk by watson-developer-cloud.
the class PaginationTypeAdapterTest method testWriteTypeAdapter.
/**
* Test write type adapter.
*
* @throws FileNotFoundException the file not found exception
*/
@Test
public void testWriteTypeAdapter() throws FileNotFoundException {
Pagination pagination = loadFixture(FIXTURE, Pagination.class);
assertNotNull(GsonSingleton.getGson().toJson(pagination), pagination.toString());
}
use of com.ibm.watson.developer_cloud.assistant.v1.model.Pagination in project java-sdk by watson-developer-cloud.
the class PaginationTypeAdapter method read.
/*
* (non-Javadoc)
* @see com.google.gson.TypeAdapter#read(com.google.gson.stream.JsonReader)
*/
@Override
public Pagination read(JsonReader reader) throws IOException {
if (reader.peek() == JsonToken.NULL) {
reader.nextNull();
return null;
}
reader.beginObject();
Pagination pagination = new Pagination();
while (reader.hasNext()) {
String name = reader.nextName();
if (name.equals(REFRESH_URL)) {
pagination.setRefreshUrl(reader.nextString());
} else if (name.equals(NEXT_URL)) {
String nextUrl = reader.nextString();
HttpUrl url = HttpUrl.parse(DEFAULT_ENDPOINT + nextUrl);
pagination.setCursor(url.queryParameter(CURSOR));
pagination.setNextUrl(nextUrl);
} else if (name.equals(TOTAL)) {
pagination.setTotal(reader.nextLong());
} else if (name.equals(MATCHED)) {
pagination.setMatched(reader.nextLong());
} else {
reader.skipValue();
}
}
reader.endObject();
return pagination;
}
use of com.ibm.watson.developer_cloud.assistant.v1.model.Pagination in project java-sdk by watson-developer-cloud.
the class LogPaginationTypeAdapter method read.
/*
* (non-Javadoc)
* @see com.google.gson.TypeAdapter#read(com.google.gson.stream.JsonReader)
*/
@Override
public LogPagination read(JsonReader reader) throws IOException {
if (reader.peek() == JsonToken.NULL) {
reader.nextNull();
return null;
}
reader.beginObject();
LogPagination pagination = new LogPagination();
while (reader.hasNext()) {
String name = reader.nextName();
if (name.equals(NEXT_URL)) {
String nextUrl = reader.nextString();
HttpUrl url = HttpUrl.parse(DEFAULT_ENDPOINT + nextUrl);
pagination.setCursor(url.queryParameter(CURSOR));
pagination.setNextUrl(nextUrl);
} else if (name.equals(MATCHED)) {
pagination.setMatched(reader.nextLong());
} else {
reader.skipValue();
}
}
reader.endObject();
return pagination;
}
Aggregations