Skip to content

Commit dab335c

Browse files
Merge pull request #20177 from deads2k/rbac-02-v1revert
Collapse back to upstream reconcile command
2 parents 07164c9 + a9b4aee commit dab335c

File tree

6 files changed

+69
-38
lines changed

6 files changed

+69
-38
lines changed

tools/rebasehelpers/commitchecker/validate.go

+3-7
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ The following UPSTREAM commits have invalid summaries:
1818
{{ end }}
1919
UPSTREAM commit summaries should look like:
2020
21-
UPSTREAM: [non-kube-repo/name: ]<PR number|carry|drop>: description
21+
UPSTREAM: <PR number|carry|drop>: description
2222
2323
UPSTREAM commits which revert previous UPSTREAM commits should look like:
2424
25-
UPSTREAM: revert: <sha>: <normal upstream format>
25+
UPSTREAM: revert: <normal upstream format>
2626
2727
UPSTREAM commits are validated against the following regular expression:
2828
@@ -31,20 +31,16 @@ UPSTREAM commits are validated against the following regular expression:
3131
Examples of valid summaries:
3232
3333
UPSTREAM: 12345: A kube fix
34-
UPSTREAM: coreos/etcd: 12345: An etcd fix
3534
UPSTREAM: <carry>: A carried kube change
3635
UPSTREAM: <drop>: A dropped kube change
37-
UPSTREAM: revert: abcd123: coreos/etcd: 12345: An etcd fix
38-
UPSTREAM: k8s.io/heapster: 12345: A heapster fix
36+
UPSTREAM: revert: 12345: A kube revert
3937
4038
`
4139

4240
var AllValidators = []func([]util.Commit) error{
4341
ValidateUpstreamCommitSummaries,
4442
ValidateUpstreamCommitsWithoutGodepsChanges,
45-
ValidateUpstreamCommitModifiesSingleGodepsRepo,
4643
ValidateUpstreamCommitModifiesOnlyGodeps,
47-
ValidateUpstreamCommitModifiesOnlyDeclaredGodepRepo,
4844
ValidateUpstreamCommitModifiesOnlyKubernetes,
4945
}
5046

tools/rebasehelpers/commitchecker/validate_test.go

+22-20
Original file line numberDiff line numberDiff line change
@@ -296,29 +296,31 @@ func TestValidateUpstreamCommitSummaries(t *testing.T) {
296296
{valid: true, summary: "UPSTREAM: <drop>: a change"},
297297
{valid: true, summary: "UPSTREAM: coreos/etcd: <carry>: a change"},
298298
{valid: true, summary: "UPSTREAM: coreos/etcd: <drop>: a change"},
299-
{valid: true, summary: "UPSTREAM: revert: abcd123: 12345: a change"},
300-
{valid: true, summary: "UPSTREAM: revert: abcd123: k8s.io/heapster: 12345: a change"},
301-
{valid: true, summary: "UPSTREAM: revert: abcd123: <carry>: a change"},
302-
{valid: true, summary: "UPSTREAM: revert: abcd123: <drop>: a change"},
303-
{valid: true, summary: "UPSTREAM: revert: abcd123: coreos/etcd: <carry>: a change"},
304-
{valid: true, summary: "UPSTREAM: revert: abcd123: coreos/etcd: <drop>: a change"},
299+
{valid: true, summary: "UPSTREAM: revert: 12345: a change"},
300+
{valid: true, summary: "UPSTREAM: revert: k8s.io/heapster: 12345: a change"},
301+
{valid: true, summary: "UPSTREAM: revert: <carry>: a change"},
302+
{valid: true, summary: "UPSTREAM: revert: <drop>: a change"},
303+
{valid: true, summary: "UPSTREAM: revert: coreos/etcd: <carry>: a change"},
304+
{valid: true, summary: "UPSTREAM: revert: coreos/etcd: <drop>: a change"},
305305
{valid: false, summary: "UPSTREAM: whoopsie daisy"},
306306
{valid: true, summary: "UPSTREAM: gopkg.in/ldap.v2: 51: exposed better API for paged search"},
307307
}
308308
for _, test := range tests {
309-
commit := util.Commit{Summary: test.summary, Sha: "abcd000"}
310-
err := ValidateUpstreamCommitSummaries([]util.Commit{commit})
311-
if err != nil {
312-
if test.valid {
313-
t.Fatalf("unexpected error:\n%s", err)
309+
t.Run(test.summary, func(t *testing.T) {
310+
commit := util.Commit{Summary: test.summary, Sha: "abcd000"}
311+
err := ValidateUpstreamCommitSummaries([]util.Commit{commit})
312+
if err != nil {
313+
if test.valid {
314+
t.Fatalf("unexpected error:\n%s", err)
315+
} else {
316+
t.Logf("got expected error:\n%s", err)
317+
}
314318
} else {
315-
t.Logf("got expected error:\n%s", err)
319+
if !test.valid {
320+
t.Fatalf("expected an error, got none; summary: %s", test.summary)
321+
}
316322
}
317-
} else {
318-
if !test.valid {
319-
t.Fatalf("expected an error, got none; summary: %s", test.summary)
320-
}
321-
}
323+
})
322324
}
323325
}
324326

@@ -409,7 +411,7 @@ func TestValidateUpstreamCommitModifiesOnlyDeclaredGodepRepo(t *testing.T) {
409411
commits: []util.Commit{
410412
{
411413
Sha: "aaa0001",
412-
Summary: "UPSTREAM: revert: abcd000: 12345: a change",
414+
Summary: "UPSTREAM: revert: 12345: a change",
413415
Files: []util.File{
414416
"Godeps/_workspace/src/k8s.io/kubernetes/file1",
415417
"Godeps/_workspace/src/k8s.io/kubernetes/file2",
@@ -423,7 +425,7 @@ func TestValidateUpstreamCommitModifiesOnlyDeclaredGodepRepo(t *testing.T) {
423425
commits: []util.Commit{
424426
{
425427
Sha: "aaa0001",
426-
Summary: "UPSTREAM: revert: abcd000: coreos/etcd: 12345: a change",
428+
Summary: "UPSTREAM: revert: coreos/etcd: 12345: a change",
427429
Files: []util.File{
428430
"Godeps/_workspace/src/k8s.io/kubernetes/file1",
429431
"Godeps/_workspace/src/k8s.io/kubernetes/file2",
@@ -437,7 +439,7 @@ func TestValidateUpstreamCommitModifiesOnlyDeclaredGodepRepo(t *testing.T) {
437439
commits: []util.Commit{
438440
{
439441
Sha: "aaa0001",
440-
Summary: "UPSTREAM: revert: abcd000: coreos/etcd: 12345: a change",
442+
Summary: "UPSTREAM: revert: coreos/etcd: 12345: a change",
441443
Files: []util.File{
442444
"Godeps/_workspace/src/github.com/coreos/etcd/file1",
443445
"Godeps/_workspace/src/github.com/coreos/etcd/file2",

tools/rebasehelpers/util/git.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"strings"
1010
)
1111

12-
var UpstreamSummaryPattern = regexp.MustCompile(`UPSTREAM: (revert: [a-f0-9]{7,}: )?(([\w\.-]+\/[\w-\.-]+)?: )?(\d+:|<carry>:|<drop>:)`)
12+
var UpstreamSummaryPattern = regexp.MustCompile(`UPSTREAM: (revert: )?(([\w\.-]+\/[\w-\.-]+)?: )?(\d+:|<carry>:|<drop>:)`)
1313

1414
// supportedHosts maps source hosts to the number of path segments that
1515
// represent the account/repo for that host. This is necessary because we

vendor/k8s.io/kubernetes/hack/make-rules/test-cmd-util.sh

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/k8s.io/kubernetes/pkg/kubectl/cmd/auth/reconcile.go

+15-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/k8s.io/kubernetes/test/fixtures/pkg/kubectl/cmd/auth/rbac-v1beta1.yaml

+25
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)