2021-08-24 22:17:09 +05:30
|
|
|
//go:build pam
|
2021-01-28 23:38:11 +05:30
|
|
|
|
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2021-01-28 23:38:11 +05:30
|
|
|
|
|
|
|
package pam
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestPamAuth(t *testing.T) {
|
|
|
|
result, err := Auth("gitea", "user1", "false-pwd")
|
|
|
|
assert.Error(t, err)
|
2021-06-07 10:57:09 +05:30
|
|
|
assert.EqualError(t, err, "Authentication failure")
|
2021-01-28 23:38:11 +05:30
|
|
|
assert.Len(t, result, 0)
|
|
|
|
}
|