Files

20 lines
369 B
Go
Raw Permalink Normal View History

2021-08-24 11:47:09 -05:00
//go:build pam
2021-01-28 19:08:11 +01:00
// Copyright 2021 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2021-01-28 19:08:11 +01: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 07:27:09 +02:00
assert.EqualError(t, err, "Authentication failure")
2025-01-09 14:09:11 +01:00
assert.Empty(t, result)
2021-01-28 19:08:11 +01:00
}