2014-12-08 06:20:35 -05:00
|
|
|
package sha1
|
|
|
|
|
|
|
|
import (
|
2014-12-20 19:01:27 -05:00
|
|
|
"bytes"
|
|
|
|
"encoding/hex"
|
2014-12-08 06:20:35 -05:00
|
|
|
"testing"
|
2014-12-20 19:01:27 -05:00
|
|
|
|
|
|
|
. "gopkg.in/check.v1"
|
2014-12-08 06:20:35 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
func Test(t *testing.T) { TestingT(t) }
|
|
|
|
|
|
|
|
type MySuite struct{}
|
|
|
|
|
|
|
|
var _ = Suite(&MySuite{})
|
|
|
|
|
2014-12-20 19:01:27 -05:00
|
|
|
func (s *MySuite) TestStreamingSha1(c *C) {
|
|
|
|
testString := []byte("Test string")
|
|
|
|
expectedHash, _ := hex.DecodeString("18af819125b70879d36378431c4e8d9bfa6a2599")
|
|
|
|
hash, err := Sum(bytes.NewBuffer(testString))
|
|
|
|
c.Assert(err, IsNil)
|
|
|
|
c.Assert(bytes.Equal(expectedHash, hash), Equals, true)
|
|
|
|
}
|