mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-04-26 03:24:31 +02:00
- Massive replacement of changing `code.gitea.io/gitea` to `forgejo.org`. - Resolves forgejo/discussions#258 Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/7337 Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org> Reviewed-by: Michael Kriese <michael.kriese@gmx.de> Reviewed-by: Beowulf <beowulf@beocode.eu> Reviewed-by: Panagiotis "Ivory" Vasilopoulos <git@n0toose.net> Co-authored-by: Gusted <postmaster@gusted.xyz> Co-committed-by: Gusted <postmaster@gusted.xyz>
27 lines
706 B
Go
27 lines
706 B
Go
// Copyright 2021 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package ldap_test
|
|
|
|
import (
|
|
auth_model "forgejo.org/models/auth"
|
|
"forgejo.org/services/auth"
|
|
"forgejo.org/services/auth/source/ldap"
|
|
)
|
|
|
|
// This test file exists to assert that our Source exposes the interfaces that we expect
|
|
// It tightly binds the interfaces and implementation without breaking go import cycles
|
|
|
|
type sourceInterface interface {
|
|
auth.PasswordAuthenticator
|
|
auth.SynchronizableSource
|
|
auth.LocalTwoFASkipper
|
|
auth_model.SSHKeyProvider
|
|
auth_model.Config
|
|
auth_model.SkipVerifiable
|
|
auth_model.HasTLSer
|
|
auth_model.UseTLSer
|
|
auth_model.SourceSettable
|
|
}
|
|
|
|
var _ (sourceInterface) = &ldap.Source{}
|