aboutsummaryrefslogtreecommitdiff
path: root/tests/iketests/src
diff options
context:
space:
mode:
authorYan Yan <evitayan@google.com>2018-11-26 22:47:42 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2018-11-26 22:47:42 +0000
commit6ee9837e14cf1ba51ac94a8c83e962ab435300b9 (patch)
treeaa0f372d5087937567c5fbe09ce44f3308ae6058 /tests/iketests/src
parentc41fcd8b60adde12a215f30666aa159d1d6c2043 (diff)
parentd2eda7d20a0e6127d5c176e1ed48b74d6b015f0b (diff)
downloadike-6ee9837e14cf1ba51ac94a8c83e962ab435300b9.tar.gz
Merge "Create Identification Payload"
Diffstat (limited to 'tests/iketests/src')
-rw-r--r--tests/iketests/src/java/com/android/ike/ikev2/message/IkeIdPayloadTest.java32
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/iketests/src/java/com/android/ike/ikev2/message/IkeIdPayloadTest.java b/tests/iketests/src/java/com/android/ike/ikev2/message/IkeIdPayloadTest.java
new file mode 100644
index 00000000..a4b3c603
--- /dev/null
+++ b/tests/iketests/src/java/com/android/ike/ikev2/message/IkeIdPayloadTest.java
@@ -0,0 +1,32 @@
+/*
+ * Copyright (C) 2018 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.ike.ikev2.message;
+
+import static org.junit.Assert.assertEquals;
+
+import org.junit.Test;
+
+public final class IkeIdPayloadTest {
+ private static final String ID_PAYLOAD_INITIATOR_FQDN_HEX_STRING = "020000006576697461";
+
+ @Test
+ public void testDecodeIdPayload() throws Exception {
+ byte[] inputPacket = TestUtils.hexStringToByteArray(ID_PAYLOAD_INITIATOR_FQDN_HEX_STRING);
+ IkeIdPayload payload = new IkeIdPayload(false, inputPacket, true);
+ assertEquals(IkePayload.PAYLOAD_TYPE_ID_INITIATOR, payload.payloadType);
+ }
+}