2016-10-05 15:48:07 -04:00
|
|
|
/*
|
2019-04-09 14:39:42 -04:00
|
|
|
* MinIO Cloud Storage, (C) 2016, 2017 MinIO, Inc.
|
2016-10-05 15:48:07 -04:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
|
2016-10-12 23:22:15 -04:00
|
|
|
import (
|
2017-08-12 22:25:43 -04:00
|
|
|
"os"
|
2017-05-31 12:21:28 -04:00
|
|
|
"reflect"
|
2016-10-12 23:22:15 -04:00
|
|
|
"strings"
|
|
|
|
"testing"
|
2019-10-04 13:35:33 -04:00
|
|
|
|
2019-10-23 00:01:14 -04:00
|
|
|
"github.com/minio/minio/pkg/madmin"
|
2016-10-12 23:22:15 -04:00
|
|
|
)
|
2016-10-05 15:48:07 -04:00
|
|
|
|
|
|
|
// Tests if we generate storage info.
|
|
|
|
func TestStorageInfoMsg(t *testing.T) {
|
2018-02-15 20:45:57 -05:00
|
|
|
infoStorage := StorageInfo{}
|
2018-08-24 02:35:37 -04:00
|
|
|
infoStorage.Backend.Type = BackendErasure
|
2019-10-23 00:01:14 -04:00
|
|
|
infoStorage.Backend.OnlineDisks = madmin.BackendDisks{"127.0.0.1:9000": 4, "127.0.0.1:9001": 3}
|
|
|
|
infoStorage.Backend.OfflineDisks = madmin.BackendDisks{"127.0.0.1:9000": 0, "127.0.0.1:9001": 1}
|
2016-10-05 15:48:07 -04:00
|
|
|
|
2018-05-23 20:30:25 -04:00
|
|
|
if msg := getStorageInfoMsg(infoStorage); !strings.Contains(msg, "7 Online, 1 Offline") {
|
2016-10-16 17:24:15 -04:00
|
|
|
t.Fatal("Unexpected storage info message, found:", msg)
|
2016-10-14 07:48:08 -04:00
|
|
|
}
|
|
|
|
}
|
2017-01-10 19:43:48 -05:00
|
|
|
|
2017-05-31 12:21:28 -04:00
|
|
|
// Tests stripping standard ports from apiEndpoints.
|
|
|
|
func TestStripStandardPorts(t *testing.T) {
|
|
|
|
apiEndpoints := []string{"http://127.0.0.1:9000", "http://127.0.0.2:80", "https://127.0.0.3:443"}
|
|
|
|
expectedAPIEndpoints := []string{"http://127.0.0.1:9000", "http://127.0.0.2", "https://127.0.0.3"}
|
|
|
|
newAPIEndpoints := stripStandardPorts(apiEndpoints)
|
|
|
|
|
|
|
|
if !reflect.DeepEqual(expectedAPIEndpoints, newAPIEndpoints) {
|
|
|
|
t.Fatalf("Expected %#v, got %#v", expectedAPIEndpoints, newAPIEndpoints)
|
|
|
|
}
|
|
|
|
|
|
|
|
apiEndpoints = []string{"http://%%%%%:9000"}
|
|
|
|
newAPIEndpoints = stripStandardPorts(apiEndpoints)
|
2019-11-26 14:42:10 -05:00
|
|
|
if !reflect.DeepEqual([]string{""}, newAPIEndpoints) {
|
2017-05-31 12:21:28 -04:00
|
|
|
t.Fatalf("Expected %#v, got %#v", apiEndpoints, newAPIEndpoints)
|
|
|
|
}
|
|
|
|
|
|
|
|
apiEndpoints = []string{"http://127.0.0.1:443", "https://127.0.0.1:80"}
|
|
|
|
newAPIEndpoints = stripStandardPorts(apiEndpoints)
|
|
|
|
if !reflect.DeepEqual(apiEndpoints, newAPIEndpoints) {
|
|
|
|
t.Fatalf("Expected %#v, got %#v", apiEndpoints, newAPIEndpoints)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-10 19:43:48 -05:00
|
|
|
// Test printing server common message.
|
|
|
|
func TestPrintServerCommonMessage(t *testing.T) {
|
2018-08-15 00:41:47 -04:00
|
|
|
obj, fsDir, err := prepareFS()
|
2017-01-10 19:43:48 -05:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2018-08-15 00:41:47 -04:00
|
|
|
defer os.RemoveAll(fsDir)
|
|
|
|
if err = newTestConfig(globalMinioDefaultRegion, obj); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2017-01-10 19:43:48 -05:00
|
|
|
|
2017-05-31 12:21:28 -04:00
|
|
|
apiEndpoints := []string{"http://127.0.0.1:9000"}
|
2017-01-10 19:43:48 -05:00
|
|
|
printServerCommonMsg(apiEndpoints)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Tests print cli access message.
|
|
|
|
func TestPrintCLIAccessMsg(t *testing.T) {
|
2018-08-15 00:41:47 -04:00
|
|
|
obj, fsDir, err := prepareFS()
|
2017-01-10 19:43:48 -05:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2018-08-15 00:41:47 -04:00
|
|
|
defer os.RemoveAll(fsDir)
|
|
|
|
if err = newTestConfig(globalMinioDefaultRegion, obj); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2017-01-10 19:43:48 -05:00
|
|
|
|
2017-05-31 12:21:28 -04:00
|
|
|
apiEndpoints := []string{"http://127.0.0.1:9000"}
|
2017-06-09 22:50:51 -04:00
|
|
|
printCLIAccessMsg(apiEndpoints[0], "myminio")
|
2017-01-10 19:43:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Test print startup message.
|
|
|
|
func TestPrintStartupMessage(t *testing.T) {
|
2018-08-15 00:41:47 -04:00
|
|
|
obj, fsDir, err := prepareFS()
|
2017-01-10 19:43:48 -05:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2018-08-15 00:41:47 -04:00
|
|
|
defer os.RemoveAll(fsDir)
|
|
|
|
if err = newTestConfig(globalMinioDefaultRegion, obj); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2017-01-10 19:43:48 -05:00
|
|
|
|
2017-05-31 12:21:28 -04:00
|
|
|
apiEndpoints := []string{"http://127.0.0.1:9000"}
|
2017-01-10 19:43:48 -05:00
|
|
|
printStartupMessage(apiEndpoints)
|
|
|
|
}
|