Search in sources :

Example 1 with ModerationService

use of org.eclipse.sw360.datahandler.thrift.moderation.ModerationService in project sw360portal by sw360.

the class ComponentAndAttachmentAwareDBTest method getThriftClients.

protected static ThriftClients getThriftClients() throws TException, IOException {
    assertTestDbNames();
    ThriftClients thriftClients = failingMock(ThriftClients.class);
    ComponentHandler componentHandler = new ComponentHandler(thriftClients);
    VendorHandler vendorHandler = new VendorHandler();
    AttachmentHandler attachmentHandler = new AttachmentHandler();
    ModerationService.Iface moderationService = failingMock(ModerationService.Iface.class);
    doNothing().when(moderationService).deleteRequestsOnDocument(anyString());
    doReturn(componentHandler).when(thriftClients).makeComponentClient();
    doReturn(vendorHandler).when(thriftClients).makeVendorClient();
    doReturn(attachmentHandler).when(thriftClients).makeAttachmentClient();
    doReturn(moderationService).when(thriftClients).makeModerationClient();
    return thriftClients;
}
Also used : ModerationService(org.eclipse.sw360.datahandler.thrift.moderation.ModerationService) AttachmentHandler(org.eclipse.sw360.attachments.AttachmentHandler) ComponentHandler(org.eclipse.sw360.components.ComponentHandler) VendorHandler(org.eclipse.sw360.vendors.VendorHandler) ThriftClients(org.eclipse.sw360.datahandler.thrift.ThriftClients)

Aggregations

AttachmentHandler (org.eclipse.sw360.attachments.AttachmentHandler)1 ComponentHandler (org.eclipse.sw360.components.ComponentHandler)1 ThriftClients (org.eclipse.sw360.datahandler.thrift.ThriftClients)1 ModerationService (org.eclipse.sw360.datahandler.thrift.moderation.ModerationService)1 VendorHandler (org.eclipse.sw360.vendors.VendorHandler)1