Search in sources :

Example 1 with FeedbackList

use of com.ibm.watson.compare_comply.v1.model.FeedbackList in project java-sdk by watson-developer-cloud.

the class CompareComplyServiceIT method testFeedbackOperations.

@Test
public void testFeedbackOperations() {
    String userId = "lp_java";
    String comment = "could be better";
    String text = "1. IBM will provide a Senior Managing Consultant / expert resource, for up to 80 hours, to assist " + "Florida Power & Light (FPL) with the creation of an IT infrastructure unit cost model for existing " + "infrastructure.";
    ShortDoc shortDoc = new ShortDoc.Builder().title("doc title").hash("").build();
    Location location = new Location.Builder().begin(241).end(237).build();
    OriginalLabelsIn.Builder originalLabelsInBuilder = new OriginalLabelsIn.Builder();
    Label label1 = new Label.Builder().nature("Obligation").party("IBM").build();
    List<String> ids1 = Arrays.asList("85f5981a-ba91-44f5-9efa-0bd22e64b7bc", "ce0480a1-5ef1-4c3e-9861-3743b5610795");
    TypeLabel typeLabel1 = new TypeLabel.Builder().label(label1).provenanceIds(ids1).build();
    Label label2 = new Label.Builder().nature("End User").party("Exclusion").build();
    List<String> ids2 = Arrays.asList("85f5981a-ba91-44f5-9efa-0bd22e64b7bc", "ce0480a1-5ef1-4c3e-9861-3743b5610795");
    TypeLabel typeLabel2 = new TypeLabel.Builder().label(label2).provenanceIds(ids2).build();
    List<TypeLabel> types = Arrays.asList(typeLabel1, typeLabel2);
    originalLabelsInBuilder.types(types);
    Category category1 = new Category.Builder().label(Category.Label.RESPONSIBILITIES).provenanceIds(new ArrayList<String>()).build();
    Category category2 = new Category.Builder().label(Category.Label.AMENDMENTS).provenanceIds(new ArrayList<String>()).build();
    originalLabelsInBuilder.categories(Arrays.asList(category1, category2));
    UpdatedLabelsIn.Builder updatedLabelsInBuilder = new UpdatedLabelsIn.Builder();
    Label label3 = new Label.Builder().nature("Disclaimer").party("buyer").build();
    TypeLabel typeLabel3 = new TypeLabel.Builder().label(label3).build();
    updatedLabelsInBuilder.types(Arrays.asList(typeLabel1, typeLabel3));
    updatedLabelsInBuilder.categories(Arrays.asList(category1, category2));
    FeedbackDataInput feedbackDataInput = new FeedbackDataInput.Builder().document(shortDoc).location(location).text(text).originalLabels(originalLabelsInBuilder.build()).updatedLabels(updatedLabelsInBuilder.build()).feedbackType("element_classification").modelId("contracts").modelVersion("11.00").build();
    AddFeedbackOptions addFeedbackOptions = new AddFeedbackOptions.Builder().userId(userId).comment(comment).feedbackData(feedbackDataInput).build();
    FeedbackReturn feedbackReturn = service.addFeedback(addFeedbackOptions).execute().getResult();
    String feedbackId = feedbackReturn.getFeedbackId();
    GetFeedbackOptions getFeedbackOptions = new GetFeedbackOptions.Builder().feedbackId(feedbackId).build();
    GetFeedback getFeedback = service.getFeedback(getFeedbackOptions).addHeader("x-watson-metadata", "customer_id=sdk-test-customer-id").execute().getResult();
    assertEquals(text, getFeedback.getFeedbackData().getText());
    DeleteFeedbackOptions deleteFeedbackOptions = new DeleteFeedbackOptions.Builder().feedbackId(feedbackId).build();
    service.deleteFeedback(deleteFeedbackOptions).execute();
    FeedbackList feedbackList = service.listFeedback().execute().getResult();
    List<GetFeedback> allFeedback = feedbackList.getFeedback();
    boolean successfullyDeleted = true;
    for (GetFeedback feedback : allFeedback) {
        if (feedback.getFeedbackId().equals(feedbackId)) {
            successfullyDeleted = false;
            break;
        }
    }
    assertTrue(successfullyDeleted);
}
Also used : GetFeedback(com.ibm.watson.compare_comply.v1.model.GetFeedback) Category(com.ibm.watson.compare_comply.v1.model.Category) FeedbackDataInput(com.ibm.watson.compare_comply.v1.model.FeedbackDataInput) Label(com.ibm.watson.compare_comply.v1.model.Label) TypeLabel(com.ibm.watson.compare_comply.v1.model.TypeLabel) ArrayList(java.util.ArrayList) FeedbackList(com.ibm.watson.compare_comply.v1.model.FeedbackList) ShortDoc(com.ibm.watson.compare_comply.v1.model.ShortDoc) OriginalLabelsIn(com.ibm.watson.compare_comply.v1.model.OriginalLabelsIn) GetFeedbackOptions(com.ibm.watson.compare_comply.v1.model.GetFeedbackOptions) FeedbackReturn(com.ibm.watson.compare_comply.v1.model.FeedbackReturn) TypeLabel(com.ibm.watson.compare_comply.v1.model.TypeLabel) AddFeedbackOptions(com.ibm.watson.compare_comply.v1.model.AddFeedbackOptions) UpdatedLabelsIn(com.ibm.watson.compare_comply.v1.model.UpdatedLabelsIn) DeleteFeedbackOptions(com.ibm.watson.compare_comply.v1.model.DeleteFeedbackOptions) Location(com.ibm.watson.compare_comply.v1.model.Location) Test(org.junit.Test)

