-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6933 from mikesplain/automated-cherry-pick-of-#6890-
#6893-#6898-origin-release-1.13 Automated cherry pick of #6890: Fix machine types with klog #6893: /etc/hosts (gossip): Stronger logic #6898: Add i3en
- Loading branch information
Showing
6 changed files
with
327 additions
and
11 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
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,159 @@ | ||
/* | ||
Copyright 2019 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 hosts | ||
|
||
import ( | ||
"io/ioutil" | ||
"os" | ||
"path/filepath" | ||
"strings" | ||
"testing" | ||
|
||
"k8s.io/kops/pkg/diff" | ||
) | ||
|
||
func TestRemovesDuplicateGuardedBlocks(t *testing.T) { | ||
in := ` | ||
foo 10.2.3.4 | ||
# Begin host entries managed by etcd-manager[etcd] - do not edit | ||
# End host entries managed by etcd-manager[etcd] | ||
# Begin host entries managed by etcd-manager[etcd] - do not edit | ||
# End host entries managed by etcd-manager[etcd] | ||
# Begin host entries managed by kops - do not edit | ||
# End host entries managed by kops | ||
# Begin host entries managed by kops - do not edit | ||
# End host entries managed by kops | ||
# Begin host entries managed by kops - do not edit | ||
# End host entries managed by kops | ||
# Begin host entries managed by kops - do not edit | ||
# End host entries managed by kops | ||
# Begin host entries managed by kops - do not edit | ||
# End host entries managed by kops | ||
# Begin host entries managed by kops - do not edit | ||
# End host entries managed by kops | ||
# Begin host entries managed by kops - do not edit | ||
# End host entries managed by kops | ||
# Begin host entries managed by kops - do not edit | ||
# End host entries managed by kops | ||
` | ||
|
||
expected := ` | ||
foo 10.2.3.4 | ||
# Begin host entries managed by etcd-manager[etcd] - do not edit | ||
# End host entries managed by etcd-manager[etcd] | ||
# Begin host entries managed by etcd-manager[etcd] - do not edit | ||
# End host entries managed by etcd-manager[etcd] | ||
# Begin host entries managed by kops - do not edit | ||
a\t10.0.1.1 10.0.1.2 | ||
b\t10.0.2.1 | ||
c\t | ||
# End host entries managed by kops | ||
` | ||
|
||
runTest(t, in, expected) | ||
} | ||
|
||
func TestRecoversFromBadNesting(t *testing.T) { | ||
in := ` | ||
foo 10.2.3.4 | ||
# End host entries managed by kops | ||
# Begin host entries managed by kops - do not edit | ||
# Begin host entries managed by kops - do not edit | ||
# End host entries managed by kops | ||
# End host entries managed by kops | ||
# End host entries managed by kops | ||
# Begin host entries managed by kops - do not edit | ||
# End host entries managed by kops | ||
# Begin host entries managed by kops - do not edit | ||
# End host entries managed by kops | ||
# Begin host entries managed by kops - do not edit | ||
# End host entries managed by kops | ||
# Begin host entries managed by kops - do not edit | ||
# Begin host entries managed by kops - do not edit | ||
# Begin host entries managed by kops - do not edit | ||
# Begin host entries managed by kops - do not edit | ||
# End host entries managed by kops | ||
# Begin host entries managed by kops - do not edit | ||
# End host entries managed by kops | ||
bar 10.1.2.3 | ||
` | ||
|
||
expected := ` | ||
foo 10.2.3.4 | ||
bar 10.1.2.3 | ||
# Begin host entries managed by kops - do not edit | ||
a\t10.0.1.1 10.0.1.2 | ||
b\t10.0.2.1 | ||
c\t | ||
# End host entries managed by kops | ||
` | ||
|
||
runTest(t, in, expected) | ||
} | ||
|
||
func runTest(t *testing.T, in string, expected string) { | ||
expected = strings.Replace(expected, "\\t", "\t", -1) | ||
|
||
dir, err := ioutil.TempDir("", "") | ||
if err != nil { | ||
t.Fatalf("error creating temp dir: %v", err) | ||
} | ||
defer func() { | ||
err := os.RemoveAll(dir) | ||
if err != nil { | ||
t.Errorf("failed to remove temp dir %q: %v", dir, err) | ||
} | ||
}() | ||
|
||
p := filepath.Join(dir, "hosts") | ||
addrToHosts := map[string][]string{ | ||
"a": {"10.0.1.2", "10.0.1.1"}, | ||
"b": {"10.0.2.1"}, | ||
"c": {}, | ||
} | ||
|
||
if err := ioutil.WriteFile(p, []byte(in), 0755); err != nil { | ||
t.Fatalf("error writing hosts file: %v", err) | ||
} | ||
|
||
// We run it repeatedly to make sure we don't change it accidentally | ||
for i := 0; i < 100; i++ { | ||
if err := UpdateHostsFileWithRecords(p, addrToHosts); err != nil { | ||
t.Fatalf("error updating hosts file: %v", err) | ||
} | ||
|
||
b, err := ioutil.ReadFile(p) | ||
if err != nil { | ||
t.Fatalf("error reading output file: %v", err) | ||
} | ||
|
||
actual := string(b) | ||
if actual != expected { | ||
diffString := diff.FormatDiff(expected, actual) | ||
t.Logf("diff:\n%s\n", diffString) | ||
t.Errorf("unexpected output. expected=%q, actual=%q", expected, actual) | ||
} | ||
} | ||
} |
Oops, something went wrong.