This commit is contained in:
PREETI BANSAL 2019-10-31 11:17:16 +05:30
Родитель 9d310e41a3
Коммит eb10cf5d0a
1 изменённых файлов: 11 добавлений и 0 удалений

Просмотреть файл

@ -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")
}
}