forked from datastax/csharp-driver
-
Notifications
You must be signed in to change notification settings - Fork 7
Fix server version matching logic on integration suite #22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
sylwiaszunejko
merged 4 commits into
scylladb:master
from
sylwiaszunejko:fix_server_version
May 15, 2025
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
de39d6d
Introduce BackendType.Scylla and fix logic to work with it
sylwiaszunejko 3453354
Fix version matching to match scylla if Cassandra version < 4.0.0
sylwiaszunejko 5d5ae33
Add TestScyllaVersion
sylwiaszunejko fc56844
Use ccm to get scylla version
dkropachev File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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
126 changes: 126 additions & 0 deletions
126
src/Cassandra.IntegrationTests/TestBase/TestScyllaVersion.cs
This file contains hidden or 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,126 @@ | ||
| using System; | ||
| using Cassandra.IntegrationTests.TestClusterManagement; | ||
| using NUnit.Framework; | ||
| using NUnit.Framework.Interfaces; | ||
|
|
||
| namespace Cassandra.IntegrationTests.TestBase | ||
| { | ||
| public class TestScyllaVersion : NUnitAttribute, IApplyToTest | ||
| { | ||
| public int Major { get; set; } | ||
|
|
||
| public int Minor { get; set; } | ||
|
|
||
| public int Build { get; set; } | ||
|
|
||
| public Comparison Comparison { get; set; } | ||
|
|
||
| public TestScyllaVersion(int major, int minor, Comparison comparison = Comparison.GreaterThanOrEqualsTo) | ||
| : this(major, minor, 0, comparison) | ||
| { | ||
|
|
||
| } | ||
|
|
||
| public TestScyllaVersion(int major, int minor, int build, Comparison comparison = Comparison.GreaterThanOrEqualsTo) | ||
| { | ||
| Major = major; | ||
| Minor = minor; | ||
| Build = build; | ||
| Comparison = comparison; | ||
| } | ||
|
|
||
| public void ApplyToTest(NUnit.Framework.Internal.Test test) | ||
| { | ||
| if (!Applies(out string msg)) | ||
| { | ||
| test.RunState = RunState.Ignored; | ||
| var message = msg; | ||
| test.Properties.Set("_SKIPREASON", message); | ||
| } | ||
| } | ||
|
|
||
| public bool Applies(out string msg) | ||
| { | ||
| var expectedVersion = new Version(Major, Minor, Build); | ||
| return TestScyllaVersion.VersionMatch(expectedVersion, Comparison, out msg); | ||
| } | ||
|
|
||
| public static bool VersionMatch(Version expectedVersion, Comparison comparison, out string message) | ||
| { | ||
| if (!TestClusterManager.IsScylla) | ||
| { | ||
| message = $"Test designed to run with Scylla {TestScyllaVersion.GetComparisonText(comparison)} v{expectedVersion}"; | ||
| return false; | ||
| } | ||
|
|
||
| var executingVersion = TestClusterManager.ScyllaVersion; | ||
| if (!TestScyllaVersion.VersionMatch(expectedVersion, executingVersion, comparison)) | ||
| { | ||
| message = | ||
| $"Test designed to run with Scylla {TestScyllaVersion.GetComparisonText(comparison)} v{expectedVersion} (executing {executingVersion})"; | ||
| return false; | ||
| } | ||
|
|
||
| message = null; | ||
| return true; | ||
| } | ||
|
|
||
| public static bool VersionMatch(Version expectedVersion, Version executingVersion, Comparison comparison) | ||
| { | ||
| expectedVersion = AdaptVersion(expectedVersion); | ||
| executingVersion = AdaptVersion(executingVersion); | ||
|
|
||
| var comparisonResult = (Comparison)executingVersion.CompareTo(expectedVersion); | ||
|
|
||
| if (comparisonResult >= Comparison.Equal && comparison == Comparison.GreaterThanOrEqualsTo) | ||
| { | ||
| return true; | ||
| } | ||
| return comparisonResult == comparison; | ||
| } | ||
|
|
||
| /// <summary> | ||
| /// Replace -1 (undefined) with 0 on the version string. | ||
| /// </summary> | ||
| private static Version AdaptVersion(Version v) | ||
| { | ||
| var minor = v.Minor; | ||
| if (minor < 0) | ||
| { | ||
| minor = 0; | ||
| } | ||
|
|
||
| var build = v.Build; | ||
| if (build < 0) | ||
| { | ||
| build = 0; | ||
| } | ||
|
|
||
| var revision = v.Revision; | ||
| if (revision < 0) | ||
| { | ||
| revision = 0; | ||
| } | ||
|
|
||
| return new Version(v.Major, minor, build, revision); | ||
| } | ||
|
|
||
| private static string GetComparisonText(Comparison comparison) | ||
| { | ||
| string result; | ||
| switch (comparison) | ||
| { | ||
| case Comparison.GreaterThanOrEqualsTo: | ||
| result = "greater than or equals to"; | ||
| break; | ||
| case Comparison.LessThan: | ||
| result = "lower than"; | ||
| break; | ||
| default: | ||
| result = "equals to"; | ||
| break; | ||
| } | ||
| return result; | ||
| } | ||
| } | ||
| } |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.