2021-01-15 14:38:36 +08:00
|
|
|
package indexnode
|
2020-12-10 17:55:55 +08:00
|
|
|
|
|
|
|
import (
|
2021-01-15 14:38:36 +08:00
|
|
|
"fmt"
|
2020-12-10 17:55:55 +08:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestParamTable_Init(t *testing.T) {
|
|
|
|
Params.Init()
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestParamTable_Address(t *testing.T) {
|
|
|
|
address := Params.Address
|
2021-01-15 14:38:36 +08:00
|
|
|
fmt.Println(address)
|
2020-12-10 17:55:55 +08:00
|
|
|
}
|
|
|
|
|
2020-12-22 08:14:36 +08:00
|
|
|
func TestParamTable_MinIOAddress(t *testing.T) {
|
2021-01-15 14:38:36 +08:00
|
|
|
address := Params.MinIOAddress
|
|
|
|
fmt.Println(address)
|
2020-12-22 08:14:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestParamTable_MinIOAccessKeyID(t *testing.T) {
|
|
|
|
accessKeyID := Params.MinIOAccessKeyID
|
|
|
|
assert.Equal(t, accessKeyID, "minioadmin")
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestParamTable_MinIOSecretAccessKey(t *testing.T) {
|
|
|
|
secretAccessKey := Params.MinIOSecretAccessKey
|
|
|
|
assert.Equal(t, secretAccessKey, "minioadmin")
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestParamTable_MinIOUseSSL(t *testing.T) {
|
|
|
|
useSSL := Params.MinIOUseSSL
|
|
|
|
assert.Equal(t, useSSL, false)
|
|
|
|
}
|