@@ -296,29 +296,31 @@ func TestValidateUpstreamCommitSummaries(t *testing.T) {
296
296
{valid : true , summary : "UPSTREAM: <drop>: a change" },
297
297
{valid : true , summary : "UPSTREAM: coreos/etcd: <carry>: a change" },
298
298
{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" },
305
305
{valid : false , summary : "UPSTREAM: whoopsie daisy" },
306
306
{valid : true , summary : "UPSTREAM: gopkg.in/ldap.v2: 51: exposed better API for paged search" },
307
307
}
308
308
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
+ }
314
318
} 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
+ }
316
322
}
317
- } else {
318
- if ! test .valid {
319
- t .Fatalf ("expected an error, got none; summary: %s" , test .summary )
320
- }
321
- }
323
+ })
322
324
}
323
325
}
324
326
@@ -409,7 +411,7 @@ func TestValidateUpstreamCommitModifiesOnlyDeclaredGodepRepo(t *testing.T) {
409
411
commits : []util.Commit {
410
412
{
411
413
Sha : "aaa0001" ,
412
- Summary : "UPSTREAM: revert: abcd000: 12345: a change" ,
414
+ Summary : "UPSTREAM: revert: 12345: a change" ,
413
415
Files : []util.File {
414
416
"Godeps/_workspace/src/k8s.io/kubernetes/file1" ,
415
417
"Godeps/_workspace/src/k8s.io/kubernetes/file2" ,
@@ -423,7 +425,7 @@ func TestValidateUpstreamCommitModifiesOnlyDeclaredGodepRepo(t *testing.T) {
423
425
commits : []util.Commit {
424
426
{
425
427
Sha : "aaa0001" ,
426
- Summary : "UPSTREAM: revert: abcd000: coreos/etcd: 12345: a change" ,
428
+ Summary : "UPSTREAM: revert: coreos/etcd: 12345: a change" ,
427
429
Files : []util.File {
428
430
"Godeps/_workspace/src/k8s.io/kubernetes/file1" ,
429
431
"Godeps/_workspace/src/k8s.io/kubernetes/file2" ,
@@ -437,7 +439,7 @@ func TestValidateUpstreamCommitModifiesOnlyDeclaredGodepRepo(t *testing.T) {
437
439
commits : []util.Commit {
438
440
{
439
441
Sha : "aaa0001" ,
440
- Summary : "UPSTREAM: revert: abcd000: coreos/etcd: 12345: a change" ,
442
+ Summary : "UPSTREAM: revert: coreos/etcd: 12345: a change" ,
441
443
Files : []util.File {
442
444
"Godeps/_workspace/src/github.com/coreos/etcd/file1" ,
443
445
"Godeps/_workspace/src/github.com/coreos/etcd/file2" ,
0 commit comments