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-07-12 19:33:21 -04:00
|
|
|
|
|
|
|
package http
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"reflect"
|
|
|
|
"testing"
|
2018-05-31 15:30:15 -04:00
|
|
|
|
2021-05-28 18:17:01 -04:00
|
|
|
"github.com/minio/pkg/certs"
|
2017-07-12 19:33:21 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestNewServer(t *testing.T) {
|
|
|
|
nonLoopBackIP := getNonLoopBackIP(t)
|
|
|
|
handler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
fmt.Fprintf(w, "Hello, world")
|
|
|
|
})
|
|
|
|
|
|
|
|
testCases := []struct {
|
2018-05-31 15:30:15 -04:00
|
|
|
addrs []string
|
|
|
|
handler http.Handler
|
|
|
|
certFn certs.GetCertificateFunc
|
2017-07-12 19:33:21 -04:00
|
|
|
}{
|
|
|
|
{[]string{"127.0.0.1:9000"}, handler, nil},
|
|
|
|
{[]string{nonLoopBackIP + ":9000"}, handler, nil},
|
|
|
|
{[]string{"127.0.0.1:9000", nonLoopBackIP + ":9000"}, handler, nil},
|
2018-05-31 15:30:15 -04:00
|
|
|
{[]string{"127.0.0.1:9000"}, handler, getCert},
|
|
|
|
{[]string{nonLoopBackIP + ":9000"}, handler, getCert},
|
|
|
|
{[]string{"127.0.0.1:9000", nonLoopBackIP + ":9000"}, handler, getCert},
|
2017-07-12 19:33:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
for i, testCase := range testCases {
|
2018-05-31 15:30:15 -04:00
|
|
|
server := NewServer(testCase.addrs, testCase.handler, testCase.certFn)
|
2017-07-12 19:33:21 -04:00
|
|
|
if server == nil {
|
|
|
|
t.Fatalf("Case %v: server: expected: <non-nil>, got: <nil>", (i + 1))
|
|
|
|
}
|
|
|
|
|
|
|
|
if !reflect.DeepEqual(server.Addrs, testCase.addrs) {
|
|
|
|
t.Fatalf("Case %v: server.Addrs: expected: %v, got: %v", (i + 1), testCase.addrs, server.Addrs)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Interfaces are not comparable even with reflection.
|
|
|
|
// if !reflect.DeepEqual(server.Handler, testCase.handler) {
|
|
|
|
// t.Fatalf("Case %v: server.Handler: expected: %v, got: %v", (i + 1), testCase.handler, server.Handler)
|
|
|
|
// }
|
|
|
|
|
2018-05-31 15:30:15 -04:00
|
|
|
if testCase.certFn == nil {
|
2017-07-12 19:33:21 -04:00
|
|
|
if server.TLSConfig != nil {
|
|
|
|
t.Fatalf("Case %v: server.TLSConfig: expected: <nil>, got: %v", (i + 1), server.TLSConfig)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if server.TLSConfig == nil {
|
|
|
|
t.Fatalf("Case %v: server.TLSConfig: expected: <non-nil>, got: <nil>", (i + 1))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if server.ShutdownTimeout != DefaultShutdownTimeout {
|
|
|
|
t.Fatalf("Case %v: server.ShutdownTimeout: expected: %v, got: %v", (i + 1), DefaultShutdownTimeout, server.ShutdownTimeout)
|
|
|
|
}
|
|
|
|
|
|
|
|
if server.MaxHeaderBytes != DefaultMaxHeaderBytes {
|
|
|
|
t.Fatalf("Case %v: server.MaxHeaderBytes: expected: %v, got: %v", (i + 1), DefaultMaxHeaderBytes, server.MaxHeaderBytes)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|