2024-04-29 17:03:48 +01:00
|
|
|
// Copyright (c) Tailscale Inc & AUTHORS
|
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
|
2024-09-08 22:57:29 +03:00
|
|
|
package kubeclient
|
2024-04-29 17:03:48 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"net"
|
2024-09-08 21:06:07 +03:00
|
|
|
|
2024-09-08 22:57:29 +03:00
|
|
|
"tailscale.com/kube/kubeapi"
|
2024-04-29 17:03:48 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
var _ Client = &FakeClient{}
|
|
|
|
|
|
|
|
type FakeClient struct {
|
2024-09-08 21:06:07 +03:00
|
|
|
GetSecretImpl func(context.Context, string) (*kubeapi.Secret, error)
|
2024-04-29 17:03:48 +01:00
|
|
|
CheckSecretPermissionsImpl func(ctx context.Context, name string) (bool, bool, error)
|
2025-02-27 14:41:05 -08:00
|
|
|
CreateSecretImpl func(context.Context, *kubeapi.Secret) error
|
|
|
|
UpdateSecretImpl func(context.Context, *kubeapi.Secret) error
|
|
|
|
JSONPatchResourceImpl func(context.Context, string, string, []JSONPatch) error
|
2025-03-18 15:09:22 +00:00
|
|
|
ListSecretsImpl func(context.Context, map[string]string) (*kubeapi.SecretList, error)
|
2024-04-29 17:03:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (fc *FakeClient) CheckSecretPermissions(ctx context.Context, name string) (bool, bool, error) {
|
|
|
|
return fc.CheckSecretPermissionsImpl(ctx, name)
|
|
|
|
}
|
2024-09-08 21:06:07 +03:00
|
|
|
func (fc *FakeClient) GetSecret(ctx context.Context, name string) (*kubeapi.Secret, error) {
|
2024-04-29 17:03:48 +01:00
|
|
|
return fc.GetSecretImpl(ctx, name)
|
|
|
|
}
|
|
|
|
func (fc *FakeClient) SetURL(_ string) {}
|
|
|
|
func (fc *FakeClient) SetDialer(dialer func(ctx context.Context, network, addr string) (net.Conn, error)) {
|
|
|
|
}
|
2024-09-08 21:06:07 +03:00
|
|
|
func (fc *FakeClient) StrategicMergePatchSecret(context.Context, string, *kubeapi.Secret, string) error {
|
2024-04-29 17:03:48 +01:00
|
|
|
return nil
|
|
|
|
}
|
2024-11-19 13:07:19 +00:00
|
|
|
func (fc *FakeClient) Event(context.Context, string, string, string) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2025-02-27 14:41:05 -08:00
|
|
|
func (fc *FakeClient) JSONPatchResource(ctx context.Context, resource, name string, patches []JSONPatch) error {
|
|
|
|
return fc.JSONPatchResourceImpl(ctx, resource, name, patches)
|
|
|
|
}
|
|
|
|
func (fc *FakeClient) UpdateSecret(ctx context.Context, secret *kubeapi.Secret) error {
|
|
|
|
return fc.UpdateSecretImpl(ctx, secret)
|
|
|
|
}
|
|
|
|
func (fc *FakeClient) CreateSecret(ctx context.Context, secret *kubeapi.Secret) error {
|
|
|
|
return fc.CreateSecretImpl(ctx, secret)
|
2024-04-29 17:03:48 +01:00
|
|
|
}
|
2025-03-18 15:09:22 +00:00
|
|
|
func (fc *FakeClient) ListSecrets(ctx context.Context, selector map[string]string) (*kubeapi.SecretList, error) {
|
|
|
|
if fc.ListSecretsImpl != nil {
|
|
|
|
return fc.ListSecretsImpl(ctx, selector)
|
|
|
|
}
|
|
|
|
return nil, nil
|
|
|
|
}
|