2021-04-18 15:41:13 -04:00
|
|
|
// Copyright (c) 2015-2021 MinIO, Inc.
|
|
|
|
//
|
|
|
|
// This file is part of MinIO Object Storage stack
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2017-03-16 15:21:58 -04:00
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
2017-08-12 22:25:43 -04:00
|
|
|
import (
|
2022-07-21 14:52:18 -04:00
|
|
|
"context"
|
2017-08-12 22:25:43 -04:00
|
|
|
"os"
|
|
|
|
"testing"
|
|
|
|
)
|
2017-03-16 15:21:58 -04:00
|
|
|
|
|
|
|
// Test printing Gateway common message.
|
|
|
|
func TestPrintGatewayCommonMessage(t *testing.T) {
|
2022-07-21 14:52:18 -04:00
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
obj, fsDir, err := prepareFS(ctx)
|
2017-06-09 22:50:51 -04: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-06-09 22:50:51 -04:00
|
|
|
|
|
|
|
apiEndpoints := []string{"http://127.0.0.1:9000"}
|
|
|
|
printGatewayCommonMsg(apiEndpoints)
|
2017-03-16 15:21:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Test print gateway startup message.
|
|
|
|
func TestPrintGatewayStartupMessage(t *testing.T) {
|
2022-07-21 14:52:18 -04:00
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
obj, fsDir, err := prepareFS(ctx)
|
2017-06-09 22:50:51 -04: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-06-09 22:50:51 -04:00
|
|
|
|
|
|
|
apiEndpoints := []string{"http://127.0.0.1:9000"}
|
2022-02-27 17:54:37 -05:00
|
|
|
printGatewayStartupMessage(apiEndpoints, "s3")
|
2017-03-16 15:21:58 -04:00
|
|
|
}
|