Merge "Add test for IkeIdentification" am: 609d48cc11

Change-Id: I0e3921aee9e5f66375d15e89523647e52f4caf90
This commit is contained in:
Yan Yan
2020-04-25 02:08:41 +00:00
committed by Automerger Merge Worker
2 changed files with 78 additions and 0 deletions

View File

@@ -0,0 +1,75 @@
/*
* 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.ipsec.ike.cts;
import static org.junit.Assert.assertArrayEquals;
import static org.junit.Assert.assertEquals;
import android.net.ipsec.ike.IkeDerAsn1DnIdentification;
import android.net.ipsec.ike.IkeFqdnIdentification;
import android.net.ipsec.ike.IkeIpv4AddrIdentification;
import android.net.ipsec.ike.IkeIpv6AddrIdentification;
import android.net.ipsec.ike.IkeKeyIdIdentification;
import android.net.ipsec.ike.IkeRfc822AddrIdentification;
import androidx.test.ext.junit.runners.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
import javax.security.auth.x500.X500Principal;
@RunWith(AndroidJUnit4.class)
public final class IkeIdentificationTest extends IkeTestBase {
@Test
public void testIkeDerAsn1DnIdentification() throws Exception {
X500Principal asn1Dn = new X500Principal(LOCAL_ASN1_DN_STRING);
IkeDerAsn1DnIdentification ikeId = new IkeDerAsn1DnIdentification(asn1Dn);
assertEquals(asn1Dn, ikeId.derAsn1Dn);
}
@Test
public void testIkeFqdnIdentification() throws Exception {
IkeFqdnIdentification ikeId = new IkeFqdnIdentification(LOCAL_HOSTNAME);
assertEquals(LOCAL_HOSTNAME, ikeId.fqdn);
}
@Test
public void testIkeIpv4AddrIdentification() throws Exception {
IkeIpv4AddrIdentification ikeId = new IkeIpv4AddrIdentification(IPV4_ADDRESS_LOCAL);
assertEquals(IPV4_ADDRESS_LOCAL, ikeId.ipv4Address);
}
@Test
public void testIkeIpv6AddrIdentification() throws Exception {
IkeIpv6AddrIdentification ikeId = new IkeIpv6AddrIdentification(IPV6_ADDRESS_LOCAL);
assertEquals(IPV6_ADDRESS_LOCAL, ikeId.ipv6Address);
}
@Test
public void testIkeKeyIdIdentification() throws Exception {
IkeKeyIdIdentification ikeId = new IkeKeyIdIdentification(LOCAL_KEY_ID);
assertArrayEquals(LOCAL_KEY_ID, ikeId.keyId);
}
@Test
public void testIkeRfc822AddrIdentification() throws Exception {
IkeRfc822AddrIdentification ikeId = new IkeRfc822AddrIdentification(LOCAL_RFC822_NAME);
assertEquals(LOCAL_RFC822_NAME, ikeId.rfc822Name);
}
}

View File

@@ -45,6 +45,9 @@ abstract class IkeTestBase {
static final String LOCAL_HOSTNAME = "client.test.ike.android.net";
static final String REMOTE_HOSTNAME = "server.test.ike.android.net";
static final String LOCAL_ASN1_DN_STRING = "CN=client.test.ike.android.net, O=Android, C=US";
static final String LOCAL_RFC822_NAME = "client.test.ike@example.com";
static final byte[] LOCAL_KEY_ID = "Local Key ID".getBytes();
static final Inet4Address IPV4_ADDRESS_LOCAL =
(Inet4Address) (InetAddresses.parseNumericAddress("192.0.2.100"));