Search in sources :

Example 1 with GetBlockedAssistantsRequest

use of com.fanap.podchat.chat.assistant.request_model.GetBlockedAssistantsRequest in project pod-chat-android-sdk by FanapSoft.

the class AssistantCacheTest method unBlockAssistantAndCheckAssistantListInCache.

@Test
public void unBlockAssistantAndCheckAssistantListInCache() {
    populateContactsFromServer();
    ArrayList<AssistantVo> blockedListFromServer = new ArrayList<>();
    chat.addListener(new ChatListener() {

        @Override
        public void onAssistantBlocks(ChatResponse<List<AssistantVo>> response) {
            print("Blocked assistants list cache: " + response.isCache());
            prettyLog(response.getJson());
            blockedListFromServer.addAll(response.getResult());
            chat.removeListener(this);
            resumeProcess();
        }
    });
    GetBlockedAssistantsRequest getBlockedAssistantsRequest = new GetBlockedAssistantsRequest.Builder().withNoCache().build();
    chat.getBlocksAssistant(getBlockedAssistantsRequest);
    pauseProcess();
    Contact assistantContactToUnBlock = contacts.stream().filter(contact -> contact.getLinkedUser() != null && Objects.equals(contact.getLinkedUser().getUsername(), blockedListFromServer.get(0).getParticipantVO().getUsername())).findFirst().get();
    print("Going to unblock " + assistantContactToUnBlock.getFirstName());
    prettyLog(App.getGson().toJson(assistantContactToUnBlock));
    Invitee invitee = new Invitee(assistantContactToUnBlock.getId(), InviteType.Constants.TO_BE_USER_CONTACT_ID);
    AssistantVo assistantToUnBlock = new AssistantVo();
    assistantToUnBlock.setInvitees(invitee);
    List<AssistantVo> toUnBlockAssistantList = new ArrayList<>();
    toUnBlockAssistantList.add(assistantToUnBlock);
    chat.addListener(new ChatListener() {

        @Override
        public void onAssistantUnBlocked(ChatResponse<List<AssistantVo>> response) {
            print("Assistant unblocked");
            prettyLog(response.getJson());
            toUnBlockAssistantList.clear();
            toUnBlockAssistantList.addAll(response.getResult());
            chat.removeListener(this);
            resumeProcess();
        }
    });
    ChatListener mMockedListener = Mockito.mock(ChatListener.class);
    chat.addListener(mMockedListener);
    BlockUnblockAssistantRequest requestBlock = new BlockUnblockAssistantRequest.Builder(toUnBlockAssistantList, false).build();
    chat.unBlockAssistant(requestBlock);
    pauseProcess();
    ArrayList<AssistantVo> assistantListInCache = new ArrayList<>();
    chat.addListener(new ChatListener() {

        @Override
        public void onGetAssistants(ChatResponse<List<AssistantVo>> response) {
            print("Receive assistants list cache: " + response.isCache());
            prettyLog(response.getJson());
            if (response.isCache()) {
                assistantListInCache.addAll(response.getResult());
                chat.removeListener(this);
                resumeProcess();
            }
        }
    });
    GetAssistantRequest getAssistantRequest = new GetAssistantRequest.Builder().build();
    chat.getAssistants(getAssistantRequest);
    pauseProcess();
    Assert.assertTrue(assistantListInCache.stream().anyMatch(assistantInCache -> assistantInCache.getParticipantVO().getId() == toUnBlockAssistantList.get(0).getParticipantVO().getId() && !assistantInCache.getBlock()));
}
Also used : ResultContact(com.fanap.podchat.model.ResultContact) ResultThreads(com.fanap.podchat.model.ResultThreads) RoleType(com.fanap.podchat.chat.RoleType) ChatPresenter(com.example.chat.application.chatexample.ChatPresenter) ResultHistory(com.fanap.podchat.model.ResultHistory) RequestGetContact(com.fanap.podchat.requestobject.RequestGetContact) Looper(android.os.Looper) App(com.fanap.podchat.chat.App) Invitee(com.fanap.podchat.mainmodel.Invitee) InviteType(com.fanap.podchat.util.InviteType) Participant(com.fanap.podchat.mainmodel.Participant) Logger(com.orhanobut.logger.Logger) InstrumentationRegistry(android.support.test.InstrumentationRegistry) ChatListener(com.fanap.podchat.chat.ChatListener) MessageVO(com.fanap.podchat.mainmodel.MessageVO) Collectors(java.util.stream.Collectors) Objects(java.util.Objects) AssistantHistoryVo(com.fanap.podchat.chat.assistant.model.AssistantHistoryVo) APP_ID(com.example.chat.application.chatexample.ChatActivity.APP_ID) List(java.util.List) GetBlockedAssistantsRequest(com.fanap.podchat.chat.assistant.request_model.GetBlockedAssistantsRequest) GetAssistantRequest(com.fanap.podchat.chat.assistant.request_model.GetAssistantRequest) Chat(com.fanap.podchat.chat.Chat) Context(android.content.Context) GetAssistantHistoryRequest(com.fanap.podchat.chat.assistant.request_model.GetAssistantHistoryRequest) RequestConnect(com.fanap.podchat.requestobject.RequestConnect) AssistantVo(com.fanap.podchat.chat.assistant.model.AssistantVo) BeforeClass(org.junit.BeforeClass) Mock(org.mockito.Mock) Thread(com.fanap.podchat.mainmodel.Thread) RunWith(org.junit.runner.RunWith) ChatContract(com.example.chat.application.chatexample.ChatContract) RegisterAssistantRequest(com.fanap.podchat.chat.assistant.request_model.RegisterAssistantRequest) ChatResponse(com.fanap.podchat.model.ChatResponse) ResultParticipant(com.fanap.podchat.model.ResultParticipant) ArrayList(java.util.ArrayList) R(com.fanap.podchat.example.R) RequestThreadParticipant(com.fanap.podchat.requestobject.RequestThreadParticipant) BaseApplication(com.example.chat.application.chatexample.BaseApplication) ChatActivity(com.example.chat.application.chatexample.ChatActivity) Contact(com.fanap.podchat.mainmodel.Contact) RequestThread(com.fanap.podchat.requestobject.RequestThread) Before(org.junit.Before) RequestGetHistory(com.fanap.podchat.requestobject.RequestGetHistory) CHAT_READY(com.fanap.podchat.util.ChatStateType.ChatSateConstant.CHAT_READY) ActivityTestRule(android.support.test.rule.ActivityTestRule) Test(org.junit.Test) AndroidJUnit4(android.support.test.runner.AndroidJUnit4) LargeTest(android.support.test.filters.LargeTest) Mockito(org.mockito.Mockito) Rule(org.junit.Rule) BlockUnblockAssistantRequest(com.fanap.podchat.chat.assistant.request_model.BlockUnblockAssistantRequest) Assert(org.junit.Assert) Activity(android.app.Activity) Collections(java.util.Collections) AssistantVo(com.fanap.podchat.chat.assistant.model.AssistantVo) ArrayList(java.util.ArrayList) ResultContact(com.fanap.podchat.model.ResultContact) RequestGetContact(com.fanap.podchat.requestobject.RequestGetContact) Contact(com.fanap.podchat.mainmodel.Contact) Invitee(com.fanap.podchat.mainmodel.Invitee) ChatListener(com.fanap.podchat.chat.ChatListener) List(java.util.List) ArrayList(java.util.ArrayList) GetBlockedAssistantsRequest(com.fanap.podchat.chat.assistant.request_model.GetBlockedAssistantsRequest) GetAssistantRequest(com.fanap.podchat.chat.assistant.request_model.GetAssistantRequest) BlockUnblockAssistantRequest(com.fanap.podchat.chat.assistant.request_model.BlockUnblockAssistantRequest) Test(org.junit.Test) LargeTest(android.support.test.filters.LargeTest)

