diff options
author | vempo <vitaliy.emporopulo@amdocs.com> | 2018-08-12 13:20:17 +0300 |
---|---|---|
committer | vempo <vitaliy.emporopulo@amdocs.com> | 2018-08-12 13:22:13 +0300 |
commit | 05c29ff57350959826f93516f95ed7fe9b98180e (patch) | |
tree | e71f5c15ae2243b1a84812412413d70d2b4fa96f /openecomp-be | |
parent | 56e6373970b8c3ded54d6261fb72d7ddf55ad1d9 (diff) |
Removed VNF repo configuration test
The test should be part of the configuration module.
Change-Id: Ie38ee59c1a4c836777d0ab7056cf7e107090a655
Issue-ID: SDC-1596
Signed-off-by: vempo <vitaliy.emporopulo@amdocs.com>
Diffstat (limited to 'openecomp-be')
2 files changed, 0 insertions, 11 deletions
diff --git a/openecomp-be/api/openecomp-sdc-rest-webapp/vendor-software-products-rest/vnf-repository-rest-services/src/test/java/org/openecomp/sdcrests/vsp/rest/services/VnfPackageRepositoryImplTest.java b/openecomp-be/api/openecomp-sdc-rest-webapp/vendor-software-products-rest/vnf-repository-rest-services/src/test/java/org/openecomp/sdcrests/vsp/rest/services/VnfPackageRepositoryImplTest.java index 0f790036da..25aba9be04 100644 --- a/openecomp-be/api/openecomp-sdc-rest-webapp/vendor-software-products-rest/vnf-repository-rest-services/src/test/java/org/openecomp/sdcrests/vsp/rest/services/VnfPackageRepositoryImplTest.java +++ b/openecomp-be/api/openecomp-sdc-rest-webapp/vendor-software-products-rest/vnf-repository-rest-services/src/test/java/org/openecomp/sdcrests/vsp/rest/services/VnfPackageRepositoryImplTest.java @@ -81,13 +81,6 @@ public class VnfPackageRepositoryImplTest { } @Test - public void configurationLoadedFromFile() { - final String prefix = "http://10.57.30.20:1111/"; - assertEquals(prefix + "download-vnf-31", new VnfPackageRepositoryImpl.FileConfiguration().getDownloadUri()); - assertEquals(prefix + "get-vnf-13", new VnfPackageRepositoryImpl.FileConfiguration().getGetUri()); - } - - @Test public void listVnfsReturnsInternalServerErrorWhenRemoteClientError() { stubFor(get(GET_PATH).willReturn(aResponse().withStatus(403).withBody("Forbidden"))); VnfPackageRepositoryImpl repository = new VnfPackageRepositoryImpl(config); diff --git a/openecomp-be/api/openecomp-sdc-rest-webapp/vendor-software-products-rest/vnf-repository-rest-services/src/test/resources/config-vnfrepo.yaml b/openecomp-be/api/openecomp-sdc-rest-webapp/vendor-software-products-rest/vnf-repository-rest-services/src/test/resources/config-vnfrepo.yaml deleted file mode 100644 index 8057053072..0000000000 --- a/openecomp-be/api/openecomp-sdc-rest-webapp/vendor-software-products-rest/vnf-repository-rest-services/src/test/resources/config-vnfrepo.yaml +++ /dev/null @@ -1,4 +0,0 @@ -vnfRepoPort: 1111 -vnfRepoHost: 10.57.30.20 -getVnfUri: get-vnf-13 -downloadVnfUri: download-vnf-31
\ No newline at end of file |