detectors/feature: consistent naming and godoc

This commit is contained in:
Jimmy Zelinskie 2016-11-11 15:14:37 -05:00
parent 1d5a9ddd3c
commit e4b5930f77
3 changed files with 58 additions and 50 deletions

View File

@ -22,30 +22,30 @@ import (
"github.com/coreos/clair/worker/detectors/feature" "github.com/coreos/clair/worker/detectors/feature"
) )
var dpkgPackagesTests = []feature.FeatureVersionTest{ func TestDpkgFeatureDetection(t *testing.T) {
// Test an Ubuntu dpkg status file testData := []feature.TestData{
{ // Test an Ubuntu dpkg status file
FeatureVersions: []database.FeatureVersion{ {
// Two packages from this source are installed, it should only appear one time FeatureVersions: []database.FeatureVersion{
{ // Two packages from this source are installed, it should only appear one time
Feature: database.Feature{Name: "pam"}, {
Version: types.NewVersionUnsafe("1.1.8-3.1ubuntu3"), Feature: database.Feature{Name: "pam"},
Version: types.NewVersionUnsafe("1.1.8-3.1ubuntu3"),
},
{
Feature: database.Feature{Name: "makedev"}, // The source name and the package name are equals
Version: types.NewVersionUnsafe("2.3.1-93ubuntu1"), // The version comes from the "Version:" line
},
{
Feature: database.Feature{Name: "gcc-5"},
Version: types.NewVersionUnsafe("5.1.1-12ubuntu1"), // The version comes from the "Source:" line
},
}, },
{ Data: map[string][]byte{
Feature: database.Feature{Name: "makedev"}, // The source name and the package name are equals "var/lib/dpkg/status": feature.LoadFileForTest("dpkg/testdata/status"),
Version: types.NewVersionUnsafe("2.3.1-93ubuntu1"), // The version comes from the "Version:" line
},
{
Feature: database.Feature{Name: "gcc-5"},
Version: types.NewVersionUnsafe("5.1.1-12ubuntu1"), // The version comes from the "Source:" line
}, },
}, },
Data: map[string][]byte{ }
"var/lib/dpkg/status": feature.LoadFileForTest("dpkg/testdata/status"),
},
},
}
func TestDpkgFeaturesDetector(t *testing.T) { feature.TestDetector(t, &DpkgFeaturesDetector{}, testData)
feature.TestFeaturesDetector(t, &DpkgFeaturesDetector{}, dpkgPackagesTests)
} }

View File

@ -22,28 +22,28 @@ import (
"github.com/coreos/clair/worker/detectors/feature" "github.com/coreos/clair/worker/detectors/feature"
) )
var rpmPackagesTests = []feature.FeatureVersionTest{ func TestRpmFeatureDetection(t *testing.T) {
// Test a CentOS 7 RPM database testData := []feature.TestData{
// Memo: Use the following command on a RPM-based system to shrink a database: rpm -qa --qf "%{NAME}\n" |tail -n +3| xargs rpm -e --justdb // Test a CentOS 7 RPM database
{ // Memo: Use the following command on a RPM-based system to shrink a database: rpm -qa --qf "%{NAME}\n" |tail -n +3| xargs rpm -e --justdb
FeatureVersions: []database.FeatureVersion{ {
// Two packages from this source are installed, it should only appear once FeatureVersions: []database.FeatureVersion{
{ // Two packages from this source are installed, it should only appear once
Feature: database.Feature{Name: "centos-release"}, {
Version: types.NewVersionUnsafe("7-1.1503.el7.centos.2.8"), Feature: database.Feature{Name: "centos-release"},
Version: types.NewVersionUnsafe("7-1.1503.el7.centos.2.8"),
},
// Two packages from this source are installed, it should only appear once
{
Feature: database.Feature{Name: "filesystem"},
Version: types.NewVersionUnsafe("3.2-18.el7"),
},
}, },
// Two packages from this source are installed, it should only appear once Data: map[string][]byte{
{ "var/lib/rpm/Packages": feature.LoadFileForTest("rpm/testdata/Packages"),
Feature: database.Feature{Name: "filesystem"},
Version: types.NewVersionUnsafe("3.2-18.el7"),
}, },
}, },
Data: map[string][]byte{ }
"var/lib/rpm/Packages": feature.LoadFileForTest("rpm/testdata/Packages"),
},
},
}
func TestRpmFeaturesDetector(t *testing.T) { feature.TestDetector(t, &RpmFeaturesDetector{}, testData)
feature.TestFeaturesDetector(t, &RpmFeaturesDetector{}, rpmPackagesTests)
} }

View File

@ -1,4 +1,4 @@
// Copyright 2015 clair authors // Copyright 2016 clair authors
// //
// Licensed under the Apache License, Version 2.0 (the "License"); // Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License. // you may not use this file except in compliance with the License.
@ -12,6 +12,8 @@
// See the License for the specific language governing permissions and // See the License for the specific language governing permissions and
// limitations under the License. // limitations under the License.
// Package feature implements utilities common to implementations of
// FeatureDetector.
package feature package feature
import ( import (
@ -25,22 +27,28 @@ import (
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
) )
type FeatureVersionTest struct { // TestData represents the data used to test an implementation of
FeatureVersions []database.FeatureVersion // FeatureDetector.
type TestData struct {
Data map[string][]byte Data map[string][]byte
FeatureVersions []database.FeatureVersion
} }
// LoadFileForTest can be used in order to obtain the []byte contents of a file
// that is meant to be used for test data.
func LoadFileForTest(name string) []byte { func LoadFileForTest(name string) []byte {
_, filename, _, _ := runtime.Caller(0) _, filename, _, _ := runtime.Caller(0)
d, _ := ioutil.ReadFile(filepath.Join(filepath.Dir(filename)) + "/" + name) d, _ := ioutil.ReadFile(filepath.Join(filepath.Dir(filename)) + "/" + name)
return d return d
} }
func TestFeaturesDetector(t *testing.T, detector detectors.FeaturesDetector, tests []FeatureVersionTest) { // TestDetector runs a detector on each provided instance of TestData and
for _, test := range tests { // asserts the ouput to be equal to the expected output.
featureVersions, err := detector.Detect(test.Data) func TestDetector(t *testing.T, detector detectors.FeaturesDetector, testData []TestData) {
if assert.Nil(t, err) && assert.Len(t, featureVersions, len(test.FeatureVersions)) { for _, td := range testData {
for _, expectedFeatureVersion := range test.FeatureVersions { featureVersions, err := detector.Detect(td.Data)
if assert.Nil(t, err) && assert.Len(t, featureVersions, len(td.FeatureVersions)) {
for _, expectedFeatureVersion := range td.FeatureVersions {
assert.Contains(t, featureVersions, expectedFeatureVersion) assert.Contains(t, featureVersions, expectedFeatureVersion)
} }
} }