mirror of https://github.com/minio/minio.git
24 lines
451 B
Go
24 lines
451 B
Go
|
package md5
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
"encoding/hex"
|
||
|
"testing"
|
||
|
|
||
|
. "gopkg.in/check.v1"
|
||
|
)
|
||
|
|
||
|
func Test(t *testing.T) { TestingT(t) }
|
||
|
|
||
|
type MySuite struct{}
|
||
|
|
||
|
var _ = Suite(&MySuite{})
|
||
|
|
||
|
func (s *MySuite) TestMd5sum(c *C) {
|
||
|
testString := []byte("Test string")
|
||
|
expectedHash, _ := hex.DecodeString("0fd3dbec9730101bff92acc820befc34")
|
||
|
hash, err := Sum(bytes.NewBuffer(testString))
|
||
|
c.Assert(err, IsNil)
|
||
|
c.Assert(bytes.Equal(expectedHash, hash), Equals, true)
|
||
|
}
|