From af0f97dcef7da78eb9e6e7805e76bf4014e08a94 Mon Sep 17 00:00:00 2001 From: Balaji Subramaniam Date: Tue, 25 Oct 2016 14:57:40 -0700 Subject: [PATCH] Added fake feature source for testing purposes. --- main.go | 1 + sources.go | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) diff --git a/main.go b/main.go index 8e93c3185..7226dd993 100644 --- a/main.go +++ b/main.go @@ -94,6 +94,7 @@ func main() { cpuidSource{}, rdtSource{}, pstateSource{}, + fakeSource{}, } sources := []FeatureSource{} diff --git a/sources.go b/sources.go index 7ccd330a9..7fe3d40cc 100644 --- a/sources.go +++ b/sources.go @@ -102,3 +102,19 @@ func (s pstateSource) Discover() ([]string, error) { return features, nil } + +//////////////////////////////////////////////////////////////////////////////// +// Fake Source (used only for testing) + +// Implements main.FeatureSource. +type fakeSource struct{} + +func (s fakeSource) Name() string { return "fake" } +func (s fakeSource) Discover() ([]string, error) { + features := []string{} + + // Adding three fake features. + features = append(features, "fakefeature1", "fakefeature2", "fakefeature3") + + return features, nil +}