CTS: Test RadioChainInfo

Bug: 150978866
Test: atest android.net.wifi.nl80211.cts.RadioChainInfoTest
Change-Id: Ia7b86a4b511bd77abcc629fca78f4b960946cfec
This commit is contained in:
David Su
2020-03-13 17:41:38 -07:00
parent 0d56ba3341
commit af95a3aa1c

View File

@@ -0,0 +1,83 @@
/*
* Copyright (C) 2020 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.net.wifi.nl80211.cts;
import static com.google.common.truth.Truth.assertThat;
import static org.junit.Assume.assumeTrue;
import android.content.Context;
import android.net.wifi.cts.WifiFeature;
import android.net.wifi.nl80211.RadioChainInfo;
import android.os.Parcel;
import androidx.test.filters.SmallTest;
import androidx.test.platform.app.InstrumentationRegistry;
import androidx.test.runner.AndroidJUnit4;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
/** CTS tests for {@link RadioChainInfo}. */
@SmallTest
@RunWith(AndroidJUnit4.class)
public class RadioChainInfoTest {
private static final int TEST_CHAIN_ID = 1;
private static final int TEST_CHAIN_ID2 = 2;
private static final int TEST_LEVEL_DBM = -50;
private static final int TEST_LEVEL_DBM2 = -80;
@Before
public void setUp() {
Context context = InstrumentationRegistry.getInstrumentation().getContext();
// skip tests if Wifi is not supported
assumeTrue(WifiFeature.isWifiSupported(context));
}
@Test
public void testGetters() {
RadioChainInfo info = new RadioChainInfo(TEST_CHAIN_ID, TEST_LEVEL_DBM);
assertThat(info.getChainId()).isEqualTo(TEST_CHAIN_ID);
assertThat(info.getLevelDbm()).isEqualTo(TEST_LEVEL_DBM);
}
@Test
public void canSerializeAndDeserialize() {
RadioChainInfo info = new RadioChainInfo(TEST_CHAIN_ID, TEST_LEVEL_DBM);
Parcel parcel = Parcel.obtain();
info.writeToParcel(parcel, 0);
// Rewind the pointer to the head of the parcel.
parcel.setDataPosition(0);
RadioChainInfo infoDeserialized = RadioChainInfo.CREATOR.createFromParcel(parcel);
assertThat(infoDeserialized.getChainId()).isEqualTo(TEST_CHAIN_ID);
assertThat(infoDeserialized.getLevelDbm()).isEqualTo(TEST_LEVEL_DBM);
assertThat(infoDeserialized).isEqualTo(info);
assertThat(infoDeserialized.hashCode()).isEqualTo(info.hashCode());
}
@Test
public void testEquals() {
RadioChainInfo info = new RadioChainInfo(TEST_CHAIN_ID, TEST_LEVEL_DBM);
RadioChainInfo info2 = new RadioChainInfo(TEST_CHAIN_ID2, TEST_LEVEL_DBM2);
assertThat(info2).isNotEqualTo(info);
}
}