Example 2 with GetBlockedAssistantsRequest

use of com.fanap.podchat.chat.assistant.request_model.GetBlockedAssistantsRequest in project pod-chat-android-sdk by FanapSoft.

the class AssistantCacheTest method getBlockedAssistantsList.

@Test
public void getBlockedAssistantsList() {
    ArrayList<AssistantVo> blockedListFromServer = new ArrayList<>();
    ArrayList<AssistantVo> blockedListInCache = new ArrayList<>();
    chat.addListener(new ChatListener() {

        @Override
        public void onAssistantBlocks(ChatResponse<List<AssistantVo>> response) {
            print("Blocked assistants list cache: " + response.isCache());
            prettyLog(response.getJson());
            if (response.isCache()) {
                blockedListInCache.addAll(response.getResult());
            } else {
                blockedListFromServer.addAll(response.getResult());
            }
            if (blockedListFromServer.size() == blockedListInCache.size()) {
                print("Cache and Server data are filled now");
                chat.removeListener(this);
                resumeProcess();
            }
        }
    });
    GetBlockedAssistantsRequest getBlockedAssistantsRequest = new GetBlockedAssistantsRequest.Builder().build();
    chat.getBlocksAssistant(getBlockedAssistantsRequest);
    pauseProcess();
    for (AssistantVo assistantCache : blockedListInCache) {
        AssistantVo assistantServer = blockedListFromServer.stream().filter(assistantVo -> assistantVo.getParticipantVO().getId() == assistantCache.getParticipantVO().getId()).findFirst().get();
        if (!assistantCache.getRoles().containsAll(assistantServer.getRoles())) {
            Assert.fail("Roles are not same => " + assistantCache.getRoles() + " != " + assistantServer.getRoles());
        }
    }
    Assert.assertTrue(true);
}
Also used : AssistantVo(com.fanap.podchat.chat.assistant.model.AssistantVo) ArrayList(java.util.ArrayList) ChatListener(com.fanap.podchat.chat.ChatListener) List(java.util.List) ArrayList(java.util.ArrayList) GetBlockedAssistantsRequest(com.fanap.podchat.chat.assistant.request_model.GetBlockedAssistantsRequest) Test(org.junit.Test) LargeTest(android.support.test.filters.LargeTest)

