-
Notifications
You must be signed in to change notification settings - Fork 45
Liveness check with updated dependencies #1429
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
gayaldassanayake
merged 16 commits into
ballerina-platform:master
from
gayaldassanayake:cdc-isalive-dep-fix
Feb 18, 2026
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
b0fe0a3
[Automated] Update the native jar versions
ayeshLK 3a876db
Update listener configuration construction logic
ayeshLK 0b66553
Add test cases for liveness check
ayeshLK 25f88ab
Update CDC version
ayeshLK 5ebaf93
[Automated] Update the native jar versions
ayeshLK c84cee2
[Automated] Update the native jar versions
ayeshLK 439ed64
Update ballerina/log version
ayeshLK 509ba77
Add transitive dependencies to gradle build
gayaldassanayake 5219023
[Automated] Update the native jar versions
gayaldassanayake fb52e2a
[Automated] Update the native jar versions
gayaldassanayake e99dbe1
Bump dependencies
gayaldassanayake 6c0744e
Fix port issue
gayaldassanayake 94974d2
[Automated] Update the native jar versions
gayaldassanayake 4b7572f
Update dependencies to latest in U12
gayaldassanayake b25fbfd
Update dependencies
gayaldassanayake 3c29dd8
Fix port
gayaldassanayake 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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,103 @@ | ||
| // Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com). | ||
| // | ||
| // WSO2 LLC. licenses this file to you 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. | ||
|
|
||
| import ballerina/lang.runtime; | ||
| import ballerina/test; | ||
| import ballerinax/cdc; | ||
|
|
||
| @test:Config { | ||
| groups: ["liveness"] | ||
| } | ||
| function testLivenessBeforeListenerStart() returns error? { | ||
| CdcListener mysqlListener = new ({ | ||
| database: { | ||
| username: cdcUsername, | ||
| password: cdcPassword, | ||
| port: cdcPort | ||
| }, | ||
| options: { | ||
| snapshotMode: cdc:NO_DATA | ||
| } | ||
coderabbitai[bot] marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| }); | ||
| check mysqlListener.attach(testService); | ||
| boolean liveness = check cdc:isLive(mysqlListener); | ||
| test:assertFalse(liveness, "Liveness check passes even before listener starts"); | ||
| } | ||
|
|
||
| @test:Config { | ||
| groups: ["liveness"] | ||
| } | ||
| function testLivenessWithStartedListener() returns error? { | ||
| CdcListener mysqlListener = new ({ | ||
| database: { | ||
| username: cdcUsername, | ||
| password: cdcPassword, | ||
| port: cdcPort | ||
| }, | ||
| options: { | ||
| snapshotMode: cdc:NO_DATA | ||
| } | ||
| }); | ||
| check mysqlListener.attach(testService); | ||
| check mysqlListener.'start(); | ||
| boolean liveness = check cdc:isLive(mysqlListener); | ||
| test:assertTrue(liveness, "Liveness fails for a started listener"); | ||
| check mysqlListener.gracefulStop(); | ||
| } | ||
|
|
||
| @test:Config { | ||
| groups: ["liveness"] | ||
| } | ||
| function testLivenessAfterListenerStop() returns error? { | ||
| CdcListener mysqlListener = new ({ | ||
| database: { | ||
| username: cdcUsername, | ||
| password: cdcPassword, | ||
| port: cdcPort | ||
| }, | ||
| options: { | ||
| snapshotMode: cdc:NO_DATA | ||
| } | ||
| }); | ||
| check mysqlListener.attach(testService); | ||
| check mysqlListener.'start(); | ||
| check mysqlListener.gracefulStop(); | ||
| boolean liveness = check cdc:isLive(mysqlListener); | ||
| test:assertFalse(liveness, "Liveness check passes after the listener has stopped"); | ||
| } | ||
|
|
||
| @test:Config { | ||
| groups: ["liveness"] | ||
| } | ||
| function testLivenessWithoutReceivingEvents() returns error? { | ||
| CdcListener mysqlListener = new ({ | ||
| database: { | ||
| username: cdcUsername, | ||
| password: cdcPassword, | ||
| port: cdcPort | ||
| }, | ||
| options: { | ||
| snapshotMode: cdc:NO_DATA | ||
| }, | ||
| livenessInterval: 5.0 | ||
| }); | ||
| check mysqlListener.attach(testService); | ||
| check mysqlListener.'start(); | ||
| runtime:sleep(10); | ||
| boolean liveness = check cdc:isLive(mysqlListener); | ||
| test:assertFalse(liveness, "Liveness check passes even after not receiving events within the liveness interval"); | ||
| check mysqlListener.gracefulStop(); | ||
| } | ||
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.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Version mismatch between declared version and JAR path.
The
versionfield is"1.16.2"but thepathreferencesmysql-native-1.16.2-SNAPSHOT.jar. This inconsistency could cause confusion during dependency resolution or release processes.Consider aligning these values:
"1.16.2-SNAPSHOT"🤖 Prompt for AI Agents