k8s.io/apiserver@v0.31.1/plugin/pkg/audit/fake/fake.go (about)

     1  /*
     2  Copyright 2018 The Kubernetes Authors.
     3  
     4  Licensed under the Apache License, Version 2.0 (the "License");
     5  you may not use this file except in compliance with the License.
     6  You may obtain a copy of the License at
     7  
     8      http://www.apache.org/licenses/LICENSE-2.0
     9  
    10  Unless required by applicable law or agreed to in writing, software
    11  distributed under the License is distributed on an "AS IS" BASIS,
    12  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    13  See the License for the specific language governing permissions and
    14  limitations under the License.
    15  */
    16  
    17  package fake
    18  
    19  import (
    20  	auditinternal "k8s.io/apiserver/pkg/apis/audit"
    21  	"k8s.io/apiserver/pkg/audit"
    22  )
    23  
    24  var _ audit.Backend = &Backend{}
    25  
    26  // Backend is a fake audit backend for testing purposes.
    27  type Backend struct {
    28  	OnRequest func(events []*auditinternal.Event)
    29  }
    30  
    31  // Run does nothing.
    32  func (b *Backend) Run(stopCh <-chan struct{}) error {
    33  	return nil
    34  }
    35  
    36  // Shutdown does nothing.
    37  func (b *Backend) Shutdown() {
    38  	return
    39  }
    40  
    41  // ProcessEvents calls a callback on a batch, if present.
    42  func (b *Backend) ProcessEvents(ev ...*auditinternal.Event) bool {
    43  	if b.OnRequest != nil {
    44  		b.OnRequest(ev)
    45  	}
    46  	return true
    47  }
    48  
    49  func (b *Backend) String() string {
    50  	return ""
    51  }