2021-05-10 12:56:26 -07: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/>.
|
2015-12-11 16:59:51 -08:00
|
|
|
|
|
|
|
|
package hookreader
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"bytes"
|
|
|
|
|
"testing"
|
|
|
|
|
|
2023-10-24 06:51:09 +02:00
|
|
|
check "gopkg.in/check.v1"
|
2015-12-11 16:59:51 -08:00
|
|
|
)
|
|
|
|
|
|
2023-10-24 06:51:09 +02:00
|
|
|
func Test(t *testing.T) { check.TestingT(t) }
|
2015-12-11 16:59:51 -08:00
|
|
|
|
|
|
|
|
type MySuite struct{}
|
|
|
|
|
|
2023-10-24 06:51:09 +02:00
|
|
|
var _ = check.Suite(&MySuite{})
|
2015-12-11 16:59:51 -08:00
|
|
|
|
|
|
|
|
// customReader - implements custom progress reader.
|
|
|
|
|
type customReader struct {
|
|
|
|
|
readBytes int
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *customReader) Read(b []byte) (n int, err error) {
|
|
|
|
|
c.readBytes += len(b)
|
|
|
|
|
return len(b), nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Tests hook reader implementation.
|
2023-10-24 06:51:09 +02:00
|
|
|
func (s *MySuite) TestHookReader(c *check.C) {
|
2015-12-11 16:59:51 -08:00
|
|
|
var buffer bytes.Buffer
|
|
|
|
|
writer := &buffer
|
|
|
|
|
_, err := writer.Write([]byte("Hello"))
|
2023-10-24 06:51:09 +02:00
|
|
|
c.Assert(err, check.IsNil)
|
2015-12-11 16:59:51 -08:00
|
|
|
progress := &customReader{}
|
|
|
|
|
reader := NewHook(&buffer, progress)
|
|
|
|
|
b := make([]byte, 3)
|
|
|
|
|
n, err := reader.Read(b)
|
2023-10-24 06:51:09 +02:00
|
|
|
c.Assert(err, check.IsNil)
|
|
|
|
|
c.Assert(n, check.Equals, 3)
|
|
|
|
|
c.Assert(progress.readBytes, check.Equals, 3)
|
2015-12-11 16:59:51 -08:00
|
|
|
}
|