-
Notifications
You must be signed in to change notification settings - Fork 40k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add munger to verify kubectl -f targets, fix docs
- Loading branch information
Showing
47 changed files
with
377 additions
and
122 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
/* | ||
Copyright 2015 The Kubernetes Authors All rights reserved. | ||
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 main | ||
|
||
import ( | ||
"fmt" | ||
"os" | ||
"path" | ||
"strings" | ||
) | ||
|
||
// Looks for lines that have kubectl commands with -f flags and files that | ||
// don't exist. | ||
func checkKubectlFileTargets(file string, markdown []byte) ([]byte, error) { | ||
inside := false | ||
lines := splitLines(markdown) | ||
errors := []string{} | ||
for i := range lines { | ||
if strings.HasPrefix(lines[i], "```") { | ||
inside = !inside | ||
} | ||
if inside { | ||
if err := lookForKubectl(lines, i); err != nil { | ||
errors = append(errors, err.Error()) | ||
} | ||
} | ||
} | ||
err := error(nil) | ||
if len(errors) != 0 { | ||
err = fmt.Errorf("%s", strings.Join(errors, "\n")) | ||
} | ||
return markdown, err | ||
} | ||
|
||
func lookForKubectl(lines []string, lineNum int) error { | ||
fields := strings.Fields(lines[lineNum]) | ||
for i := range fields { | ||
if fields[i] == "kubectl" { | ||
return gotKubectl(lineNum, fields, i) | ||
} | ||
} | ||
return nil | ||
} | ||
|
||
func gotKubectl(line int, fields []string, fieldNum int) error { | ||
for i := fieldNum + 1; i < len(fields); i++ { | ||
switch fields[i] { | ||
case "create", "update", "replace", "delete": | ||
return gotCommand(line, fields, i) | ||
} | ||
} | ||
return nil | ||
} | ||
|
||
func gotCommand(line int, fields []string, fieldNum int) error { | ||
for i := fieldNum + 1; i < len(fields); i++ { | ||
if strings.HasPrefix(fields[i], "-f") { | ||
return gotDashF(line, fields, i) | ||
} | ||
} | ||
return nil | ||
} | ||
|
||
func gotDashF(line int, fields []string, fieldNum int) error { | ||
target := "" | ||
if fields[fieldNum] == "-f" { | ||
if fieldNum+1 == len(fields) { | ||
return fmt.Errorf("ran out of fields after '-f'") | ||
} | ||
target = fields[fieldNum+1] | ||
} else { | ||
target = fields[fieldNum][2:] | ||
} | ||
// Turn dirs into file-like names. | ||
target = strings.TrimRight(target, "/") | ||
|
||
// Now exclude special-cases | ||
|
||
if target == "-" || target == "FILENAME" { | ||
// stdin and "FILENAME" are OK | ||
return nil | ||
} | ||
if strings.HasPrefix(target, "http://") || strings.HasPrefix(target, "https://") { | ||
// URLs are ok | ||
return nil | ||
} | ||
if strings.HasPrefix(target, "./") { | ||
// Same-dir files are usually created in the same example | ||
return nil | ||
} | ||
if strings.HasPrefix(target, "/") { | ||
// Absolute paths tend to be /tmp/* and created in the same example. | ||
return nil | ||
} | ||
|
||
// If we got here we expect the file to exist. | ||
_, err := os.Stat(path.Join(*rootDir, *repoRoot, target)) | ||
if os.IsNotExist(err) { | ||
return fmt.Errorf("%d: target file %q does not exist", line, target) | ||
} | ||
return err | ||
} |
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,139 @@ | ||
/* | ||
Copyright 2015 The Kubernetes Authors All rights reserved. | ||
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 main | ||
|
||
import "testing" | ||
|
||
func TestKubectlDashF(t *testing.T) { | ||
var cases = []struct { | ||
in string | ||
ok bool | ||
}{ | ||
// No match | ||
{"", true}, | ||
{ | ||
"Foo\nBar\n", | ||
true, | ||
}, | ||
{ | ||
"Foo\nkubectl blah blech\nBar", | ||
true, | ||
}, | ||
{ | ||
"Foo\n```shell\nkubectl blah blech\n```\nBar", | ||
true, | ||
}, | ||
{ | ||
"Foo\n```\nkubectl -blah create blech\n```\nBar", | ||
true, | ||
}, | ||
// Special cases | ||
{ | ||
"Foo\n```\nkubectl -blah create -f -\n```\nBar", | ||
true, | ||
}, | ||
{ | ||
"Foo\n```\nkubectl -blah create -f-\n```\nBar", | ||
true, | ||
}, | ||
{ | ||
"Foo\n```\nkubectl -blah create -f FILENAME\n```\nBar", | ||
true, | ||
}, | ||
{ | ||
"Foo\n```\nkubectl -blah create -fFILENAME\n```\nBar", | ||
true, | ||
}, | ||
{ | ||
"Foo\n```\nkubectl -blah create -f http://google.com/foobar\n```\nBar", | ||
true, | ||
}, | ||
{ | ||
"Foo\n```\nkubectl -blah create -fhttp://google.com/foobar\n```\nBar", | ||
true, | ||
}, | ||
{ | ||
"Foo\n```\nkubectl -blah create -f ./foobar\n```\nBar", | ||
true, | ||
}, | ||
{ | ||
"Foo\n```\nkubectl -blah create -f./foobar\n```\nBar", | ||
true, | ||
}, | ||
{ | ||
"Foo\n```\nkubectl -blah create -f /foobar\n```\nBar", | ||
true, | ||
}, | ||
{ | ||
"Foo\n```\nkubectl -blah create -f/foobar\n```\nBar", | ||
true, | ||
}, | ||
// Real checks | ||
{ | ||
"Foo\n```\nkubectl -blah create -f mungedocs.go\n```\nBar", | ||
true, | ||
}, | ||
{ | ||
"Foo\n```\nkubectl -blah create -fmungedocs.go\n```\nBar", | ||
true, | ||
}, | ||
{ | ||
"Foo\n```\nkubectl -blah update -f mungedocs.go\n```\nBar", | ||
true, | ||
}, | ||
{ | ||
"Foo\n```\nkubectl -blah update -fmungedocs.go\n```\nBar", | ||
true, | ||
}, | ||
{ | ||
"Foo\n```\nkubectl -blah replace -f mungedocs.go\n```\nBar", | ||
true, | ||
}, | ||
{ | ||
"Foo\n```\nkubectl -blah replace -fmungedocs.go\n```\nBar", | ||
true, | ||
}, | ||
{ | ||
"Foo\n```\nkubectl -blah delete -f mungedocs.go\n```\nBar", | ||
true, | ||
}, | ||
{ | ||
"Foo\n```\nkubectl -blah delete -fmungedocs.go\n```\nBar", | ||
true, | ||
}, | ||
// Failures | ||
{ | ||
"Foo\n```\nkubectl -blah delete -f does_not_exist\n```\nBar", | ||
false, | ||
}, | ||
{ | ||
"Foo\n```\nkubectl -blah delete -fdoes_not_exist\n```\nBar", | ||
false, | ||
}, | ||
} | ||
for i, c := range cases { | ||
*rootDir = "" | ||
*repoRoot = "" | ||
_, err := checkKubectlFileTargets("filename.md", []byte(c.in)) | ||
if err != nil && c.ok { | ||
t.Errorf("case[%d]: expected success, got %v", i, err) | ||
} | ||
if err == nil && !c.ok { | ||
t.Errorf("case[%d]: unexpected success", i) | ||
} | ||
} | ||
} |
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
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
Oops, something went wrong.