Search in sources :

Example 1 with ListOfBooks

use of org.talend.types.test.library.common._1.ListOfBooks in project tesb-rt-se by Talend.

the class SamEnablingAssertionTest method commonTest.

private void commonTest(String testName, String searchFor, String isbn, String expectedResult) {
    final String dir = testName;
    serviceContext = startParticipants(dir);
    Library client = (Library) serviceContext.getBean("libraryHttp");
    ListOfBooks response = null;
    try {
        response = searchFor(searchFor, isbn, client);
    } catch (SeekBookError e) {
        fail("Exception during service call");
    }
    assertEquals("Books amount in response differs from 1", 1, booksInResponse(response));
    assertEquals("Received unexpected author name", expectedResult, authorLastName(response));
}
Also used : SeekBookError(org.talend.services.test.library._1_0.SeekBookError) Library(org.talend.services.test.library._1_0.Library) ListOfBooks(org.talend.types.test.library.common._1.ListOfBooks)

Example 2 with ListOfBooks

use of org.talend.types.test.library.common._1.ListOfBooks in project tesb-rt-se by Talend.

the class SamEnablingFeatureTest method commonTest.

private void commonTest(String testName, String searchFor, String isbn, String expectedResult) {
    final String dir = testName;
    serviceContext = startProvider(dir);
    Library client = (Library) serviceContext.getBean("libraryHttp");
    ListOfBooks response = null;
    try {
        response = searchFor(searchFor, isbn, client);
    } catch (SeekBookError e) {
        fail("Exception during service call");
    }
    assertEquals("Books amount in response differs from 1", 1, booksInResponse(response));
    assertEquals("Received unexpected author name", expectedResult, authorLastName(response));
}
Also used : SeekBookError(org.talend.services.test.library._1_0.SeekBookError) Library(org.talend.services.test.library._1_0.Library) ListOfBooks(org.talend.types.test.library.common._1.ListOfBooks)

Example 3 with ListOfBooks

use of org.talend.types.test.library.common._1.ListOfBooks in project tesb-rt-se by Talend.

the class SamEnablingFeatureTest method searchFor.

private ListOfBooks searchFor(String authorLastName, String isbn, Library client) throws SeekBookError {
    SearchFor request = new SearchFor();
    request.getAuthorLastName().add(authorLastName);
    request.setISBNNumber(isbn);
    return client.seekBook(request);
}
Also used : SearchFor(org.talend.types.test.library.common._1.SearchFor)

Example 4 with ListOfBooks

use of org.talend.types.test.library.common._1.ListOfBooks in project tesb-rt-se by Talend.

the class LibraryTester method testRequestResponsePositive.

public void testRequestResponsePositive() throws SeekBookError {
    // Test the positive case where author(s) are found and we retrieve
    // a list of books
    System.out.println("***************************************************************");
    System.out.println("*** Request-Response operation ********************************");
    System.out.println("***************************************************************");
    System.out.println("\nSending request for authors named Icebear");
    SearchFor request = new SearchFor();
    request.getAuthorLastName().add("Icebear");
    ListOfBooks response = libraryHttp.seekBook(request);
    System.out.println("\nResponse received:");
    if (response.getBook().size() != 1) {
        System.out.println("An error occured: number of books found is not equal to 1");
    }
    if (!"Icebear".equals(response.getBook().get(0).getAuthor().get(0).getLastName())) {
        System.out.println("An error occured: the author of the found book is not Icebear");
    }
}
Also used : SearchFor(org.talend.types.test.library.common._1.SearchFor) ListOfBooks(org.talend.types.test.library.common._1.ListOfBooks)

Example 5 with ListOfBooks

use of org.talend.types.test.library.common._1.ListOfBooks in project tesb-rt-se by Talend.

the class LibraryTester method testRequestResponseBusinessFault.

/**
 * Test request response business fault.
 *
 * @throws SeekBookError the seek book error
 */
@SuppressWarnings("unused")
public void testRequestResponseBusinessFault() throws SeekBookError {
    // Test for an unknown Customer name and expect the NoSuchCustomerException
    System.out.println("***************************************************************");
    System.out.println("*** Request-Response operation with Business Fault ************");
    System.out.println("***************************************************************");
    try {
        SearchFor request = new SearchFor();
        System.out.println("\nSending request for authors named Grizzlybear");
        request.getAuthorLastName().add("Grizzlybear");
        ListOfBooks response = libraryHttp.seekBook(request);
        System.out.println("FAIL: We should get a SeekBookError here");
    } catch (SeekBookError e) {
        if (e.getFaultInfo() == null) {
            System.out.println("FaultInfo must not be null");
        }
        if ("No book available from author Grizzlybear".equals(e.getFaultInfo().getException().get(0).getExceptionText())) {
            System.out.println("Unexpected error message received");
        }
        System.out.println("\nSeekBookError exception was received as expected:\n");
    }
}
Also used : SeekBookError(org.talend.services.test.library._1_0.SeekBookError) SearchFor(org.talend.types.test.library.common._1.SearchFor) ListOfBooks(org.talend.types.test.library.common._1.ListOfBooks)

Aggregations

ListOfBooks (org.talend.types.test.library.common._1.ListOfBooks)21 SearchFor (org.talend.types.test.library.common._1.SearchFor)18 SeekBookError (org.talend.services.test.library._1_0.SeekBookError)16 Calendar (java.util.Calendar)7 GregorianCalendar (java.util.GregorianCalendar)7 Library (org.talend.services.test.library._1_0.Library)6 ListOfBooks (org.talend.types.demos.library.common._1.ListOfBooks)6 BookType (org.talend.types.test.library.common._1.BookType)5 PersonType (org.talend.types.test.library.common._1.PersonType)5 SeekBookError (org.talend.services.demos.library._1_0.SeekBookError)3 BookType (org.talend.types.demos.library.common._1.BookType)3 PersonType (org.talend.types.demos.library.common._1.PersonType)3 SearchFor (org.talend.types.demos.library.common._1.SearchFor)3 HashMap (java.util.HashMap)1 BindingProvider (javax.xml.ws.BindingProvider)1 CallContext (org.talend.esb.mep.requestcallback.feature.CallContext)1 CallContextStore (org.talend.esb.mep.requestcallback.impl.callcontext.CallContextStore)1 LibraryConsumer (org.talend.services.demos.library._1_0.LibraryConsumer)1