summaryrefslogtreecommitdiffstats
path: root/test/csit/plans/dcaegen2/hv-ves-testsuites/ssl/Makefile
diff options
context:
space:
mode:
authorFilip Krzywka <filip.krzywka@nokia.com>2018-08-30 12:27:00 +0200
committerFilip Krzywka <filip.krzywka@nokia.com>2018-08-31 07:08:13 +0200
commitf15077f640d033c1eb50d5496b27b6d6739d7e76 (patch)
treea2891aecfa28c83eb7f78edd7f4768cd7f8f067e /test/csit/plans/dcaegen2/hv-ves-testsuites/ssl/Makefile
parentc3a8defbdc6192c6a8164d2cb1d2c75ae54f7cfd (diff)
Move HV-VES CSIT testsuites
This is hopefully temporary alignment with other projects made to prevent jenkins job builder from creating unnecessary jobs for dcaegen2-prh-testsuites and dcaegen2-ves-collector-testsuites. Change-Id: I57a9e63fc93bce398c614ffb5ed9a2c2f939b501 Issue-ID: DCAEGEN2-687 Signed-off-by: Filip Krzywka <filip.krzywka@nokia.com>
Diffstat (limited to 'test/csit/plans/dcaegen2/hv-ves-testsuites/ssl/Makefile')
-rw-r--r--test/csit/plans/dcaegen2/hv-ves-testsuites/ssl/Makefile32
1 files changed, 0 insertions, 32 deletions
diff --git a/test/csit/plans/dcaegen2/hv-ves-testsuites/ssl/Makefile b/test/csit/plans/dcaegen2/hv-ves-testsuites/ssl/Makefile
deleted file mode 100644
index 5fddc6b1d..000000000
--- a/test/csit/plans/dcaegen2/hv-ves-testsuites/ssl/Makefile
+++ /dev/null
@@ -1,32 +0,0 @@
-FILE=sample
-CA_PASSWD=onap
-SUBJ=/C=PL/ST=DL/L=Wroclaw/O=Nokia/OU=MANO
-CA=trust
-
-sign: $(FILE).crt
-
-clean:
- rm -f *.crt *.key *.srl *.csr
-
-generate-ca-certificate: $(CA).crt
-
-generate-private-key: $(FILE).key
-
-create-public-key: $(FILE).pub
-
-create-sign-request: $(FILE).csr
-
-$(CA).crt:
- openssl req -new -x509 -keyout $(CA).key -out $(CA).crt -days 365 -passout pass:$(CA_PASSWD) -subj "$(SUBJ)"
-
-$(FILE).key:
- openssl genpkey -algorithm RSA -out $(FILE).key -pkeyopt rsa_keygen_bits:2048
-
-$(FILE).pub: $(FILE).key
- openssl x509 -req -days 360 -in client.csr -CA $(CA).crt -CAkey $(CA).key -CAcreateserial -out client.crt
-
-$(FILE).csr: $(FILE).key
- openssl req -new -sha256 -key $(FILE).key -out $(FILE).csr -subj "$(SUBJ)"
-
-$(FILE).crt: $(CA).crt $(FILE).csr
- openssl x509 -req -days 360 -in $(FILE).csr -CA $(CA).crt -CAkey $(CA).key -out $(FILE).crt -CAcreateserial -passin pass:$(CA_PASSWD) \ No newline at end of file