aboutsummaryrefslogtreecommitdiffstats
path: root/test/mocks
diff options
context:
space:
mode:
authorTomasz Golabek <tomasz.golabek@nokia.com>2020-03-20 11:49:04 +0100
committerTomasz Golabek <tomasz.golabek@nokia.com>2020-03-20 12:58:30 +0100
commite0fe449c16bd0781840e1608e72373ac1d2cc18a (patch)
tree903528d5b77ed838e8c9244803fcae2cc2444830 /test/mocks
parenta48752e10bd5dfa7588fe33fb7d6bff40f137731 (diff)
Set of fixes for pnfsimulator startup
* v0.7.7 of netopeer used * SSLAuthenticationHelper marked as primary bean to avoid duplicated-bean exception * spring props properly mounted into container Change-Id: Ib6bb32f32a7f60786901ffbf592b1a26b5cb1cbf Issue-ID: INT-1320 Signed-off-by: Tomasz Golabek <tomasz.golabek@nokia.com>
Diffstat (limited to 'test/mocks')
-rw-r--r--test/mocks/pnfsimulator/netconfsimulator/Dockerfile_netopeer2
-rw-r--r--test/mocks/pnfsimulator/pnfsimulator/docker-compose.yml1
-rw-r--r--test/mocks/pnfsimulator/pnfsimulator/src/main/java/org/onap/pnfsimulator/simulator/client/utils/ssl/SSLAuthenticationHelper.java2
3 files changed, 4 insertions, 1 deletions
diff --git a/test/mocks/pnfsimulator/netconfsimulator/Dockerfile_netopeer b/test/mocks/pnfsimulator/netconfsimulator/Dockerfile_netopeer
index 876b78631..9fe56e19d 100644
--- a/test/mocks/pnfsimulator/netconfsimulator/Dockerfile_netopeer
+++ b/test/mocks/pnfsimulator/netconfsimulator/Dockerfile_netopeer
@@ -1,4 +1,4 @@
-FROM sysrepo/sysrepo-netopeer2:latest
+FROM sysrepo/sysrepo-netopeer2:v0.7.7
ADD apt.conf /etc/apt/apt.conf
RUN apt-get update && apt-get install -y python3 python3-pip python-pip && pip3 install flask flask_restful kafka-python && pip install kafka-python
RUN cd /opt/dev/sysrepo && cmake -DGEN_PYTHON_VERSION=2 -DREPOSITORY_LOC:PATH=/etc/sysrepo . && make install
diff --git a/test/mocks/pnfsimulator/pnfsimulator/docker-compose.yml b/test/mocks/pnfsimulator/pnfsimulator/docker-compose.yml
index 3ec8931a4..23797fed3 100644
--- a/test/mocks/pnfsimulator/pnfsimulator/docker-compose.yml
+++ b/test/mocks/pnfsimulator/pnfsimulator/docker-compose.yml
@@ -31,6 +31,7 @@ services:
- ./logs:/var/log
- ./templates:/app/templates
- ./store:/app/store
+ - ./src/main/resources/application.properties:/app/application.properties
restart: on-failure
depends_on:
- mongo
diff --git a/test/mocks/pnfsimulator/pnfsimulator/src/main/java/org/onap/pnfsimulator/simulator/client/utils/ssl/SSLAuthenticationHelper.java b/test/mocks/pnfsimulator/pnfsimulator/src/main/java/org/onap/pnfsimulator/simulator/client/utils/ssl/SSLAuthenticationHelper.java
index 40b8ab30b..eda17ef27 100644
--- a/test/mocks/pnfsimulator/pnfsimulator/src/main/java/org/onap/pnfsimulator/simulator/client/utils/ssl/SSLAuthenticationHelper.java
+++ b/test/mocks/pnfsimulator/pnfsimulator/src/main/java/org/onap/pnfsimulator/simulator/client/utils/ssl/SSLAuthenticationHelper.java
@@ -22,11 +22,13 @@ package org.onap.pnfsimulator.simulator.client.utils.ssl;
import java.io.Serializable;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.cloud.context.config.annotation.RefreshScope;
+import org.springframework.context.annotation.Primary;
import org.springframework.stereotype.Component;
@Component
@ConfigurationProperties(prefix = "ssl")
@RefreshScope
+@Primary
public class SSLAuthenticationHelper implements Serializable {
private boolean clientCertificateEnabled;