Example 3 with GetBlockedAssistantsRequest

use of com.fanap.podchat.chat.assistant.request_model.GetBlockedAssistantsRequest in project pod-chat-android-sdk by FanapSoft.

the class AssistantCacheTest method unBlockAssistantAndCheckBlockListInCache.

@Test
public void unBlockAssistantAndCheckBlockListInCache() {
    populateContactsFromServer();
    ArrayList<AssistantVo> blockedListFromServer = new ArrayList<>();
    chat.addListener(new ChatListener() {

        @Override
        public void onAssistantBlocks(ChatResponse<List<AssistantVo>> response) {
            print("Blocked assistants list cache: " + response.isCache());
            prettyLog(response.getJson());
            blockedListFromServer.addAll(response.getResult());
            chat.removeListener(this);
            resumeProcess();
        }
    });
    GetBlockedAssistantsRequest getBlockedAssistantsRequest = new GetBlockedAssistantsRequest.Builder().withNoCache().build();
    chat.getBlocksAssistant(getBlockedAssistantsRequest);
    pauseProcess();
    Contact assistantContactToUnBlock = contacts.stream().filter(contact -> contact.getLinkedUser() != null && Objects.equals(contact.getLinkedUser().getUsername(), blockedListFromServer.get(0).getParticipantVO().getUsername())).findFirst().get();
    print("Going to unblock " + assistantContactToUnBlock.getFirstName());
    prettyLog(App.getGson().toJson(assistantContactToUnBlock));
    Invitee invitee = new Invitee(assistantContactToUnBlock.getId(), InviteType.Constants.TO_BE_USER_CONTACT_ID);
    AssistantVo assistantToUnBlock = new AssistantVo();
    assistantToUnBlock.setInvitees(invitee);
    List<AssistantVo> toUnBlockAssistantList = new ArrayList<>();
    toUnBlockAssistantList.add(assistantToUnBlock);
    chat.addListener(new ChatListener() {

        @Override
        public void onAssistantUnBlocked(ChatResponse<List<AssistantVo>> response) {
            print("Assistant unblocked");
            prettyLog(response.getJson());
            toUnBlockAssistantList.clear();
            toUnBlockAssistantList.addAll(response.getResult());
            chat.removeListener(this);
            resumeProcess();
        }
    });
    ChatListener mMockedListener = Mockito.mock(ChatListener.class);
    chat.addListener(mMockedListener);
    BlockUnblockAssistantRequest requestBlock = new BlockUnblockAssistantRequest.Builder(toUnBlockAssistantList, false).build();
    chat.unBlockAssistant(requestBlock);
    pauseProcess();
    ArrayList<AssistantVo> blockedListInCache = new ArrayList<>();
    chat.addListener(new ChatListener() {

        @Override
        public void onAssistantBlocks(ChatResponse<List<AssistantVo>> response) {
            print("Blocked assistants list cache: " + response.isCache());
            prettyLog(response.getJson());
            if (response.isCache()) {
                blockedListInCache.addAll(response.getResult());
                chat.removeListener(this);
                resumeProcess();
            }
        }
    });
    GetBlockedAssistantsRequest getBlockedAssistantsRequest2 = new GetBlockedAssistantsRequest.Builder().build();
    chat.getBlocksAssistant(getBlockedAssistantsRequest2);
    pauseProcess();
    Assert.assertTrue(blockedListInCache.stream().noneMatch(assistantVo -> assistantVo.getParticipantVO().getId() == toUnBlockAssistantList.get(0).getParticipantVO().getId()));
}
Also used : ResultContact(com.fanap.podchat.model.ResultContact) ResultThreads(com.fanap.podchat.model.ResultThreads) RoleType(com.fanap.podchat.chat.RoleType) ChatPresenter(com.example.chat.application.chatexample.ChatPresenter) ResultHistory(com.fanap.podchat.model.ResultHistory) RequestGetContact(com.fanap.podchat.requestobject.RequestGetContact) Looper(android.os.Looper) App(com.fanap.podchat.chat.App) Invitee(com.fanap.podchat.mainmodel.Invitee) InviteType(com.fanap.podchat.util.InviteType) Participant(com.fanap.podchat.mainmodel.Participant) Logger(com.orhanobut.logger.Logger) InstrumentationRegistry(android.support.test.InstrumentationRegistry) ChatListener(com.fanap.podchat.chat.ChatListener) MessageVO(com.fanap.podchat.mainmodel.MessageVO) Collectors(java.util.stream.Collectors) Objects(java.util.Objects) AssistantHistoryVo(com.fanap.podchat.chat.assistant.model.AssistantHistoryVo) APP_ID(com.example.chat.application.chatexample.ChatActivity.APP_ID) List(java.util.List) GetBlockedAssistantsRequest(com.fanap.podchat.chat.assistant.request_model.GetBlockedAssistantsRequest) GetAssistantRequest(com.fanap.podchat.chat.assistant.request_model.GetAssistantRequest) Chat(com.fanap.podchat.chat.Chat) Context(android.content.Context) GetAssistantHistoryRequest(com.fanap.podchat.chat.assistant.request_model.GetAssistantHistoryRequest) RequestConnect(com.fanap.podchat.requestobject.RequestConnect) AssistantVo(com.fanap.podchat.chat.assistant.model.AssistantVo) BeforeClass(org.junit.BeforeClass) Mock(org.mockito.Mock) Thread(com.fanap.podchat.mainmodel.Thread) RunWith(org.junit.runner.RunWith) ChatContract(com.example.chat.application.chatexample.ChatContract) RegisterAssistantRequest(com.fanap.podchat.chat.assistant.request_model.RegisterAssistantRequest) ChatResponse(com.fanap.podchat.model.ChatResponse) ResultParticipant(com.fanap.podchat.model.ResultParticipant) ArrayList(java.util.ArrayList) R(com.fanap.podchat.example.R) RequestThreadParticipant(com.fanap.podchat.requestobject.RequestThreadParticipant) BaseApplication(com.example.chat.application.chatexample.BaseApplication) ChatActivity(com.example.chat.application.chatexample.ChatActivity) Contact(com.fanap.podchat.mainmodel.Contact) RequestThread(com.fanap.podchat.requestobject.RequestThread) Before(org.junit.Before) RequestGetHistory(com.fanap.podchat.requestobject.RequestGetHistory) CHAT_READY(com.fanap.podchat.util.ChatStateType.ChatSateConstant.CHAT_READY) ActivityTestRule(android.support.test.rule.ActivityTestRule) Test(org.junit.Test) AndroidJUnit4(android.support.test.runner.AndroidJUnit4) LargeTest(android.support.test.filters.LargeTest) Mockito(org.mockito.Mockito) Rule(org.junit.Rule) BlockUnblockAssistantRequest(com.fanap.podchat.chat.assistant.request_model.BlockUnblockAssistantRequest) Assert(org.junit.Assert) Activity(android.app.Activity) Collections(java.util.Collections) AssistantVo(com.fanap.podchat.chat.assistant.model.AssistantVo) ArrayList(java.util.ArrayList) ResultContact(com.fanap.podchat.model.ResultContact) RequestGetContact(com.fanap.podchat.requestobject.RequestGetContact) Contact(com.fanap.podchat.mainmodel.Contact) Invitee(com.fanap.podchat.mainmodel.Invitee) ChatListener(com.fanap.podchat.chat.ChatListener) List(java.util.List) ArrayList(java.util.ArrayList) GetBlockedAssistantsRequest(com.fanap.podchat.chat.assistant.request_model.GetBlockedAssistantsRequest) BlockUnblockAssistantRequest(com.fanap.podchat.chat.assistant.request_model.BlockUnblockAssistantRequest) Test(org.junit.Test) LargeTest(android.support.test.filters.LargeTest)

