aboutsummaryrefslogtreecommitdiffstats
path: root/generic-resource-api/provider/src/test/java/org/onap/sdnc/northbound/PolicyUpdateNotifyOperationRPCTest.java
blob: b73bd113c2a29cc4cda45394dbd195949361fd6d (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
package org.onap.sdnc.northbound;

import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.runners.MockitoJUnitRunner;
import org.opendaylight.yang.gen.v1.org.onap.sdnc.northbound.generic.resource.rev170824.PolicyUpdateNotifyOperationInput;
import org.opendaylight.yang.gen.v1.org.onap.sdnc.northbound.generic.resource.rev170824.PolicyUpdateNotifyOperationOutput;
import org.opendaylight.yangtools.yang.common.RpcResult;

import static org.junit.Assert.assertEquals;
import static org.onap.sdnc.northbound.util.MDSALUtil.*;

@RunWith(MockitoJUnitRunner.class)
public class PolicyUpdateNotifyOperationRPCTest extends GenericResourceApiProviderTest {

    private static final String SVC_OPERATION = "policy-update-notify-operation";

    @Before
    public void setUp() throws Exception {
        super.setUp();
        svcClient.setScvOperation(SVC_OPERATION);
    }

    @Test
    public void should_fail_when_invalid_vnf_topology() throws Exception {

        PolicyUpdateNotifyOperationInput input = build(PolicyUpdateNotifyOperationInput());

        PolicyUpdateNotifyOperationOutput output =
                exec(genericResourceApiProvider::policyUpdateNotifyOperation, input, RpcResult::getResult);

        assertEquals("404", output.getErrorCode());
        assertEquals("Invalid input, missing input data", output.getErrorMsg());
    }
}