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