blob: 7ce1e99afdc0ec1bc9834d9ff5a48687b7af849a [file] [log] [blame]
/*
* Copyright (C) 2009 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 android.view.inputmethod.cts;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import android.os.Parcel;
import android.view.inputmethod.CompletionInfo;
import androidx.test.filters.SmallTest;
import androidx.test.runner.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
@SmallTest
@RunWith(AndroidJUnit4.class)
public class CompletionInfoTest {
private static final int ID = 1;
private static final int POSITION = 1;
private static final String TEXT = "CompletionInfoText";
private static final String LABEL = "CompletionInfoLabel";
@Test
public void testCompletionInfo() {
new CompletionInfo(ID, POSITION, TEXT);
CompletionInfo info = new CompletionInfo(ID, POSITION, TEXT, LABEL);
assertCompletionInfo(info);
assertEquals(0, info.describeContents());
assertNotNull(info.toString());
Parcel p = Parcel.obtain();
info.writeToParcel(p, 0);
p.setDataPosition(0);
CompletionInfo targetInfo = CompletionInfo.CREATOR.createFromParcel(p);
p.recycle();
assertCompletionInfo(targetInfo);
}
private void assertCompletionInfo(CompletionInfo info) {
assertEquals(ID, info.getId());
assertEquals(POSITION, info.getPosition());
assertEquals(TEXT, info.getText().toString());
assertEquals(LABEL, info.getLabel().toString());
}
}