2021-08-24 18:47:09 +02:00
|
|
|
//go:build pam
|
2021-01-28 19:08:11 +01: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 07:27:09 +02:00
|
|
|
assert.EqualError(t, err, "Authentication failure")
|
2021-01-28 19:08:11 +01:00
|
|
|
assert.Len(t, result, 0)
|
|
|
|
}
|