2013-09-09 14:10:33 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013 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.inputmethod.latin.utils;
|
|
|
|
|
2018-07-05 20:45:04 +00:00
|
|
|
import static org.junit.Assert.assertEquals;
|
|
|
|
|
|
|
|
import android.support.test.filters.MediumTest;
|
|
|
|
import android.support.test.runner.AndroidJUnit4;
|
2013-09-09 14:10:33 +00:00
|
|
|
import android.util.Log;
|
|
|
|
|
2018-07-05 20:45:04 +00:00
|
|
|
import org.junit.Test;
|
|
|
|
import org.junit.runner.RunWith;
|
|
|
|
|
2013-09-09 14:10:33 +00:00
|
|
|
@MediumTest
|
2018-07-05 20:45:04 +00:00
|
|
|
@RunWith(AndroidJUnit4.class)
|
|
|
|
public class AsyncResultHolderTests {
|
2014-10-20 05:48:56 +00:00
|
|
|
static final String TAG = AsyncResultHolderTests.class.getSimpleName();
|
2013-09-09 14:10:33 +00:00
|
|
|
|
|
|
|
private static final int TIMEOUT_IN_MILLISECONDS = 500;
|
|
|
|
private static final int MARGIN_IN_MILLISECONDS = 250;
|
|
|
|
private static final int DEFAULT_VALUE = 2;
|
|
|
|
private static final int SET_VALUE = 1;
|
|
|
|
|
2014-10-20 05:48:56 +00:00
|
|
|
private static <T> void setAfterGivenTime(final AsyncResultHolder<T> holder, final T value,
|
2013-09-09 14:10:33 +00:00
|
|
|
final long time) {
|
|
|
|
new Thread(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
try {
|
|
|
|
Thread.sleep(time);
|
|
|
|
} catch (InterruptedException e) {
|
|
|
|
Log.d(TAG, "Exception while sleeping", e);
|
|
|
|
}
|
|
|
|
holder.set(value);
|
|
|
|
}
|
|
|
|
}).start();
|
|
|
|
}
|
|
|
|
|
2018-07-05 20:45:04 +00:00
|
|
|
@Test
|
2013-09-09 14:10:33 +00:00
|
|
|
public void testGetWithoutSet() {
|
2015-04-02 21:47:36 +00:00
|
|
|
final AsyncResultHolder<Integer> holder = new AsyncResultHolder<>("Test");
|
2013-09-09 14:10:33 +00:00
|
|
|
final int resultValue = holder.get(DEFAULT_VALUE, TIMEOUT_IN_MILLISECONDS);
|
|
|
|
assertEquals(DEFAULT_VALUE, resultValue);
|
|
|
|
}
|
|
|
|
|
2018-07-05 20:45:04 +00:00
|
|
|
@Test
|
2013-09-09 14:10:33 +00:00
|
|
|
public void testGetBeforeSet() {
|
2015-04-02 21:47:36 +00:00
|
|
|
final AsyncResultHolder<Integer> holder = new AsyncResultHolder<>("Test");
|
2013-09-09 14:10:33 +00:00
|
|
|
setAfterGivenTime(holder, SET_VALUE, TIMEOUT_IN_MILLISECONDS + MARGIN_IN_MILLISECONDS);
|
|
|
|
final int resultValue = holder.get(DEFAULT_VALUE, TIMEOUT_IN_MILLISECONDS);
|
|
|
|
assertEquals(DEFAULT_VALUE, resultValue);
|
|
|
|
}
|
|
|
|
|
2018-07-05 20:45:04 +00:00
|
|
|
@Test
|
2013-09-09 14:10:33 +00:00
|
|
|
public void testGetAfterSet() {
|
2015-04-02 21:47:36 +00:00
|
|
|
final AsyncResultHolder<Integer> holder = new AsyncResultHolder<>("Test");
|
2013-09-09 14:10:33 +00:00
|
|
|
holder.set(SET_VALUE);
|
|
|
|
final int resultValue = holder.get(DEFAULT_VALUE, TIMEOUT_IN_MILLISECONDS);
|
|
|
|
assertEquals(SET_VALUE, resultValue);
|
|
|
|
}
|
|
|
|
|
2018-07-05 20:45:04 +00:00
|
|
|
@Test
|
2013-09-09 14:10:33 +00:00
|
|
|
public void testGetBeforeTimeout() {
|
2015-04-02 21:47:36 +00:00
|
|
|
final AsyncResultHolder<Integer> holder = new AsyncResultHolder<>("Test");
|
2013-09-09 14:10:33 +00:00
|
|
|
setAfterGivenTime(holder, SET_VALUE, TIMEOUT_IN_MILLISECONDS - MARGIN_IN_MILLISECONDS);
|
|
|
|
final int resultValue = holder.get(DEFAULT_VALUE, TIMEOUT_IN_MILLISECONDS);
|
|
|
|
assertEquals(SET_VALUE, resultValue);
|
|
|
|
}
|
|
|
|
}
|