2021-11-16 20:38:49 +00:00
|
|
|
//go:build pam
|
2021-01-28 18:08:11 +00:00
|
|
|
// +build pam
|
|
|
|
|
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
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 05:27:09 +00:00
|
|
|
assert.EqualError(t, err, "Authentication failure")
|
2021-01-28 18:08:11 +00:00
|
|
|
assert.Len(t, result, 0)
|
|
|
|
}
|