forked from apache/cloudstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: add unit tests for ListASNumbersCmdTest
- Loading branch information
1 parent
039895d
commit d25dc5e
Showing
1 changed file
with
97 additions
and
0 deletions.
There are no files selected for viewing
97 changes: 97 additions & 0 deletions
97
api/src/test/java/org/apache/cloudstack/api/command/user/bgp/ListASNumbersCmdTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one | ||
// or more contributor license agreements. See the NOTICE file | ||
// distributed with this work for additional information | ||
// regarding copyright ownership. The ASF licenses this file | ||
// to you 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 org.apache.cloudstack.api.command.user.bgp; | ||
|
||
import com.cloud.bgp.ASNumber; | ||
import com.cloud.bgp.BGPService; | ||
|
||
import com.cloud.utils.Pair; | ||
import org.apache.cloudstack.api.ResponseGenerator; | ||
import org.apache.cloudstack.api.response.ASNumberResponse; | ||
import org.apache.cloudstack.api.response.ListResponse; | ||
import org.junit.Assert; | ||
import org.junit.Test; | ||
import org.junit.runner.RunWith; | ||
import org.mockito.Mockito; | ||
import org.mockito.junit.MockitoJUnitRunner; | ||
import org.springframework.test.util.ReflectionTestUtils; | ||
|
||
import java.util.ArrayList; | ||
import java.util.List; | ||
|
||
@RunWith(MockitoJUnitRunner.class) | ||
public class ListASNumbersCmdTest { | ||
|
||
BGPService bgpService = Mockito.spy(BGPService.class); | ||
ResponseGenerator _responseGenerator = Mockito.spy(ResponseGenerator.class); | ||
|
||
@Test | ||
public void testListASNumbersCmdTest() { | ||
Long zoneId = 1L; | ||
Long asNumberRangeId = 2L; | ||
Integer asNumber = 10; | ||
Long networkId = 11L; | ||
Long vpcId = 12L; | ||
String account = "account"; | ||
Long domainId = 13L; | ||
|
||
ListASNumbersCmd cmd = new ListASNumbersCmd(); | ||
ReflectionTestUtils.setField(cmd, "zoneId", zoneId); | ||
ReflectionTestUtils.setField(cmd, "asNumberRangeId", asNumberRangeId); | ||
ReflectionTestUtils.setField(cmd, "asNumber", asNumber); | ||
ReflectionTestUtils.setField(cmd, "networkId", networkId); | ||
ReflectionTestUtils.setField(cmd, "vpcId", vpcId); | ||
ReflectionTestUtils.setField(cmd, "account", account); | ||
ReflectionTestUtils.setField(cmd, "domainId", domainId); | ||
ReflectionTestUtils.setField(cmd, "allocated", Boolean.TRUE); | ||
|
||
ReflectionTestUtils.setField(cmd,"bgpService", bgpService); | ||
ReflectionTestUtils.setField(cmd,"_responseGenerator", _responseGenerator); | ||
|
||
Assert.assertEquals(zoneId, cmd.getZoneId()); | ||
Assert.assertEquals(asNumberRangeId, cmd.getAsNumberRangeId()); | ||
Assert.assertEquals(asNumber, cmd.getAsNumber()); | ||
Assert.assertEquals(networkId, cmd.getNetworkId()); | ||
Assert.assertEquals(vpcId, cmd.getVpcId()); | ||
Assert.assertEquals(account, cmd.getAccount()); | ||
Assert.assertEquals(domainId, cmd.getDomainId()); | ||
Assert.assertTrue(cmd.getAllocated()); | ||
|
||
List<ASNumber> asNumbers = new ArrayList<>(); | ||
ASNumber asn = Mockito.mock(ASNumber.class); | ||
asNumbers.add(asn); | ||
Pair<List<ASNumber>, Integer> pair = new Pair<>(asNumbers, 1); | ||
|
||
ASNumberResponse asNumberResponse = Mockito.mock(ASNumberResponse.class); | ||
Mockito.when(_responseGenerator.createASNumberResponse(asn)).thenReturn(asNumberResponse); | ||
|
||
Mockito.when(bgpService.listASNumbers(cmd)).thenReturn(pair); | ||
try { | ||
cmd.execute(); | ||
} catch (Exception ignored) { | ||
} | ||
|
||
Object response = cmd.getResponseObject(); | ||
Assert.assertTrue(response instanceof ListResponse); | ||
ListResponse listResponse = (ListResponse) response; | ||
Assert.assertEquals(1L, (long) listResponse.getCount()); | ||
Assert.assertTrue(listResponse.getResponses().get(0) instanceof ASNumberResponse); | ||
ASNumberResponse firstResponse = (ASNumberResponse) listResponse.getResponses().get(0); | ||
Assert.assertEquals(asNumberResponse, firstResponse); | ||
} | ||
} |