-
Notifications
You must be signed in to change notification settings - Fork 758
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 #41856 from MaryamZi/fix-svc-remote-method-annot
Fix annotations for the `service remote function` attachment point
- Loading branch information
Showing
9 changed files
with
263 additions
and
11 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
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
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
56 changes: 56 additions & 0 deletions
56
...a-unit-test/src/test/resources/test-src/annotations/service_remote_method_annotations.bal
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,56 @@ | ||
// Copyright (c) 2023 WSO2 LLC. (http://www.wso2.org). | ||
// | ||
// 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/jballerina.java; | ||
|
||
type Rec record {| | ||
int increment; | ||
|}; | ||
|
||
public annotation Rec srma on service remote function; | ||
|
||
service class ServiceClass { | ||
@srma { | ||
increment: 1111 | ||
} | ||
remote function serviceRemoteFn() { | ||
|
||
} | ||
} | ||
|
||
function testServiceRemoteMethodAnnotations() returns error? { | ||
any annots = getRemoteMethodAnnotations(new ServiceClass(), "serviceRemoteFn", "srma"); | ||
assertTrue(annots is Rec); | ||
Rec rec = <Rec> annots; | ||
assertEquality({increment: 1111}, rec); | ||
} | ||
|
||
function getRemoteMethodAnnotations(service object {} obj, string methodName, string annotName) returns any = | ||
@java:Method { | ||
'class: "org/ballerinalang/nativeimpl/jvm/servicetests/ServiceValue" | ||
} external; | ||
|
||
function assertTrue(anydata actual) { | ||
assertEquality(true, actual); | ||
} | ||
|
||
function assertEquality(anydata expected, anydata actual) { | ||
if expected == actual { | ||
return; | ||
} | ||
|
||
panic error(string `expected ${expected.toBalString()}, found ${actual.toBalString()}`); | ||
} |