forked from scylladb/scylla-operator
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from ashangit/skip
Skip io-tuning if it has already been done
- Loading branch information
Showing
6 changed files
with
119 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/* | ||
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 v1 | ||
|
||
import ( | ||
"github.com/blang/semver" | ||
) | ||
|
||
var ( | ||
ScyllaVersionThatSupportsArgs = semver.MustParse("4.2.0") | ||
ScyllaVersionThatSupportsDisablingIOTuning = semver.MustParse("4.3.0") | ||
) | ||
|
||
// ScyllaVersion contains the version of a cluster with unkown version support | ||
type ScyllaVersion struct { | ||
version semver.Version | ||
unknown bool | ||
} | ||
|
||
func NewScyllaVersion(v string) ScyllaVersion { | ||
version, err := semver.Parse(v) | ||
if err != nil { | ||
return ScyllaVersion{unknown: true} | ||
} | ||
return ScyllaVersion{version: version, unknown: false} | ||
} | ||
|
||
// SupportFeatureUnsafe return true if a feature is supported (and always true if the version is unknown) | ||
func (sv ScyllaVersion) SupportFeatureUnsafe(featureVersion semver.Version) bool { | ||
return sv.unknown || sv.version.GTE(featureVersion) | ||
} | ||
|
||
// SupportFeatureSafe return true if a feature is supported (and always false if the version is unknown) | ||
func (sv ScyllaVersion) SupportFeatureSafe(featureVersion semver.Version) bool { | ||
return !sv.unknown && sv.version.GTE(featureVersion) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/* | ||
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 v1 | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/blang/semver" | ||
) | ||
|
||
func TestSupportFeature(t *testing.T) { | ||
recentVersion := NewScyllaVersion("99.0.0") | ||
oldVersion := NewScyllaVersion("0.0.0") | ||
badVersion := NewScyllaVersion("foobar") | ||
|
||
fakeFeature := semver.MustParse("4.2.0") | ||
|
||
if !recentVersion.SupportFeatureUnsafe(fakeFeature) { | ||
t.Errorf("Recent version should support a previous version") | ||
} | ||
if oldVersion.SupportFeatureUnsafe(fakeFeature) { | ||
t.Errorf("Old version should not support a future version") | ||
} | ||
if !badVersion.SupportFeatureUnsafe(fakeFeature) { | ||
t.Errorf("Unkown version should support any version when unsafe") | ||
} | ||
|
||
if !recentVersion.SupportFeatureSafe(fakeFeature) { | ||
t.Errorf("Recent version should support a previous version") | ||
} | ||
if oldVersion.SupportFeatureSafe(fakeFeature) { | ||
t.Errorf("Recent version should support a previous version") | ||
} | ||
if badVersion.SupportFeatureSafe(fakeFeature) { | ||
t.Errorf("Unkown version should not support any version when safe") | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters