-
Notifications
You must be signed in to change notification settings - Fork 9.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tools: generate tab level test summary instead of test level.
Signed-off-by: Siyuan Zhang <sizhang@google.com>
- Loading branch information
1 parent
ce45881
commit edc5f16
Showing
6 changed files
with
284 additions
and
68 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
// Copyright 2024 The etcd 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 cmd | ||
|
||
import ( | ||
"testing" | ||
) | ||
|
||
func TestShortenTestName(t *testing.T) { | ||
tests := []struct { | ||
testName string | ||
shortName string | ||
}{ | ||
{ | ||
testName: "go.etcd.io/etcd/tests/v3/common.TestKVGet/ClientTLS", | ||
shortName: "common.TestKVGet/ClientTLS", | ||
}, | ||
{ | ||
testName: "go.etcd.io/etcd/tests/v3/common.TestKVDelete/ClientTLS", | ||
shortName: "common.TestKVDelete/ClientTLS", | ||
}, | ||
{ | ||
testName: "go.etcd.io/etcd/tests/v3/common.TestLeaseGrantAndList/ClientAutoTLS/many_leases", | ||
shortName: "common.TestLeaseGrantAndList/ClientAutoTLS/many_leases", | ||
}, | ||
{ | ||
testName: "go.etcd.io/etcd/tests/v3/common.TestMoveLeaderWithInvalidAuth", | ||
shortName: "common.TestMoveLeaderWithInvalidAuth", | ||
}, | ||
} | ||
for _, tt := range tests { | ||
t.Run(tt.testName, func(t *testing.T) { | ||
shortName := shortenTestName(tt.testName) | ||
if shortName != tt.shortName { | ||
t.Errorf("Want %s, got %s", tt.shortName, shortName) | ||
} | ||
}) | ||
} | ||
} |
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.