mirror of
https://github.com/k8snetworkplumbingwg/multus-cni.git
synced 2025-07-14 16:04:07 +00:00
195 lines
5.9 KiB
Go
195 lines
5.9 KiB
Go
// Copyright (c) 2021 Multus 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 config
|
|
|
|
// disable dot-imports only for testing
|
|
//revive:disable:dot-imports
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"os"
|
|
"sync"
|
|
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
var _ = Describe("Configuration Manager", func() {
|
|
const (
|
|
primaryCNIPluginName = "00-mycni.conf"
|
|
primaryCNIPluginTemplate = `
|
|
{
|
|
"cniVersion": "0.4.0",
|
|
"name": "mycni-name",
|
|
"type": "mycni",
|
|
"ipam": {},
|
|
"dns": {}
|
|
}
|
|
`
|
|
)
|
|
|
|
var configManager *Manager
|
|
var multusConfigDir string
|
|
var defaultCniConfig string
|
|
var wg *sync.WaitGroup
|
|
|
|
BeforeEach(func() {
|
|
var err error
|
|
multusConfigDir, err = os.MkdirTemp("", "multus-config")
|
|
Expect(err).ToNot(HaveOccurred())
|
|
Expect(os.MkdirAll(multusConfigDir, 0755)).To(Succeed())
|
|
|
|
defaultCniConfig = fmt.Sprintf("%s/%s", multusConfigDir, primaryCNIPluginName)
|
|
Expect(os.WriteFile(defaultCniConfig, []byte(primaryCNIPluginTemplate), UserRWPermission)).To(Succeed())
|
|
|
|
multusConfFile := fmt.Sprintf(`{
|
|
"name": %q,
|
|
"cniVersion": %q,
|
|
"multusAutoconfigDir": %q,
|
|
"multusMasterCNI": %q,
|
|
"forceCNIVersion": false
|
|
}`, defaultCniConfig, cniVersion, multusConfigDir, primaryCNIPluginName)
|
|
multusConfFileName := fmt.Sprintf("%s/10-testcni.conf", multusConfigDir)
|
|
Expect(os.WriteFile(multusConfFileName, []byte(multusConfFile), 0755)).To(Succeed())
|
|
|
|
multusConf, err := ParseMultusConfig(multusConfFileName)
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
configManager, err = NewManager(*multusConf)
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
wg = &sync.WaitGroup{}
|
|
})
|
|
|
|
AfterEach(func() {
|
|
wg.Wait()
|
|
Expect(os.RemoveAll(multusConfigDir)).To(Succeed())
|
|
})
|
|
|
|
It("Generates a configuration, based on the contents of the delegated CNI config file", func() {
|
|
expectedResult := fmt.Sprintf("{\"cniVersion\":\"0.4.0\",\"name\":\"multus-cni-network\",\"clusterNetwork\":\"%s\",\"type\":\"multus-shim\"}", defaultCniConfig)
|
|
config, err := configManager.GenerateConfig()
|
|
Expect(err).NotTo(HaveOccurred())
|
|
Expect(config).To(Equal(expectedResult))
|
|
})
|
|
|
|
It("Check overrideCNIVersion is worked", func() {
|
|
err := overrideCNIVersion(defaultCniConfig, "1.1.1")
|
|
Expect(err).NotTo(HaveOccurred())
|
|
raw, err := os.ReadFile(defaultCniConfig)
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
var jsonConfig map[string]interface{}
|
|
err = json.Unmarshal(raw, &jsonConfig)
|
|
Expect(err).NotTo(HaveOccurred())
|
|
Expect(jsonConfig["cniVersion"].(string)).To(Equal("1.1.1"))
|
|
})
|
|
|
|
It("Check primaryCNIPlugin can be identified", func() {
|
|
fileName, err := getPrimaryCNIPluginName(multusConfigDir)
|
|
Expect(err).NotTo(HaveOccurred())
|
|
Expect(fileName).To(Equal(primaryCNIPluginName))
|
|
})
|
|
|
|
It("Check MonitorPluginConfiguration", func() {
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
defer cancel()
|
|
err := configManager.Start(ctx, wg)
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
updatedCNIConfig := `
|
|
{
|
|
"cniVersion": "0.4.0",
|
|
"name": "mycni-name",
|
|
"type": "mycni2",
|
|
"capabilities": {"portMappings": true},
|
|
"ipam": {},
|
|
"dns": {}
|
|
}
|
|
`
|
|
// update the CNI config to update the master config
|
|
Expect(os.WriteFile(defaultCniConfig, []byte(updatedCNIConfig), UserRWPermission)).To(Succeed())
|
|
|
|
// wait for a while to get fsnotify event
|
|
Eventually(func() string {
|
|
file, err := os.ReadFile(configManager.multusConfigFilePath)
|
|
Expect(err).NotTo(HaveOccurred())
|
|
return string(file)
|
|
}, 2).Should(ContainSubstring("portMappings"))
|
|
})
|
|
|
|
When("the user requests the name of the multus configuration to be overridden", func() {
|
|
BeforeEach(func() {
|
|
Expect(configManager.overrideNetworkName()).To(Succeed())
|
|
})
|
|
|
|
It("Overrides the name of the multus configuration when requested", func() {
|
|
expectedResult := fmt.Sprintf("{\"cniVersion\":\"0.4.0\",\"name\":\"mycni-name\",\"clusterNetwork\":\"%s\",\"type\":\"multus-shim\"}", defaultCniConfig)
|
|
config, err := configManager.GenerateConfig()
|
|
Expect(err).NotTo(HaveOccurred())
|
|
Expect(config).To(Equal(expectedResult))
|
|
})
|
|
})
|
|
})
|
|
|
|
var _ = Describe("Configuration Manager with mismatched cniVersion", func() {
|
|
const (
|
|
primaryCNIPluginName = "00-mycni.conf"
|
|
primaryCNIPluginTemplate = `
|
|
{
|
|
"cniVersion": "0.3.1",
|
|
"name": "mycni-name",
|
|
"type": "mycni",
|
|
"ipam": {},
|
|
"dns": {}
|
|
}
|
|
`
|
|
)
|
|
|
|
var multusConfigDir string
|
|
var defaultCniConfig string
|
|
|
|
It("test cni version incompatibility", func() {
|
|
var err error
|
|
multusConfigDir, err = os.MkdirTemp("", "multus-config")
|
|
Expect(err).ToNot(HaveOccurred())
|
|
Expect(os.MkdirAll(multusConfigDir, 0755)).To(Succeed())
|
|
|
|
defaultCniConfig = fmt.Sprintf("%s/%s", multusConfigDir, primaryCNIPluginName)
|
|
Expect(os.WriteFile(defaultCniConfig, []byte(primaryCNIPluginTemplate), UserRWPermission)).To(Succeed())
|
|
|
|
multusConfFile := fmt.Sprintf(`{
|
|
"name": %q,
|
|
"cniVersion": %q,
|
|
"multusAutoconfigDir": %q,
|
|
"multusMasterCNI": %q,
|
|
"forceCNIVersion": false
|
|
}`, defaultCniConfig, cniVersion, multusConfigDir, primaryCNIPluginName)
|
|
multusConfFileName := fmt.Sprintf("%s/10-testcni.conf", multusConfigDir)
|
|
Expect(os.WriteFile(multusConfFileName, []byte(multusConfFile), 0755)).To(Succeed())
|
|
|
|
multusConf, err := ParseMultusConfig(multusConfFileName)
|
|
Expect(err).NotTo(HaveOccurred())
|
|
_, err = NewManager(*multusConf)
|
|
Expect(err).To(MatchError("failed to load the primary CNI configuration as a multus delegate with error 'delegate cni version is 0.3.1 while top level cni version is 0.4.0'"))
|
|
})
|
|
|
|
AfterEach(func() {
|
|
Expect(os.RemoveAll(multusConfigDir)).To(Succeed())
|
|
})
|
|
|
|
})
|