123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- // Copyright 2015 flannel authors
- //
- // 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 subnet
- import (
- "testing"
- )
- func TestConfigDefaults(t *testing.T) {
- s := `{ "network": "10.3.0.0/16" }`
- cfg, err := ParseConfig(s)
- if err != nil {
- t.Fatalf("ParseConfig failed: %s", err)
- }
- expectedNet := "10.3.0.0/16"
- if cfg.Network.String() != expectedNet {
- t.Errorf("Network mismatch: expected %s, got %s", expectedNet, cfg.Network)
- }
- if cfg.SubnetMin.String() != "10.3.1.0" {
- t.Errorf("SubnetMin mismatch, expected 10.3.1.0, got %s", cfg.SubnetMin)
- }
- if cfg.SubnetMax.String() != "10.3.255.0" {
- t.Errorf("SubnetMax mismatch, expected 10.3.255.0, got %s", cfg.SubnetMax)
- }
- if cfg.SubnetLen != 24 {
- t.Errorf("SubnetLen mismatch: expected 24, got %d", cfg.SubnetLen)
- }
- }
- func TestIPv6ConfigDefaults(t *testing.T) {
- s := `{ "enableIPv6": true, "ipv6Network": "fc00::/48" }`
- cfg, err := ParseConfig(s)
- if err != nil {
- t.Fatalf("ParseConfig failed: %s", err)
- }
- expectedNet := "fc00::/48"
- if cfg.IPv6Network.String() != expectedNet {
- t.Errorf("IPv6Network mismatch: expected %s, got %s", expectedNet, cfg.IPv6Network)
- }
- if cfg.IPv6SubnetMin.String() != "fc00:0:0:1::" {
- t.Errorf("IPv6SubnetMin mismatch, expected fc00:0:0:1::, got %s", cfg.IPv6SubnetMin)
- }
- if cfg.IPv6SubnetMax.String() != "fc00:0:0:ffff::" {
- t.Errorf("IPv6SubnetMax mismatch, expected fc00:0:0:ffff::, got %s", cfg.IPv6SubnetMax)
- }
- if cfg.IPv6SubnetLen != 64 {
- t.Errorf("IPv6SubnetLen mismatch: expected 64, got %d", cfg.IPv6SubnetLen)
- }
- }
- func TestConfigOverrides(t *testing.T) {
- s := `{ "Network": "10.3.0.0/16", "SubnetMin": "10.3.5.0", "SubnetMax": "10.3.8.0", "SubnetLen": 28 }`
- cfg, err := ParseConfig(s)
- if err != nil {
- t.Fatalf("ParseConfig failed: %s", err)
- }
- expectedNet := "10.3.0.0/16"
- if cfg.Network.String() != expectedNet {
- t.Errorf("Network mismatch: expected %s, got %s", expectedNet, cfg.Network)
- }
- if cfg.SubnetMin.String() != "10.3.5.0" {
- t.Errorf("SubnetMin mismatch: expected 10.3.5.0, got %s", cfg.SubnetMin)
- }
- if cfg.SubnetMax.String() != "10.3.8.0" {
- t.Errorf("SubnetMax mismatch: expected 10.3.8.0, got %s", cfg.SubnetMax)
- }
- if cfg.SubnetLen != 28 {
- t.Errorf("SubnetLen mismatch: expected 28, got %d", cfg.SubnetLen)
- }
- }
- func TestIPv6ConfigOverrides(t *testing.T) {
- s := `{ "EnableIPv6": true, "IPv6Network": "fc00::/48", "IPv6SubnetMin": "fc00:0:0:1::", "IPv6SubnetMax": "fc00:0:0:f::", "IPv6SubnetLen": 124 }`
- cfg, err := ParseConfig(s)
- if err != nil {
- t.Fatalf("ParseConfig failed: %s", err)
- }
- expectedNet := "fc00::/48"
- if cfg.IPv6Network.String() != expectedNet {
- t.Errorf("IPv6Network mismatch: expected %s, got %s", expectedNet, cfg.IPv6Network)
- }
- if cfg.IPv6SubnetMin.String() != "fc00:0:0:1::" {
- t.Errorf("IPv6SubnetMin mismatch: expected fc00:0:0:1::, got %s", cfg.IPv6SubnetMin)
- }
- if cfg.IPv6SubnetMax.String() != "fc00:0:0:f::" {
- t.Errorf("IPv6SubnetMax mismatch: expected fc00:0:0:f::, got %s", cfg.IPv6SubnetMax)
- }
- if cfg.IPv6SubnetLen != 124 {
- t.Errorf("IPv6SubnetLen mismatch: expected 124, got %d", cfg.IPv6SubnetLen)
- }
- }
|