diff options
author | Quoc Nghia Nguyen <quocnghia.nguyen@orange.com> | 2018-05-16 17:19:55 +0200 |
---|---|---|
committer | Quoc-Nghia Nguyen <quocnghia.nguyen@orange.com> | 2018-07-11 17:00:52 +0200 |
commit | d44d6c6ea00241f586ee7fb3b173821d98decbab (patch) | |
tree | 813bffa66526f6ee67bba506bcf6f035b7d45127 /src/test | |
parent | eab71985d99a7eaf2003ac97245fef2c9bc1ad87 (diff) |
Register with MSB after being launched
Change-Id: I96c84f8b8e0757d68461a0e631d6ed432f64ecad
Issue-ID: EXTAPI-90
Signed-off-by: Quoc-Nghia Nguyen <quocnghia.nguyen@orange.com>
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/java/org/onap/nbi/apis/TestConfig.java | 29 | ||||
-rw-r--r-- | src/test/resources/application.properties | 13 |
2 files changed, 42 insertions, 0 deletions
diff --git a/src/test/java/org/onap/nbi/apis/TestConfig.java b/src/test/java/org/onap/nbi/apis/TestConfig.java new file mode 100644 index 0000000..a3afa1c --- /dev/null +++ b/src/test/java/org/onap/nbi/apis/TestConfig.java @@ -0,0 +1,29 @@ +/** + * Copyright (c) 2018 Orange + * <p> + * 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 + * <p> + * http://www.apache.org/licenses/LICENSE-2.0 + * <p> + * 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.nbi.apis; + +import org.onap.nbi.ServiceRegisterRunner; +import org.springframework.boot.autoconfigure.SpringBootApplication; +import org.springframework.context.annotation.ComponentScan; +import org.springframework.context.annotation.FilterType; + +@SpringBootApplication +// Exclude MSB register runner when running tests +@ComponentScan(excludeFilters = @ComponentScan.Filter(type = FilterType.ASSIGNABLE_TYPE, classes = ServiceRegisterRunner.class)) +public class TestConfig { +} + diff --git a/src/test/resources/application.properties b/src/test/resources/application.properties index 1361d42..a297fbf 100644 --- a/src/test/resources/application.properties +++ b/src/test/resources/application.properties @@ -49,6 +49,19 @@ so.owning.entity.id=6b5b6b70-4e9a-4f6f-8b7b-cbd7cf990c6e so.owning.entity.name=OE-generic so.project.name=Project-generic +# MSB +msb.discovery.host=msb_discovery +msb.discovery.port=10081 +msb.service.host= +msb.service.port=${server.port} +msb.service.name=nbi +msb.service.version=v1 +msb.service.url=${server.contextPath} +msb.service.custom_path= +msb.service.protocol=REST +msb.service.visual_range=1 +msb.service.enable_ssl=false + # H2 spring.datasource.url=jdbc:h2:mem:~/db;DB_CLOSE_ON_EXIT=false spring.datasource.username=sa |