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