blob: bebb2f211b868e16b632e030176cb42dd496a4bb [file] [log] [blame]
/*
* Copyright (C) 2021 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.server.nearby.common.eventloop;
import static com.google.common.truth.Truth.assertThat;
import androidx.test.filters.SdkSuppress;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
import java.util.ArrayList;
import java.util.List;
public class EventLoopTest {
private static final String TAG = "EventLoopTest";
private final EventLoop mEventLoop = EventLoop.newInstance(TAG);
private final List<Integer> mExecutedRunnables = new ArrayList<>();
@Rule
public ExpectedException thrown = ExpectedException.none();
@Test
public void remove() {
mEventLoop.postRunnable(new NumberedRunnable(0));
NumberedRunnable runnableToAddAndRemove = new NumberedRunnable(1);
mEventLoop.postRunnable(runnableToAddAndRemove);
mEventLoop.removeRunnable(runnableToAddAndRemove);
mEventLoop.postRunnable(new NumberedRunnable(2));
assertThat(mExecutedRunnables).doesNotContain(1);
}
@Test
@SdkSuppress(minSdkVersion = 32, codeName = "T")
public void isPosted() {
NumberedRunnable runnable = new NumberedRunnable(0);
mEventLoop.postRunnableDelayed(runnable, 10 * 1000L);
assertThat(mEventLoop.isPosted(runnable)).isTrue();
mEventLoop.removeRunnable(runnable);
assertThat(mEventLoop.isPosted(runnable)).isFalse();
// Let a runnable execute, then verify that it's not posted.
mEventLoop.postRunnable(runnable);
assertThat(mEventLoop.isPosted(runnable)).isTrue();
}
@Test
@SdkSuppress(minSdkVersion = 32, codeName = "T")
public void postAndWaitAfterDestroy() throws InterruptedException {
mEventLoop.destroy();
mEventLoop.postAndWait(new NumberedRunnable(0));
assertThat(mExecutedRunnables).isEmpty();
}
private class NumberedRunnable extends NamedRunnable {
private final int mId;
private NumberedRunnable(int id) {
super("NumberedRunnable:" + id);
this.mId = id;
}
@Override
public void run() {
// Note: when running in robolectric, this is not actually executed on a different
// thread, it's executed in the same thread the test runs in, so this is safe.
mExecutedRunnables.add(mId);
}
}
}