Example 2 with FeedbackList

use of com.ibm.watson.compare_comply.v1.model.FeedbackList in project java-sdk by watson-developer-cloud.

the class CompareComply method listFeedback.

/**
 * List the feedback in a document.
 *
 * <p>Lists the feedback in a document.
 *
 * @param listFeedbackOptions the {@link ListFeedbackOptions} containing the options for the call
 * @return a {@link ServiceCall} with a result of type {@link FeedbackList}
 */
public ServiceCall<FeedbackList> listFeedback(ListFeedbackOptions listFeedbackOptions) {
    if (listFeedbackOptions == null) {
        listFeedbackOptions = new ListFeedbackOptions.Builder().build();
    }
    RequestBuilder builder = RequestBuilder.get(RequestBuilder.resolveRequestUrl(getServiceUrl(), "/v1/feedback"));
    Map<String, String> sdkHeaders = SdkCommon.getSdkHeaders("compare-comply", "v1", "listFeedback");
    for (Entry<String, String> header : sdkHeaders.entrySet()) {
        builder.header(header.getKey(), header.getValue());
    }
    builder.header("Accept", "application/json");
    builder.query("version", String.valueOf(this.version));
    if (listFeedbackOptions.feedbackType() != null) {
        builder.query("feedback_type", String.valueOf(listFeedbackOptions.feedbackType()));
    }
    if (listFeedbackOptions.documentTitle() != null) {
        builder.query("document_title", String.valueOf(listFeedbackOptions.documentTitle()));
    }
    if (listFeedbackOptions.modelId() != null) {
        builder.query("model_id", String.valueOf(listFeedbackOptions.modelId()));
    }
    if (listFeedbackOptions.modelVersion() != null) {
        builder.query("model_version", String.valueOf(listFeedbackOptions.modelVersion()));
    }
    if (listFeedbackOptions.categoryRemoved() != null) {
        builder.query("category_removed", String.valueOf(listFeedbackOptions.categoryRemoved()));
    }
    if (listFeedbackOptions.categoryAdded() != null) {
        builder.query("category_added", String.valueOf(listFeedbackOptions.categoryAdded()));
    }
    if (listFeedbackOptions.categoryNotChanged() != null) {
        builder.query("category_not_changed", String.valueOf(listFeedbackOptions.categoryNotChanged()));
    }
    if (listFeedbackOptions.typeRemoved() != null) {
        builder.query("type_removed", String.valueOf(listFeedbackOptions.typeRemoved()));
    }
    if (listFeedbackOptions.typeAdded() != null) {
        builder.query("type_added", String.valueOf(listFeedbackOptions.typeAdded()));
    }
    if (listFeedbackOptions.typeNotChanged() != null) {
        builder.query("type_not_changed", String.valueOf(listFeedbackOptions.typeNotChanged()));
    }
    if (listFeedbackOptions.pageLimit() != null) {
        builder.query("page_limit", String.valueOf(listFeedbackOptions.pageLimit()));
    }
    if (listFeedbackOptions.cursor() != null) {
        builder.query("cursor", String.valueOf(listFeedbackOptions.cursor()));
    }
    if (listFeedbackOptions.sort() != null) {
        builder.query("sort", String.valueOf(listFeedbackOptions.sort()));
    }
    if (listFeedbackOptions.includeTotal() != null) {
        builder.query("include_total", String.valueOf(listFeedbackOptions.includeTotal()));
    }
    ResponseConverter<FeedbackList> responseConverter = ResponseConverterUtils.getValue(new com.google.gson.reflect.TypeToken<FeedbackList>() {
    }.getType());
    return createServiceCall(builder.build(), responseConverter);
}
Also used : RequestBuilder(com.ibm.cloud.sdk.core.http.RequestBuilder) RequestBuilder(com.ibm.cloud.sdk.core.http.RequestBuilder) FeedbackList(com.ibm.watson.compare_comply.v1.model.FeedbackList)

