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 API responses
- Loading branch information
1 parent
780d690
commit e06acab
Showing
11 changed files
with
571 additions
and
3 deletions.
There are no files selected for viewing
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
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
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
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
51 changes: 51 additions & 0 deletions
51
api/src/test/java/org/apache/cloudstack/api/response/ASNRangeResponseTest.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,51 @@ | ||
// 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.response; | ||
|
||
import org.junit.Assert; | ||
import org.junit.Test; | ||
import org.junit.runner.RunWith; | ||
import org.mockito.junit.MockitoJUnitRunner; | ||
|
||
import java.util.Date; | ||
|
||
@RunWith(MockitoJUnitRunner.class) | ||
public final class ASNRangeResponseTest { | ||
|
||
private static String uuid = "uuid"; | ||
private static String zoneId = "zoneid"; | ||
private static long startASNumber = 10; | ||
private static long endASNumber = 20; | ||
private static Date created = new Date(); | ||
|
||
@Test | ||
public void testASNRangeResponse() { | ||
final ASNRangeResponse response = new ASNRangeResponse(); | ||
|
||
response.setId(uuid); | ||
response.setZoneId(zoneId); | ||
response.setStartASNumber(startASNumber); | ||
response.setEndASNumber(endASNumber); | ||
response.setCreated(created); | ||
|
||
Assert.assertEquals(uuid, response.getId()); | ||
Assert.assertEquals(zoneId, response.getZoneId()); | ||
Assert.assertEquals(startASNumber, (long) response.getStartASNumber()); | ||
Assert.assertEquals(endASNumber, (long) response.getEndASNumber()); | ||
Assert.assertEquals(created, response.getCreated()); | ||
} | ||
} |
92 changes: 92 additions & 0 deletions
92
api/src/test/java/org/apache/cloudstack/api/response/ASNumberResponseTest.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,92 @@ | ||
// 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.response; | ||
|
||
import org.junit.Assert; | ||
import org.junit.Test; | ||
import org.junit.runner.RunWith; | ||
import org.mockito.junit.MockitoJUnitRunner; | ||
|
||
import java.util.Date; | ||
|
||
@RunWith(MockitoJUnitRunner.class) | ||
public final class ASNumberResponseTest { | ||
|
||
private static String uuid = "uuid"; | ||
private static String accountId = "account-id"; | ||
private static String accountName = "account-name"; | ||
private static String domainId = "domain-uuid"; | ||
private static String domainName = "domain-name"; | ||
private static Long asNumber = 15000L; | ||
private static String asNumberRangeId = "as-number-range-uuid"; | ||
private static String asNumberRange = "10000-20000"; | ||
private static String zoneId = "zone-id"; | ||
private static String zoneName = "zone-name"; | ||
private static Date allocated = new Date(); | ||
private static String allocationState = "allocated"; | ||
|
||
private static String associatedNetworkId = "network-id"; | ||
|
||
private static String associatedNetworkName = "network-name"; | ||
|
||
private static String vpcId = "vpc-uuid"; | ||
private static String vpcName = "vpc-name"; | ||
private static Date created = new Date(); | ||
|
||
|
||
|
||
@Test | ||
public void testASNumberResponse() { | ||
final ASNumberResponse response = new ASNumberResponse(); | ||
|
||
response.setId(uuid); | ||
response.setAccountId(accountId); | ||
response.setAccountName(accountName); | ||
response.setDomainId(domainId); | ||
response.setDomainName(domainName); | ||
response.setAsNumber(asNumber); | ||
response.setAsNumberRangeId(asNumberRangeId); | ||
response.setAsNumberRange(asNumberRange); | ||
response.setZoneId(zoneId); | ||
response.setZoneName(zoneName); | ||
response.setAllocated(allocated); | ||
response.setAllocationState(allocationState); | ||
response.setAssociatedNetworkId(associatedNetworkId); | ||
response.setAssociatedNetworkName(associatedNetworkName); | ||
response.setVpcId(vpcId); | ||
response.setVpcName(vpcName); | ||
response.setCreated(created); | ||
|
||
Assert.assertEquals(uuid, response.getId()); | ||
Assert.assertEquals(accountId, response.getAccountId()); | ||
Assert.assertEquals(accountName, response.getAccountName()); | ||
Assert.assertEquals(domainId, response.getDomainId()); | ||
Assert.assertEquals(domainName, response.getDomainName()); | ||
Assert.assertEquals(asNumber, response.getAsNumber()); | ||
Assert.assertEquals(asNumberRangeId, response.getAsNumberRangeId()); | ||
Assert.assertEquals(asNumberRange, response.getAsNumberRange()); | ||
Assert.assertEquals(zoneId, response.getZoneId()); | ||
Assert.assertEquals(zoneName, response.getZoneName()); | ||
Assert.assertEquals(allocated, response.getAllocated()); | ||
Assert.assertEquals(allocationState, response.getAllocationState()); | ||
Assert.assertEquals(associatedNetworkId, response.getAssociatedNetworkId()); | ||
Assert.assertEquals(associatedNetworkName, response.getAssociatedNetworkName()); | ||
Assert.assertEquals(vpcId, response.getVpcId()); | ||
Assert.assertEquals(vpcName, response.getVpcName()); | ||
Assert.assertEquals(created, response.getCreated()); | ||
} | ||
} |
Oops, something went wrong.