kubernetes merge_conflict_test 源码

  • 2022-09-18
  • 浏览 (205)

kubernetes merge_conflict_test 代码

文件路径:/staging/src/k8s.io/kubectl/pkg/apply/strategy/merge_conflict_test.go

/*
Copyright 2018 The Kubernetes 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 strategy_test

import (
	. "github.com/onsi/ginkgo/v2"

	"k8s.io/kubectl/pkg/apply/strategy"
)

var _ = Describe("Comparing fields of remote and recorded ", func() {
	Context("Test conflict in map fields of remote and recorded", func() {
		It("If conflicts found, expected return error", func() {
			recorded := create(`
apiVersion: apps/v1
kind: Deployment
spec:
  foo1: "key1"
`)
			local := create(`
apiVersion: apps/v1
kind: Deployment
spec:
  foo2: "baz2-1"
`)
			remote := create(`
apiVersion: apps/v1
kind: Deployment
spec:
  foo1: "baz1-0"
`)

			expect := hasConflict
			// map fields have conflict : recorded {foo1 : "key1"}, remote {foo1 : "baz1-0"}
			runConflictTest(strategy.Create(strategy.Options{FailOnConflict: true}), recorded, local, remote, expect)
		})
	})

	Context("Test conflict in list fields of remote and recorded ", func() {
		It("If conflicts found, expected return false", func() {
			recorded := create(`
apiVersion: apps/v1
kind: Deployment
metadata:
  finalizers:
  - "a"
  - "b"
  - "d"
`)
			local := create(`
apiVersion: apps/v1
kind: Deployment
metadata:
  finalizers:
  - "a"
  - "b"
`)
			remote := create(`
apiVersion: apps/v1
kind: Deployment
metadata:
  finalizers:
  - "a"
  - "b"
  - "c"
`)
			expect := hasConflict
			// primatie lists have conflicts: recorded [a, b, d], remote [a, b, c]
			runConflictTest(strategy.Create(strategy.Options{FailOnConflict: true}), recorded, local, remote, expect)
		})
	})

	Context("Test conflict in Map-List fields of remote and recorded ", func() {
		It("should leave the item", func() {
			recorded := create(`
apiVersion: apps/v1
kind: Deployment
spec:
  template:
    spec:
      containers:
      - name: item1
        image: image1
`)
			local := create(`
apiVersion: apps/v1
kind: Deployment
spec:
  template:
    spec:
      containers:
      - name: item2
        image: image2
`)
			remote := create(`
apiVersion: apps/v1
kind: Deployment
spec:
  template:
    spec:
      containers:
        - name: item1
          image: image3
`)
			expect := hasConflict
			// map list has conflict :  recorded {containers: [ {name: item1, image: image1} ]} , remote {containers: [ {name: item1, image: image3} ]}
			runConflictTest(strategy.Create(strategy.Options{FailOnConflict: true}), recorded, local, remote, expect)
		})
	})

	Context("Test conflicts in nested map field", func() {
		It("If conflicts found, expected return error", func() {
			recorded := create(`
apiVersion: apps/v1
kind: Deployment
spec:
  foo1:
    name: "key1"
`)
			local := create(`
apiVersion: apps/v1
kind: Deployment
spec:
  foo1:
    name: "baz1-0"
`)
			remote := create(`
apiVersion: apps/v1
kind: Deployment
spec:
  foo1:
    name: "baz1-1"
`)
			expect := hasConflict
			// nested map has conflict : recorded {foo1: {name: "key1"}}, remote {foo1: {name : "baz1-1"}}
			runConflictTest(strategy.Create(strategy.Options{FailOnConflict: true}), recorded, local, remote, expect)
		})
	})

	Context("Test conflicts in complicated map, list", func() {
		It("Should catch conflict in key-value in map element", func() {
			recorded := create(`
apiVersion: apps/v1
kind: Deployment
spec:
  template:
    spec:
      containers:
      - name: container
        ports:
        - containerPort: 8080
          protocol: TCP
          hostPort: 2020
        - containerPort: 8080
          protocol: UDP
          hostPort: 2022
`)
			local := create(`
apiVersion: apps/v1
kind: Deployment
spec:
  template:
    spec:
      containers:
      - name: container
        ports:
        - containerPort: 8080
          protocol: TCP
          hostPort: 2020
`)
			remote := create(`
apiVersion: apps/v1
kind: Deployment
spec:
  template:
    spec:
      containers:
      - name: container
        ports:
        - containerPort: 8080
          protocol: TCP
          hostPort: 2020
        - containerPort: 8080
          protocol: UDP
          hostPort: 2022
          hostIP: "127.0.0.1"
`)
			expect := noConflict
			runConflictTest(strategy.Create(strategy.Options{FailOnConflict: true}), recorded, local, remote, expect)
		})
	})
})

相关信息

kubernetes 源码目录

相关文章

kubernetes doc 源码

kubernetes merge 源码

kubernetes merge_map_list_test 源码

kubernetes merge_map_test 源码

kubernetes merge_primitive_list_test 源码

kubernetes merge_primitive_test 源码

kubernetes merge_visitor 源码

kubernetes replace_map_list_test 源码

kubernetes replace_map_test 源码

kubernetes replace_primitive_list_test 源码

0  赞