From 454224381bea66a7d479391ab3611d167fedc5b6 Mon Sep 17 00:00:00 2001 From: Kanagaraj Manickam k00365106 Date: Tue, 3 Oct 2017 18:03:29 +0530 Subject: Improve UT for swagger sdk MSB-82 Change-Id: Ic9ac178ff910a5fd8ad7ccb81e3bd4e874d3cc5b Signed-off-by: Kanagaraj Manickam k00365106 --- .../onap/swagger/bean/BeanConfigPostProcessor.java | 2 +- src/main/resources/swagger.json | 1 + .../org/onap/swagger/bean/SwaggerBeanTest.java | 36 ++++++++++++++++++++++ .../onap/swagger/service/rest/SwaggerRoaTest.java | 33 ++++++++++++++++++++ .../java/org/onap/swagger/util/SwaggerTest.java | 2 +- 5 files changed, 72 insertions(+), 2 deletions(-) create mode 100644 src/main/resources/swagger.json create mode 100644 src/test/java/org/onap/swagger/bean/SwaggerBeanTest.java create mode 100644 src/test/java/org/onap/swagger/service/rest/SwaggerRoaTest.java diff --git a/src/main/java/org/onap/swagger/bean/BeanConfigPostProcessor.java b/src/main/java/org/onap/swagger/bean/BeanConfigPostProcessor.java index cc107bb..c3ddd84 100644 --- a/src/main/java/org/onap/swagger/bean/BeanConfigPostProcessor.java +++ b/src/main/java/org/onap/swagger/bean/BeanConfigPostProcessor.java @@ -33,7 +33,7 @@ import org.springframework.beans.factory.config.BeanPostProcessor; */ public class BeanConfigPostProcessor implements BeanPostProcessor { - private static final String SWAGGER_BEAN_ID = "swaggerConfig"; + public static final String SWAGGER_BEAN_ID = "swaggerConfig"; private static final Logger LOGGER = LoggerFactory.getLogger(BeanConfigPostProcessor.class); diff --git a/src/main/resources/swagger.json b/src/main/resources/swagger.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/src/main/resources/swagger.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/test/java/org/onap/swagger/bean/SwaggerBeanTest.java b/src/test/java/org/onap/swagger/bean/SwaggerBeanTest.java new file mode 100644 index 0000000..e4acb24 --- /dev/null +++ b/src/test/java/org/onap/swagger/bean/SwaggerBeanTest.java @@ -0,0 +1,36 @@ +/* + * Copyright 2017 Huawei Technologies Co., Ltd. + * + * 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 org.onap.swagger.bean; + +import static org.junit.Assert.fail; + +import org.junit.Test; + +import io.swagger.jaxrs.config.BeanConfig; + +public class SwaggerBeanTest { + + @Test + public void test() { + try { + new BeanConfigPostProcessor().postProcessBeforeInitialization(new BeanConfig(), BeanConfigPostProcessor.SWAGGER_BEAN_ID); + new BeanConfigPostProcessor().postProcessAfterInitialization(new BeanConfig(), BeanConfigPostProcessor.SWAGGER_BEAN_ID); + } catch (Exception e) { + fail("failed to post/pre process bean"); + } + } +} diff --git a/src/test/java/org/onap/swagger/service/rest/SwaggerRoaTest.java b/src/test/java/org/onap/swagger/service/rest/SwaggerRoaTest.java new file mode 100644 index 0000000..e44411e --- /dev/null +++ b/src/test/java/org/onap/swagger/service/rest/SwaggerRoaTest.java @@ -0,0 +1,33 @@ +/* + * Copyright 2017 Huawei Technologies Co., Ltd. + * + * 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 org.onap.swagger.service.rest; + +import static org.junit.Assert.fail; + +import org.junit.Test; + +public class SwaggerRoaTest { + + @Test + public void test() { + try { + new SwaggerRoa().apidoc(); + } catch (Exception e) { + fail("failed to read swagger.json"); + } + } +} diff --git a/src/test/java/org/onap/swagger/util/SwaggerTest.java b/src/test/java/org/onap/swagger/util/SwaggerTest.java index cc11e33..bcb01e0 100644 --- a/src/test/java/org/onap/swagger/util/SwaggerTest.java +++ b/src/test/java/org/onap/swagger/util/SwaggerTest.java @@ -27,7 +27,7 @@ public class SwaggerTest { try { AdapterInfoUtil.getInstance(); } catch (Exception e) { - fail("failed to read swagger.json"); + fail("failed to read swagger.properties"); } } } -- cgit 1.2.3-korg