Example 4 with GetBlockedAssistantsRequest

use of com.fanap.podchat.chat.assistant.request_model.GetBlockedAssistantsRequest in project pod-chat-android-sdk by FanapSoft.

the class ChatActivity method getBlocksAssistant.

public void getBlocksAssistant() {
    GetBlockedAssistantsRequest request = new GetBlockedAssistantsRequest.Builder().build();
    presenter.getBlocksAssistant(request);
}
Also used : GetBlockedAssistantsRequest(com.fanap.podchat.chat.assistant.request_model.GetBlockedAssistantsRequest)

Aggregations

GetBlockedAssistantsRequest (com.fanap.podchat.chat.assistant.request_model.GetBlockedAssistantsRequest)4 LargeTest (android.support.test.filters.LargeTest)3 ChatListener (com.fanap.podchat.chat.ChatListener)3 AssistantVo (com.fanap.podchat.chat.assistant.model.AssistantVo)3 ArrayList (java.util.ArrayList)3 List (java.util.List)3 Test (org.junit.Test)3 Activity (android.app.Activity)2 Context (android.content.Context)2 Looper (android.os.Looper)2 InstrumentationRegistry (android.support.test.InstrumentationRegistry)2 ActivityTestRule (android.support.test.rule.ActivityTestRule)2 AndroidJUnit4 (android.support.test.runner.AndroidJUnit4)2 BaseApplication (com.example.chat.application.chatexample.BaseApplication)2 ChatActivity (com.example.chat.application.chatexample.ChatActivity)2 APP_ID (com.example.chat.application.chatexample.ChatActivity.APP_ID)2 ChatContract (com.example.chat.application.chatexample.ChatContract)2 ChatPresenter (com.example.chat.application.chatexample.ChatPresenter)2 App (com.fanap.podchat.chat.App)2 Chat (com.fanap.podchat.chat.Chat)2