diff options
author | Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com> | 2017-10-03 18:03:29 +0530 |
---|---|---|
committer | Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com> | 2017-10-03 18:03:29 +0530 |
commit | 454224381bea66a7d479391ab3611d167fedc5b6 (patch) | |
tree | f4c3db39a4c6193864dcdafcca6a7c5145c4f552 /src | |
parent | 0d2325ef2e024bd50f92f6af98999634f588cba6 (diff) |
Improve UT for swagger sdk
MSB-82
Change-Id: Ic9ac178ff910a5fd8ad7ccb81e3bd4e874d3cc5b
Signed-off-by: Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>
Diffstat (limited to 'src')
5 files changed, 72 insertions, 2 deletions
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"); } } } |