blob: 5b5050b44e2e83f5302c82cbb64160b8848feecd [file] [log] [blame]
// Copyright 2017 The LUCI Authors.
//
// 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.
package common
import (
"testing"
api "go.chromium.org/luci/cipd/api/cipd/v1"
. "github.com/smartystreets/goconvey/convey"
. "go.chromium.org/luci/common/testing/assertions"
)
func TestNewHash(t *testing.T) {
t.Parallel()
Convey("Unspecified", t, func() {
_, err := NewHash(api.HashAlgo_HASH_ALGO_UNSPECIFIED)
So(err, ShouldErrLike, "not specified")
})
Convey("Unknown", t, func() {
_, err := NewHash(12345)
So(err, ShouldErrLike, "unsupported")
})
Convey("SHA1", t, func() {
algo, err := NewHash(api.HashAlgo_SHA1)
So(err, ShouldBeNil)
So(algo, ShouldNotBeNil)
So(ObjectRefFromHash(algo), ShouldResembleProto, &api.ObjectRef{
HashAlgo: api.HashAlgo_SHA1,
HexDigest: "da39a3ee5e6b4b0d3255bfef95601890afd80709",
})
})
Convey("SHA256", t, func() {
algo, err := NewHash(api.HashAlgo_SHA256)
So(err, ShouldBeNil)
So(algo, ShouldNotBeNil)
So(ObjectRefFromHash(algo), ShouldResembleProto, &api.ObjectRef{
HashAlgo: api.HashAlgo_SHA256,
HexDigest: "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
})
})
}