Example 3 with FeedbackList

use of com.ibm.watson.compare_comply.v1.model.FeedbackList in project java-sdk by watson-developer-cloud.

the class CompareComplyTest method testListFeedbackWOptions.

@Test
public void testListFeedbackWOptions() throws Throwable {
    // Schedule some responses.
    String mockResponseBody = "{\"feedback\": [{\"feedback_id\": \"feedbackId\", \"created\": \"2019-01-01T12:00:00.000Z\", \"comment\": \"comment\", \"feedback_data\": {\"feedback_type\": \"feedbackType\", \"document\": {\"title\": \"title\", \"hash\": \"hash\"}, \"model_id\": \"modelId\", \"model_version\": \"modelVersion\", \"location\": {\"begin\": 5, \"end\": 3}, \"text\": \"text\", \"original_labels\": {\"types\": [{\"label\": {\"nature\": \"nature\", \"party\": \"party\"}, \"provenance_ids\": [\"provenanceIds\"], \"modification\": \"added\"}], \"categories\": [{\"label\": \"Amendments\", \"provenance_ids\": [\"provenanceIds\"], \"modification\": \"added\"}]}, \"updated_labels\": {\"types\": [{\"label\": {\"nature\": \"nature\", \"party\": \"party\"}, \"provenance_ids\": [\"provenanceIds\"], \"modification\": \"added\"}], \"categories\": [{\"label\": \"Amendments\", \"provenance_ids\": [\"provenanceIds\"], \"modification\": \"added\"}]}, \"pagination\": {\"refresh_cursor\": \"refreshCursor\", \"next_cursor\": \"nextCursor\", \"refresh_url\": \"refreshUrl\", \"next_url\": \"nextUrl\", \"total\": 5}}}]}";
    String listFeedbackPath = "/v1/feedback";
    server.enqueue(new MockResponse().setHeader("Content-type", "application/json").setResponseCode(200).setBody(mockResponseBody));
    constructClientService();
    // Construct an instance of the ListFeedbackOptions model
    ListFeedbackOptions listFeedbackOptionsModel = new ListFeedbackOptions.Builder().feedbackType("testString").documentTitle("testString").modelId("testString").modelVersion("testString").categoryRemoved("testString").categoryAdded("testString").categoryNotChanged("testString").typeRemoved("testString").typeAdded("testString").typeNotChanged("testString").pageLimit(Long.valueOf("100")).cursor("testString").sort("testString").includeTotal(true).build();
    // Invoke operation with valid options model (positive test)
    Response<FeedbackList> response = compareComplyService.listFeedback(listFeedbackOptionsModel).execute();
    assertNotNull(response);
    FeedbackList responseObj = response.getResult();
    assertNotNull(responseObj);
    // Verify the contents of the request
    RecordedRequest request = server.takeRequest();
    assertNotNull(request);
    assertEquals(request.getMethod(), "GET");
    // Check query
    Map<String, String> query = TestUtilities.parseQueryString(request);
    assertNotNull(query);
    // Get query params
    assertEquals(query.get("version"), "testString");
    assertEquals(query.get("feedback_type"), "testString");
    assertEquals(query.get("document_title"), "testString");
    assertEquals(query.get("model_id"), "testString");
    assertEquals(query.get("model_version"), "testString");
    assertEquals(query.get("category_removed"), "testString");
    assertEquals(query.get("category_added"), "testString");
    assertEquals(query.get("category_not_changed"), "testString");
    assertEquals(query.get("type_removed"), "testString");
    assertEquals(query.get("type_added"), "testString");
    assertEquals(query.get("type_not_changed"), "testString");
    assertEquals(Long.valueOf(query.get("page_limit")), Long.valueOf("100"));
    assertEquals(query.get("cursor"), "testString");
    assertEquals(query.get("sort"), "testString");
    assertEquals(Boolean.valueOf(query.get("include_total")), Boolean.valueOf(true));
    // Check request path
    String parsedPath = TestUtilities.parseReqPath(request);
    assertEquals(parsedPath, listFeedbackPath);
}
Also used : ListFeedbackOptions(com.ibm.watson.compare_comply.v1.model.ListFeedbackOptions) RecordedRequest(okhttp3.mockwebserver.RecordedRequest) MockResponse(okhttp3.mockwebserver.MockResponse) FeedbackList(com.ibm.watson.compare_comply.v1.model.FeedbackList) Test(org.testng.annotations.Test)

