2021-08-25 00:47:09 +08:00
|
|
|
//go:build pam
|
2021-01-29 02:08:11 +08:00
|
|
|
|
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-28 02:20:29 +08:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-01-29 02:08:11 +08:00
|
|
|
|
|
|
|
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 13:27:09 +08:00
|
|
|
assert.EqualError(t, err, "Authentication failure")
|
2024-12-15 18:41:29 +08:00
|
|
|
assert.Len(t, result)
|
2021-01-29 02:08:11 +08:00
|
|
|
}
|