2016-11-09 20:51:28 +00:00
|
|
|
// Copyright 2016 clair authors
|
2015-11-13 19:11:28 +00:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2016-11-09 20:51:28 +00:00
|
|
|
// Package namespace implements utilities common to implementations of
|
|
|
|
// NamespaceDetector.
|
2015-12-28 20:03:29 +00:00
|
|
|
package namespace
|
2015-11-13 19:11:28 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2015-12-28 20:03:29 +00:00
|
|
|
"github.com/coreos/clair/database"
|
2015-11-13 19:11:28 +00:00
|
|
|
"github.com/coreos/clair/worker/detectors"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
2016-11-09 20:51:28 +00:00
|
|
|
// TestData represents the data used to test an implementation of
|
|
|
|
// NameSpaceDetector.
|
|
|
|
type TestData struct {
|
2015-12-28 20:03:29 +00:00
|
|
|
Data map[string][]byte
|
2016-11-09 20:51:28 +00:00
|
|
|
ExpectedNamespace *database.Namespace
|
2015-11-13 19:11:28 +00:00
|
|
|
}
|
|
|
|
|
2016-11-09 20:51:28 +00:00
|
|
|
// TestDetector runs a detector on each provided instance of TestData and
|
|
|
|
// asserts the output to be equal to the expected output.
|
|
|
|
func TestDetector(t *testing.T, detector detectors.NamespaceDetector, testData []TestData) {
|
|
|
|
for _, td := range testData {
|
|
|
|
detectedNamespace := detector.Detect(td.Data)
|
|
|
|
if detectedNamespace == nil {
|
|
|
|
assert.Equal(t, td.ExpectedNamespace, detectedNamespace)
|
|
|
|
} else {
|
|
|
|
assert.Equal(t, td.ExpectedNamespace.Name, detectedNamespace.Name)
|
|
|
|
}
|
2015-11-13 19:11:28 +00:00
|
|
|
}
|
|
|
|
}
|