aboutsummaryrefslogtreecommitdiff
path: root/tests/iketests/src/java/com/android/internal/net/eap/statemachine/CreatedStateTest.java
blob: a452fa6ff72c6ff3aaec0b6d9e973069bb7cb592 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/*
 * Copyright (C) 2019 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.internal.net.eap.statemachine;

import static com.android.internal.net.eap.message.EapTestMessageDefinitions.EAP_REQUEST_IDENTITY_PACKET;
import static com.android.internal.net.eap.message.EapTestMessageDefinitions.EAP_REQUEST_NOTIFICATION_PACKET;
import static com.android.internal.net.eap.message.EapTestMessageDefinitions.EAP_REQUEST_SIM_START_PACKET;
import static com.android.internal.net.eap.message.EapTestMessageDefinitions.EAP_RESPONSE_NOTIFICATION_PACKET;

import static org.junit.Assert.assertArrayEquals;
import static org.junit.Assert.assertTrue;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.ArgumentMatchers.eq;
import static org.mockito.Mockito.never;
import static org.mockito.Mockito.spy;
import static org.mockito.Mockito.verify;

import com.android.internal.net.eap.EapResult;
import com.android.internal.net.eap.EapResult.EapResponse;
import com.android.internal.net.eap.statemachine.EapStateMachine.IdentityState;
import com.android.internal.net.eap.statemachine.EapStateMachine.MethodState;

import org.junit.Before;
import org.junit.Test;

public class CreatedStateTest extends EapStateTest {
    private EapStateMachine mEapStateMachineSpy;

    @Before
    @Override
    public void setUp() {
        super.setUp();

        mEapStateMachineSpy = spy(mEapStateMachine);
        mEapState = mEapStateMachineSpy.new CreatedState();
    }

    @Test
    public void testProcessIdentityRequest() {
        mEapState.process(EAP_REQUEST_IDENTITY_PACKET);

        verify(mEapStateMachineSpy).transitionAndProcess(
                any(IdentityState.class), eq(EAP_REQUEST_IDENTITY_PACKET));
    }

    @Test
    public void testProcessNotificationRequest() {
        EapResult eapResult = mEapState.process(EAP_REQUEST_NOTIFICATION_PACKET);

        // state shouldn't change after Notification request
        assertTrue(eapResult instanceof EapResponse);
        EapResponse eapResponse = (EapResponse) eapResult;
        assertArrayEquals(EAP_RESPONSE_NOTIFICATION_PACKET, eapResponse.packet);
        verify(mEapStateMachineSpy, never()).transitionAndProcess(any(), any());
    }

    @Test
    public void testProcessSimStart() {
        mEapState.process(EAP_REQUEST_SIM_START_PACKET);

        // EapStateMachine should change to MethodState for method-type packet
        verify(mEapStateMachineSpy).transitionAndProcess(
                any(MethodState.class), eq(EAP_REQUEST_SIM_START_PACKET));
    }
}