1
0
mirror of https://github.com/minio/mc.git synced 2025-11-12 01:02:26 +03:00
Files
mc/cmd/pretty-table_test.go
Anis Elleuch 800f0af04e config: Hosts listing cuts fields and adds '...' (#2180)
New host list format when listing several hosts
```
myminiopublic :    http://localhost:9000
myminios      :    https://minio1.duckdns.org:...  Q3AM3UQ867SPQQA43P2F  zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG  S3v4
testazure     :    http://172.17.0.7:9000          myazureac             Gh5543wekitnifILbZam1KYY3TGlswRminio1...  S3v4
```

New host list format when listing one host:

```
azure:  http://localhost:9000  myazureac  Gh5543wekitnifILbZam1KYY3TGlswRminio1u7BJ86wekitnifILbZam1K==  S3v4
```
2017-06-12 14:06:50 -07:00

52 lines
1.9 KiB
Go

/*
* Minio Client (C) 2017 Minio, Inc.
*
* 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"
// TestPrettyTable - testing the behavior of the pretty table module
func TestPrettyTable(t *testing.T) {
testCases := []struct {
sep string
tf []Field
contents []string
expectedRow string
}{
// Test 1: empty parameter, empty table
{"", []Field{}, []string{}, ""},
// Test 2: one field, without any specific customization
{"", []Field{Field{"", -1}}, []string{"abcd"}, "abcd"},
// Test 3: one field, without 5 chars len
{"", []Field{Field{"", 5}}, []string{"my-long-field"}, "my..."},
// Test 4: one separator, one content
{" | ", []Field{Field{"", -1}}, []string{"abcd"}, "abcd"},
// Test 5: one separtor, multiple contents
{" | ", []Field{Field{"", -1}, Field{"", -1}, Field{"", -1}}, []string{"column1", "column2", "column3"}, "column1 | column2 | column3"},
// Test 6: multiple fields
{" | ", []Field{Field{"", 5}, Field{"", -1}}, []string{"144550032", "my long content that should not be cut"}, "14... | my long content that should not be cut"},
}
for idx, testCase := range testCases {
tb := newPrettyTable(testCase.sep, testCase.tf...)
row := tb.buildRow(testCase.contents...)
if row != testCase.expectedRow {
t.Fatalf("Test %d: generated row not matching, expected = `%s`, found = `%s`", idx+1, testCase.expectedRow, row)
}
}
}