]> ruderich.org/simon Gitweb - tlsproxy/tlsproxy.git/commitdiff
tests/tests-*.sh: Remove unnecessary calls to tlsproxy-add.
authorSimon Ruderich <simon@ruderich.org>
Sat, 17 Sep 2011 20:30:50 +0000 (22:30 +0200)
committerSimon Ruderich <simon@ruderich.org>
Sat, 17 Sep 2011 20:30:50 +0000 (22:30 +0200)
tests/tests-normal.sh
tests/tests-passthrough.sh

index b059fac21fde741f744cf2ed2420f5fec2025c31..314d798c0b88be60d73a2ea26fca90c9a2a2046d 100755 (executable)
@@ -48,17 +48,14 @@ test_invalid_certificate
 # Create the proxy certificate.
 $srcdir/../src/tlsproxy-add localhost $srcdir/server.pem \
     >/dev/null 2>/dev/null
-rm -f certificate-localhost-server.pem
 
 echo missing server certificate
+mv certificate-localhost-server.pem .pem
 client localhost 4712 invalid || abort
+mv .pem certificate-localhost-server.pem
 test_proxy_successful
 test_invalid_certificate
 
-# Create the proxy and server certificate.
-$srcdir/../src/tlsproxy-add localhost $srcdir/server.pem \
-    >/dev/null 2>/dev/null
-
 echo normal connection
 # 'localhost' is the CN of tlsproxy's certificate.
 client localhost 4712 localhost || abort
@@ -88,17 +85,14 @@ test_invalid_certificate
 # Create the proxy certificate.
 $srcdir/../src/tlsproxy-add localhost $srcdir/server.pem \
     >/dev/null 2>/dev/null
-rm -f certificate-localhost-server.pem
 
 echo mitm missing server certificate
+mv certificate-localhost-server.pem .pem
 client localhost 4712 invalid || abort
+mv .pem certificate-localhost-server.pem
 test_proxy_successful
 test_invalid_certificate
 
-# Create the proxy and server certificate.
-$srcdir/../src/tlsproxy-add localhost $srcdir/server.pem \
-    >/dev/null 2>/dev/null
-
 echo mitm normal connection
 client localhost 4712 invalid || abort
 test_proxy_successful
index 4c6d63c4fc01089330dfdf5ebceffde8fcb1a202..0407d411c9e41852a1360b7e93cac74cf02ca03a 100755 (executable)
@@ -48,17 +48,14 @@ test_invalid_certificate
 # Create the proxy certificate.
 $srcdir/../src/tlsproxy-add localhost $srcdir/server.pem \
     >/dev/null 2>/dev/null
-rm -f certificate-localhost-server.pem
 
 echo missing server certificate
+mv certificate-localhost-server.pem .pem
 client localhost 4712 'test server' || abort
+mv .pem certificate-localhost-server.pem
 test_proxy_successful
 test_invalid_certificate
 
-# Create the proxy and server certificate.
-$srcdir/../src/tlsproxy-add localhost $srcdir/server.pem \
-    >/dev/null 2>/dev/null
-
 echo normal connection
 # 'localhost' is the CN of tlsproxy's certificate.
 client localhost 4712 localhost || abort
@@ -88,17 +85,14 @@ test_invalid_certificate
 # Create the proxy certificate.
 $srcdir/../src/tlsproxy-add localhost $srcdir/server.pem \
     >/dev/null 2>/dev/null
-rm -f certificate-localhost-server.pem
 
 echo mitm missing server certificate
+mv certificate-localhost-server.pem .pem
 client localhost 4712 'test server bad' || abort
+mv .pem certificate-localhost-server.pem
 test_proxy_successful
 test_invalid_certificate
 
-# Create the proxy and server certificate.
-$srcdir/../src/tlsproxy-add localhost $srcdir/server.pem \
-    >/dev/null 2>/dev/null
-
 echo mitm normal connection
 client localhost 4712 invalid || abort
 test_proxy_successful