blob: 2416e1d8438fe6dfbb8508263cd86fd691efbb2b [file] [log] [blame]
/*
* Copyright (C) 2017 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the
* License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package com.android.systemui.utils;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotEquals;
import static org.mockito.Matchers.any;
import static org.mockito.Matchers.eq;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.never;
import static org.mockito.Mockito.times;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;
import android.os.Handler;
import android.os.Looper;
import android.os.Message;
import com.android.systemui.SysUIRunner;
import com.android.systemui.SysuiTestCase;
import com.android.systemui.utils.TestableLooper.MessageHandler;
import com.android.systemui.utils.TestableLooper.RunWithLooper;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
@RunWith(SysUIRunner.class)
@RunWithLooper
public class TestableLooperTest extends SysuiTestCase {
private TestableLooper mTestableLooper;
@Before
public void setup() throws Exception {
mTestableLooper = TestableLooper.get(this);
}
@After
public void tearDown() throws Exception {
mTestableLooper.destroy();
}
@Test
public void testMessageExecuted() throws Exception {
Handler h = new Handler();
Runnable r = mock(Runnable.class);
h.post(r);
verify(r, never()).run();
mTestableLooper.processAllMessages();
verify(r).run();
}
@Test
public void testMessageCallback() throws Exception {
Handler h = new Handler();
Message m = h.obtainMessage(3);
Runnable r = mock(Runnable.class);
MessageHandler messageHandler = mock(MessageHandler.class);
when(messageHandler.onMessageHandled(any())).thenReturn(false);
mTestableLooper.setMessageHandler(messageHandler);
m.sendToTarget();
h.post(r);
mTestableLooper.processAllMessages();
verify(messageHandler).onMessageHandled(eq(m));
// This should never be run becaus the mock returns false on the first message, and
// the second will get skipped.
verify(r, never()).run();
}
@Test
public void testProcessNumberOfMessages() throws Exception {
Handler h = new Handler();
Runnable r = mock(Runnable.class);
h.post(r);
h.post(r);
h.post(r);
mTestableLooper.processMessages(2);
verify(r, times(2)).run();
}
@Test
public void testProcessAllMessages() throws Exception {
Handler h = new Handler();
Runnable r = mock(Runnable.class);
Runnable poster = () -> h.post(r);
h.post(poster);
mTestableLooper.processAllMessages();
verify(r).run();
}
@Test
public void test3Chain() throws Exception {
Handler h = new Handler();
Runnable r = mock(Runnable.class);
Runnable poster = () -> h.post(r);
Runnable poster2 = () -> h.post(poster);
h.post(poster2);
mTestableLooper.processAllMessages();
verify(r).run();
}
@Test
public void testProcessAllMessages_2Messages() throws Exception {
Handler h = new Handler();
Runnable r = mock(Runnable.class);
Runnable r2 = mock(Runnable.class);
h.post(r);
h.post(r2);
mTestableLooper.processAllMessages();
verify(r).run();
verify(r2).run();
}
@Test
public void testMainLooper() throws Exception {
assertNotEquals(Looper.myLooper(), Looper.getMainLooper());
Looper originalMain = Looper.getMainLooper();
mTestableLooper.setAsMainLooper();
assertEquals(Looper.myLooper(), Looper.getMainLooper());
Runnable r = mock(Runnable.class);
new Handler(Looper.getMainLooper()).post(r);
mTestableLooper.processAllMessages();
verify(r).run();
mTestableLooper.destroy();
assertEquals(originalMain, Looper.getMainLooper());
}
@Test
public void testNotMyLooper() throws Exception {
TestableLooper looper = new TestableLooper(false);
assertEquals(Looper.myLooper(), mTestableLooper.getLooper());
assertNotEquals(Looper.myLooper(), looper.getLooper());
Runnable r = mock(Runnable.class);
Runnable r2 = mock(Runnable.class);
new Handler().post(r);
new Handler(looper.getLooper()).post(r2);
looper.processAllMessages();
verify(r2).run();
verify(r, never()).run();
mTestableLooper.processAllMessages();
verify(r).run();
}
@Test
public void testNonMainLooperAnnotation() {
assertNotEquals(Looper.myLooper(), Looper.getMainLooper());
}
@Test
@RunWithLooper(setAsMainLooper = true)
public void testMainLooperAnnotation() {
assertEquals(Looper.myLooper(), Looper.getMainLooper());
}
}