Adding test case
This commit is contained in:
Родитель
9d310e41a3
Коммит
eb10cf5d0a
11
hmac_test.go
11
hmac_test.go
|
@ -29,4 +29,15 @@ func TestValidateHashShouldReturnFalse(t *testing.T) {
|
|||
t.Errorf("Hmac validation failed")
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
func TestValidateHashShouldReturnFalseIfSecretIsNotSet(t *testing.T) {
|
||||
|
||||
os.Setenv("VSTS_SECRET", "")
|
||||
str := ComputeHash("teststring")
|
||||
|
||||
check := ValidateHash("teststring",str)
|
||||
if (check == true){
|
||||
t.Errorf("Hmac validation failed")
|
||||
}
|
||||
}
|
Загрузка…
Ссылка в новой задаче