2015-07-07 19:15:47 -04:00
|
|
|
/*
|
|
|
|
* Minimalist Object Storage, (C) 2015 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.
|
|
|
|
*/
|
|
|
|
|
2015-07-12 20:58:47 -04:00
|
|
|
package minhttp
|
2015-07-07 19:15:47 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"regexp"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
. "github.com/minio/check"
|
|
|
|
"github.com/minio/minio/pkg/iodine"
|
|
|
|
)
|
|
|
|
|
|
|
|
func Test(t *testing.T) { TestingT(t) }
|
|
|
|
|
|
|
|
type MySuite struct{}
|
|
|
|
|
|
|
|
var _ = Suite(&MySuite{})
|
|
|
|
|
|
|
|
func (s *MySuite) TestEmptyCountEnvVariable(c *C) {
|
|
|
|
os.Setenv(envCountKey, "")
|
2015-07-12 20:58:47 -04:00
|
|
|
n := &minNet{}
|
2015-07-07 19:15:47 -04:00
|
|
|
c.Assert(n.getInheritedListeners(), IsNil)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *MySuite) TestZeroCountEnvVariable(c *C) {
|
|
|
|
os.Setenv(envCountKey, "0")
|
2015-07-12 20:58:47 -04:00
|
|
|
n := &minNet{}
|
2015-07-07 19:15:47 -04:00
|
|
|
c.Assert(n.getInheritedListeners(), IsNil)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *MySuite) TestInvalidCountEnvVariable(c *C) {
|
|
|
|
os.Setenv(envCountKey, "a")
|
2015-07-12 20:58:47 -04:00
|
|
|
n := &minNet{}
|
2015-07-07 19:15:47 -04:00
|
|
|
expected := regexp.MustCompile("^found invalid count value: LISTEN_FDS=a$")
|
|
|
|
err := n.getInheritedListeners()
|
|
|
|
c.Assert(err, Not(IsNil))
|
|
|
|
c.Assert(expected.MatchString(iodine.ToError(err).Error()), Equals, true)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *MySuite) TestInheritErrorOnListenTCPWithInvalidCount(c *C) {
|
|
|
|
os.Setenv(envCountKey, "a")
|
2015-07-12 20:58:47 -04:00
|
|
|
n := &minNet{}
|
2015-07-07 19:15:47 -04:00
|
|
|
expected := regexp.MustCompile("^found invalid count value: LISTEN_FDS=a$")
|
|
|
|
_, err := n.Listen("tcp", ":0")
|
|
|
|
c.Assert(err, Not(IsNil))
|
|
|
|
c.Assert(expected.MatchString(iodine.ToError(err).Error()), Equals, true)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *MySuite) TestInvalidNetwork(c *C) {
|
|
|
|
os.Setenv(envCountKey, "")
|
2015-07-12 20:58:47 -04:00
|
|
|
n := &minNet{}
|
2015-07-07 19:15:47 -04:00
|
|
|
_, err := n.Listen("foo", "")
|
|
|
|
c.Assert(err, Not(IsNil))
|
|
|
|
c.Assert(regexp.MustCompile("^unknown network foo$").MatchString(iodine.ToError(err).Error()), Equals, true)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *MySuite) TestInvalidTcpAddr(c *C) {
|
|
|
|
os.Setenv(envCountKey, "")
|
2015-07-12 20:58:47 -04:00
|
|
|
n := &minNet{}
|
2015-07-07 19:15:47 -04:00
|
|
|
_, err := n.Listen("tcp", "abc")
|
|
|
|
c.Assert(err, Not(IsNil))
|
|
|
|
c.Assert(regexp.MustCompile("^missing port in address abc$").MatchString(iodine.ToError(err).Error()), Equals, true)
|
|
|
|
}
|