mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-27 05:27:21 +00:00
Merge pull request #61218 from hanxiaoshuai/clean0315
Automatic merge from submit-queue (batch tested with PRs 60519, 61099, 61218, 61166, 61714). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. remove unused code authenticator/password/allow **What this PR does / why we need it**: remove unused code authenticator/password/allow **Which issue(s) this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close the issue(s) when PR gets merged)*: Fixes # **Special notes for your reviewer**: **Release note**: ```release-note NONE ```
This commit is contained in:
commit
c14767dba1
@ -22,7 +22,6 @@ filegroup(
|
|||||||
name = "all-srcs",
|
name = "all-srcs",
|
||||||
srcs = [
|
srcs = [
|
||||||
":package-srcs",
|
":package-srcs",
|
||||||
"//staging/src/k8s.io/apiserver/plugin/pkg/authenticator/password/allow:all-srcs",
|
|
||||||
"//staging/src/k8s.io/apiserver/plugin/pkg/authenticator/password/passwordfile:all-srcs",
|
"//staging/src/k8s.io/apiserver/plugin/pkg/authenticator/password/passwordfile:all-srcs",
|
||||||
],
|
],
|
||||||
tags = ["automanaged"],
|
tags = ["automanaged"],
|
||||||
|
@ -1,36 +0,0 @@
|
|||||||
package(default_visibility = ["//visibility:public"])
|
|
||||||
|
|
||||||
load(
|
|
||||||
"@io_bazel_rules_go//go:def.bzl",
|
|
||||||
"go_library",
|
|
||||||
"go_test",
|
|
||||||
)
|
|
||||||
|
|
||||||
go_test(
|
|
||||||
name = "go_default_test",
|
|
||||||
srcs = ["allow_test.go"],
|
|
||||||
embed = [":go_default_library"],
|
|
||||||
)
|
|
||||||
|
|
||||||
go_library(
|
|
||||||
name = "go_default_library",
|
|
||||||
srcs = ["allow.go"],
|
|
||||||
importpath = "k8s.io/apiserver/plugin/pkg/authenticator/password/allow",
|
|
||||||
deps = [
|
|
||||||
"//vendor/k8s.io/apiserver/pkg/authentication/authenticator:go_default_library",
|
|
||||||
"//vendor/k8s.io/apiserver/pkg/authentication/user:go_default_library",
|
|
||||||
],
|
|
||||||
)
|
|
||||||
|
|
||||||
filegroup(
|
|
||||||
name = "package-srcs",
|
|
||||||
srcs = glob(["**"]),
|
|
||||||
tags = ["automanaged"],
|
|
||||||
visibility = ["//visibility:private"],
|
|
||||||
)
|
|
||||||
|
|
||||||
filegroup(
|
|
||||||
name = "all-srcs",
|
|
||||||
srcs = [":package-srcs"],
|
|
||||||
tags = ["automanaged"],
|
|
||||||
)
|
|
@ -1,38 +0,0 @@
|
|||||||
/*
|
|
||||||
Copyright 2014 The Kubernetes Authors.
|
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
you may not use this file except in compliance with the License.
|
|
||||||
You may obtain a copy of the License at
|
|
||||||
|
|
||||||
http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
|
|
||||||
Unless required by applicable law or agreed to in writing, software
|
|
||||||
distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
See the License for the specific language governing permissions and
|
|
||||||
limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package allow
|
|
||||||
|
|
||||||
import (
|
|
||||||
"k8s.io/apiserver/pkg/authentication/authenticator"
|
|
||||||
"k8s.io/apiserver/pkg/authentication/user"
|
|
||||||
)
|
|
||||||
|
|
||||||
type allowAuthenticator struct{}
|
|
||||||
|
|
||||||
// NewAllow returns a password authenticator that allows any non-empty username
|
|
||||||
func NewAllow() authenticator.Password {
|
|
||||||
return allowAuthenticator{}
|
|
||||||
}
|
|
||||||
|
|
||||||
// AuthenticatePassword implements authenticator.Password to allow any non-empty username,
|
|
||||||
// using the specified username as the name and UID
|
|
||||||
func (allowAuthenticator) AuthenticatePassword(username, password string) (user.Info, bool, error) {
|
|
||||||
if username == "" {
|
|
||||||
return nil, false, nil
|
|
||||||
}
|
|
||||||
return &user.DefaultInfo{Name: username, UID: username}, true, nil
|
|
||||||
}
|
|
@ -1,47 +0,0 @@
|
|||||||
/*
|
|
||||||
Copyright 2014 The Kubernetes Authors.
|
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
you may not use this file except in compliance with the License.
|
|
||||||
You may obtain a copy of the License at
|
|
||||||
|
|
||||||
http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
|
|
||||||
Unless required by applicable law or agreed to in writing, software
|
|
||||||
distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
See the License for the specific language governing permissions and
|
|
||||||
limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package allow
|
|
||||||
|
|
||||||
import "testing"
|
|
||||||
|
|
||||||
func TestAllowEmpty(t *testing.T) {
|
|
||||||
allow := NewAllow()
|
|
||||||
user, ok, err := allow.AuthenticatePassword("", "")
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("Unexpected error: %v", err)
|
|
||||||
}
|
|
||||||
if ok {
|
|
||||||
t.Fatalf("Unexpected success")
|
|
||||||
}
|
|
||||||
if user != nil {
|
|
||||||
t.Fatalf("Unexpected user: %v", user)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestAllowPresent(t *testing.T) {
|
|
||||||
allow := NewAllow()
|
|
||||||
user, ok, err := allow.AuthenticatePassword("myuser", "")
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("Unexpected error: %v", err)
|
|
||||||
}
|
|
||||||
if !ok {
|
|
||||||
t.Fatalf("Unexpected failure")
|
|
||||||
}
|
|
||||||
if user.GetName() != "myuser" || user.GetUID() != "myuser" {
|
|
||||||
t.Fatalf("Unexpected user name or uid: %v", user)
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user