Skip to content

Commit

Permalink
Merge pull request #42 from SimonRichardson/os-from-series-with-base-os
Browse files Browse the repository at this point in the history
#42

The following function helps provide a hint to help when normalising the
OS from a series. For OSes like centos that just have a number after it,
then the series of centos7 is fine, but fails when someone wants to just
pass 7. Unless we know the potential os as a hint (centos) then we can
then correctly normalise the value.
  • Loading branch information
jujubot authored Mar 17, 2022
2 parents 17f068e + 937ae35 commit 4e38196
Show file tree
Hide file tree
Showing 2 changed files with 83 additions and 0 deletions.
28 changes: 28 additions & 0 deletions series/supportedseries.go
Original file line number Diff line number Diff line change
Expand Up @@ -450,6 +450,34 @@ func getOSFromSeries(series string) (os.OSType, error) {
return os.Unknown, errors.Trace(unknownOSForSeriesError(series))
}

// GetOSFromSeriesWithBaseOS will return the operating system based
// on the series and optional os base that is passed to it
func GetOSFromSeriesWithBaseOS(series, baseOS string) (os.OSType, error) {
if series == "" {
return os.Unknown, errors.NotValidf("series %q", series)
}
osType, err := getOSFromSeriesWithBaseOS(series, baseOS)
if err == nil {
return osType, nil
}

seriesVersionsMutex.Lock()
defer seriesVersionsMutex.Unlock()

updateSeriesVersionsOnce()
return getOSFromSeriesWithBaseOS(series, baseOS)
}

func getOSFromSeriesWithBaseOS(series, baseOS string) (os.OSType, error) {
switch strings.ToLower(baseOS) {
case "centos":
if _, ok := centosSeries["centos"+series]; ok {
return os.CentOS, nil
}
}
return getOSFromSeries(series)
}

var (
seriesVersionsMutex sync.Mutex
)
Expand Down
55 changes: 55 additions & 0 deletions series/supportedseries_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,61 @@ func (s *supportedSeriesSuite) TestUnknownOSFromSeries(c *gc.C) {
c.Assert(err, gc.ErrorMatches, `unknown OS for series: "Xuanhuaceratops"`)
}

var getOSFromSeriesBaseOSTests = []struct {
series, baseOS string
want os.OSType
err string
}{{
series: "precise",
baseOS: "ubuntu",
want: os.Ubuntu,
}, {
series: "win2012r2",
baseOS: "windows",
want: os.Windows,
}, {
series: "win2016nano",
baseOS: "windows",
want: os.Windows,
}, {
series: "mountainlion",
baseOS: "osx",
want: os.OSX,
}, {
series: "7",
baseOS: "centos",
want: os.CentOS,
}, {
series: "opensuseleap",
baseOS: "opensuse",
want: os.OpenSUSE,
}, {
series: "kubernetes",
baseOS: "kubernetes",
want: os.Kubernetes,
}, {
series: "genericlinux",
baseOS: "genericlinux",
want: os.GenericLinux,
}, {
series: "",
err: "series \"\" not valid",
},
}

func (s *supportedSeriesSuite) TestGetOSFromSeriesWithBaseOS(c *gc.C) {
for _, t := range getOSFromSeriesBaseOSTests {
c.Logf("series %q os %q", t.series, t.baseOS)
got, err := series.GetOSFromSeriesWithBaseOS(t.series, t.baseOS)
if t.err != "" {
c.Assert(err, gc.ErrorMatches, t.err)
} else {
c.Check(err, jc.ErrorIsNil)
c.Assert(got, gc.Equals, t.want)
}
}
}

func setSeriesTestData() {
series.SetSeriesVersions(map[string]string{
"trusty": "14.04",
Expand Down

0 comments on commit 4e38196

Please sign in to comment.