blob: 9a3b34e45fa933458ba7da1216b8c0d36cca7a7c [file] [log] [blame]
Jian Li9b199162019-02-10 18:00:35 +09001/*
2 * Copyright 2019-present Open Networking Foundation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.onosproject.k8snetworking.util;
17
18import org.junit.Test;
19import org.onlab.packet.IpAddress;
20
21import java.util.Set;
22
23import static junit.framework.TestCase.assertEquals;
24import static org.onosproject.k8snetworking.util.K8sNetworkingUtil.getSubnetIps;
25
26/**
27 * Unit tests for kubernetes networking utils.
28 */
29public final class K8sNetworkUtilTest {
30
31 /**
32 * Tests the getSubnetIps method.
33 */
34 @Test
35 public void testGetSubnetIps() {
36 String bClassCidr = "10.10.0.0/16";
37 Set<IpAddress> bClassIps = getSubnetIps(bClassCidr);
Jian Li7970b712019-05-03 20:58:21 +090038 assertEquals(((Double) Math.pow(2, 16)).intValue() - 4, bClassIps.size());
Jian Li9b199162019-02-10 18:00:35 +090039
40 String cClassCidr = "10.10.10.0/24";
41 Set<IpAddress> cClassIps = getSubnetIps(cClassCidr);
Jian Li7970b712019-05-03 20:58:21 +090042 assertEquals(((Double) Math.pow(2, 8)).intValue() - 4, cClassIps.size());
Jian Li9b199162019-02-10 18:00:35 +090043
44 String dClassCidr = "10.10.10.10/32";
45 Set<IpAddress> dClassIps = getSubnetIps(dClassCidr);
Jian Li7970b712019-05-03 20:58:21 +090046 assertEquals(0, dClassIps.size());
Jian Li9b199162019-02-10 18:00:35 +090047 }
48}