diff --git a/plugin/pkg/admission/admit/admission_test.go b/plugin/pkg/admission/admit/admission_test.go new file mode 100644 index 00000000000..f73725ce9bd --- /dev/null +++ b/plugin/pkg/admission/admit/admission_test.go @@ -0,0 +1,29 @@ +/* +Copyright 2014 Google Inc. All rights reserved. + +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 admit + +import ( + "testing" +) + +func TestAdmission(t *testing.T) { + handler := NewAlwaysAdmit() + err := handler.Admit(nil) + if err != nil { + t.Errorf("Unexpected error returned from admission handler") + } +} diff --git a/plugin/pkg/admission/deny/admission_test.go b/plugin/pkg/admission/deny/admission_test.go new file mode 100644 index 00000000000..d931ad2bffc --- /dev/null +++ b/plugin/pkg/admission/deny/admission_test.go @@ -0,0 +1,31 @@ +/* +Copyright 2014 Google Inc. All rights reserved. + +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 deny + +import ( + "testing" + + "github.com/GoogleCloudPlatform/kubernetes/pkg/admission" +) + +func TestAdmission(t *testing.T) { + handler := NewAlwaysDeny() + err := handler.Admit(admission.NewAttributesRecord(nil, nil, "foo", "Pod", "ignored")) + if err == nil { + t.Errorf("Expected error returned from admission handler") + } +}