Aggregations

FeedbackList (com.ibm.watson.compare_comply.v1.model.FeedbackList)3 RequestBuilder (com.ibm.cloud.sdk.core.http.RequestBuilder)1 AddFeedbackOptions (com.ibm.watson.compare_comply.v1.model.AddFeedbackOptions)1 Category (com.ibm.watson.compare_comply.v1.model.Category)1 DeleteFeedbackOptions (com.ibm.watson.compare_comply.v1.model.DeleteFeedbackOptions)1 FeedbackDataInput (com.ibm.watson.compare_comply.v1.model.FeedbackDataInput)1 FeedbackReturn (com.ibm.watson.compare_comply.v1.model.FeedbackReturn)1 GetFeedback (com.ibm.watson.compare_comply.v1.model.GetFeedback)1 GetFeedbackOptions (com.ibm.watson.compare_comply.v1.model.GetFeedbackOptions)1 Label (com.ibm.watson.compare_comply.v1.model.Label)1 ListFeedbackOptions (com.ibm.watson.compare_comply.v1.model.ListFeedbackOptions)1 Location (com.ibm.watson.compare_comply.v1.model.Location)1 OriginalLabelsIn (com.ibm.watson.compare_comply.v1.model.OriginalLabelsIn)1 ShortDoc (com.ibm.watson.compare_comply.v1.model.ShortDoc)1 TypeLabel (com.ibm.watson.compare_comply.v1.model.TypeLabel)1 UpdatedLabelsIn (com.ibm.watson.compare_comply.v1.model.UpdatedLabelsIn)1 ArrayList (java.util.ArrayList)1 MockResponse (okhttp3.mockwebserver.MockResponse)1 RecordedRequest (okhttp3.mockwebserver.RecordedRequest)1 Test (org.junit.Test)1