-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
117 additions
and
26 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
66 changes: 66 additions & 0 deletions
66
openapi-cli/src/test/java/io/ballerina/openapi/generators/openapi/NegativeResponseTests.java
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,66 @@ | ||
/* | ||
* 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. | ||
*/ | ||
package io.ballerina.openapi.generators.openapi; | ||
|
||
import io.ballerina.openapi.cmd.OASContractGenerator; | ||
import org.testng.Assert; | ||
import org.testng.annotations.AfterMethod; | ||
import org.testng.annotations.AfterTest; | ||
import org.testng.annotations.BeforeMethod; | ||
import org.testng.annotations.Test; | ||
|
||
import java.io.IOException; | ||
import java.nio.file.Files; | ||
import java.nio.file.Path; | ||
import java.nio.file.Paths; | ||
|
||
/** | ||
* This test class is covering the negative unit tests for return type scenarios. | ||
*/ | ||
public class NegativeResponseTests { | ||
private static final Path RES_DIR = Paths.get("src/test/resources/ballerina-to-openapi").toAbsolutePath(); | ||
private Path tempDir; | ||
|
||
@BeforeMethod | ||
public void setup() throws IOException { | ||
this.tempDir = Files.createTempDirectory("bal-to-openapi-test-out-" + System.nanoTime()); | ||
} | ||
|
||
@Test(description = "When the resource has nil type return") | ||
public void testNilReturnType() { | ||
Path ballerinaFilePath = RES_DIR.resolve("response/negative/nil_return_type.bal"); | ||
OASContractGenerator openApiConverterUtils = new OASContractGenerator(); | ||
openApiConverterUtils.generateOAS3DefinitionsAllService(ballerinaFilePath, this.tempDir, null | ||
, false); | ||
//TODO: Uncomment after merging this PR https://github.com/ballerina-platform/openapi-tools/pull/1370. | ||
// Assert.assertFalse(openApiConverterUtils.getErrors().isEmpty()); | ||
Assert.assertFalse(Files.exists(tempDir.resolve("payloadV_openapi.yaml"))); | ||
} | ||
|
||
|
||
@AfterMethod | ||
public void cleanUp() { | ||
TestUtils.deleteDirectory(this.tempDir); | ||
} | ||
|
||
@AfterTest | ||
public void clean() { | ||
System.setErr(null); | ||
System.setOut(null); | ||
} | ||
} |
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
11 changes: 11 additions & 0 deletions
11
openapi-cli/src/test/resources/ballerina-to-openapi/response/negative/nil_return_type.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,11 @@ | ||
import ballerina/http; | ||
|
||
service /payloadV on new http:Listener(9090) { | ||
|
||
resource function get path_with_request_body(@http:Payload string payload) { | ||
}; | ||
|
||
resource function head path_with_request_body(@http:Payload string payload) { | ||
}; | ||
|
||
} |
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