Search in sources :

Example 61 with ChatListener

use of com.fanap.podchat.chat.ChatListener 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 62 with ChatListener

use of com.fanap.podchat.chat.ChatListener in project pod-chat-android-sdk by FanapSoft.

the class AssistantCacheTest method populateParticipantList.

@Test
public void populateParticipantList() {
    populateThreadsListFromServerOnly();
    assert threads.size() > 0;
    Thread thread = getValidGroupThread();
    chatListeners = new ChatListener() {

        @Override
        public void onGetThreadParticipant(String content, ChatResponse<ResultParticipant> response) {
            System.out.println("Received Participant, Cache: " + response.isCache() + " Content: " + content);
            if (response.getResult().getParticipants().size() > 1) {
                threadParticipant.addAll(response.getResult().getParticipants());
                chat.removeListener(chatListeners);
                resumeProcess();
            } else {
                threads.remove(thread);
                Thread t2 = getValidGroupThread();
                print("try again changing thread...");
                RequestThreadParticipant request = new RequestThreadParticipant.Builder().threadId(t2.getId()).build();
                chat.getThreadParticipants(request, null);
            }
        }
    };
    chat.addListener(chatListeners);
    RequestThreadParticipant request = new RequestThreadParticipant.Builder().threadId(thread.getId()).build();
    chat.getThreadParticipants(request, null);
    pauseProcess();
}
Also used : ResultParticipant(com.fanap.podchat.model.ResultParticipant) ChatListener(com.fanap.podchat.chat.ChatListener) Thread(com.fanap.podchat.mainmodel.Thread) RequestThread(com.fanap.podchat.requestobject.RequestThread) RequestThreadParticipant(com.fanap.podchat.requestobject.RequestThreadParticipant) Test(org.junit.Test) LargeTest(android.support.test.filters.LargeTest)

Example 63 with ChatListener

use of com.fanap.podchat.chat.ChatListener 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 64 with ChatListener

use of com.fanap.podchat.chat.ChatListener in project pod-chat-android-sdk by FanapSoft.

the class AssistantCacheTest method populateMessagesFromServerOrCache.

public void populateMessagesFromServerOrCache() {
    populateThreadsListFromServerOnly();
    assert threads.size() > 0;
    Thread thread = threads.get(0);
    chatListeners = new ChatListener() {

        @Override
        public void onGetHistory(String content, ChatResponse<ResultHistory> history) {
            System.out.println("Received Message List, Cache: " + history.isCache() + " Content: " + content);
            threadMessagesList.addAll(history.getResult().getHistory());
            chat.removeListener(chatListeners);
            resumeProcess();
        }
    };
    chat.addListener(chatListeners);
    RequestGetHistory requestGetHistory = new RequestGetHistory.Builder(thread.getId()).build();
    chat.getHistory(requestGetHistory, null);
    pauseProcess();
}
Also used : RequestGetHistory(com.fanap.podchat.requestobject.RequestGetHistory) ChatListener(com.fanap.podchat.chat.ChatListener) ResultHistory(com.fanap.podchat.model.ResultHistory) Thread(com.fanap.podchat.mainmodel.Thread) RequestThread(com.fanap.podchat.requestobject.RequestThread)

Example 65 with ChatListener

use of com.fanap.podchat.chat.ChatListener in project pod-chat-android-sdk by FanapSoft.

the class AssistantCacheTest method populateThreadsListFromCacheOnly.

// requests for list of threads from cache
public void populateThreadsListFromCacheOnly() {
    chatListeners = new ChatListener() {

        @Override
        public void onGetThread(String content, ChatResponse<ResultThreads> thread) {
            if (thread.isCache()) {
                print("Received List: " + content);
                threads.addAll(thread.getResult().getThreads());
                chat.removeListener(chatListeners);
                resumeProcess();
            }
        }
    };
    chat.addListener(chatListeners);
    RequestThread requestThread = new RequestThread.Builder().count(25).build();
    presenter.getThreads(requestThread, null);
    pauseProcess();
    print("Received List: " + threads.size());
}
Also used : ResultThreads(com.fanap.podchat.model.ResultThreads) ChatListener(com.fanap.podchat.chat.ChatListener) RequestThread(com.fanap.podchat.requestobject.RequestThread)

Aggregations

ChatListener (com.fanap.podchat.chat.ChatListener)134 Test (org.junit.Test)87 RequestThread (com.fanap.podchat.requestobject.RequestThread)80 LargeTest (android.support.test.filters.LargeTest)63 Thread (com.fanap.podchat.mainmodel.Thread)61 ResultHistory (com.fanap.podchat.model.ResultHistory)44 ChatResponse (com.fanap.podchat.model.ChatResponse)40 ResultThreads (com.fanap.podchat.model.ResultThreads)39 RequestMessage (com.fanap.podchat.requestobject.RequestMessage)38 ArrayList (java.util.ArrayList)38 Date (java.util.Date)32 RequestConnect (com.fanap.podchat.requestobject.RequestConnect)31 RequestGetHistory (com.fanap.podchat.requestobject.RequestGetHistory)31 Before (org.junit.Before)31 ChatPresenter (com.example.chat.application.chatexample.ChatPresenter)29 MessageVO (com.fanap.podchat.mainmodel.MessageVO)23 FlakyTest (android.support.test.filters.FlakyTest)21 MediumTest (android.support.test.filters.MediumTest)21 ResultNewMessage (com.fanap.podchat.model.ResultNewMessage)21 Activity (android.app.Activity)18