mirror of
https://github.com/ncarlier/webhookd.git
synced 2025-04-06 12:59:19 +00:00
16 lines
518 B
Go
16 lines
518 B
Go
package auth
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/ncarlier/webhookd/pkg/assert"
|
|
)
|
|
|
|
func TestValidateCredentials(t *testing.T) {
|
|
htpasswdFile, err := NewHtpasswdFromFile("test.htpasswd")
|
|
assert.Nil(t, err, ".htpasswd file should be loaded")
|
|
assert.NotNil(t, htpasswdFile, ".htpasswd file should be loaded")
|
|
assert.Equal(t, true, htpasswdFile.validateCredentials("foo", "bar"), "credentials should be valid")
|
|
assert.Equal(t, false, htpasswdFile.validateCredentials("foo", "bir"), "credentials should not be valid")
|
|
}
|