]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
Added simple OpenSSL crypto engine tests.
authorDan Fandrich <dan@coneharvesters.com>
Tue, 16 Jan 2007 18:34:58 +0000 (18:34 +0000)
committerDan Fandrich <dan@coneharvesters.com>
Tue, 16 Jan 2007 18:34:58 +0000 (18:34 +0000)
tests/data/Makefile.am
tests/data/test307 [new file with mode: 0644]
tests/data/test308 [new file with mode: 0644]

index fcb6482ec69d5dc346ec55f3917aca0d765dfe09..37078bafae04a05940b96bfb42dfd129d46e6893 100644 (file)
@@ -37,4 +37,4 @@ EXTRA_DIST = test1 test108 test117 test127 test20 test27 test34 test46           \
  test274 test275 test524 test525 test276 test277 test526 test527 test528   \
  test530 DISABLED test278 test279 test531 test280 test529 test532 test533  \
  test534 test535 test281 test537 test282 test283 test284 test538 test285   \
- test286
+ test286 test307 test308
diff --git a/tests/data/test307 b/tests/data/test307
new file mode 100644 (file)
index 0000000..186b994
--- /dev/null
@@ -0,0 +1,43 @@
+#
+# Server-side
+<reply>
+<data>
+HTTP/1.1 200 OK
+Date: Tue, 16 Jan 2007 18:00:14 GMT
+Server: test-server/fake
+Content-Length: 7
+
+MooMoo
+</data>
+</reply>
+
+#
+# Client-side
+<client>
+<features>
+OpenSSL
+</features>
+<server>
+https
+</server>
+ <name>
+simple HTTPS GET with openssl engine
+ </name>
+ <command>
+--engine openssl -k https://%HOSTIP:%HTTPSPORT/307
+</command>
+</client>
+
+#
+# Verify data after the test has been "shot"
+<verify>
+<strip>
+^User-Agent:.*
+</strip>
+<protocol>
+GET /307 HTTP/1.1\r
+Host: 127.0.0.1:%HTTPSPORT\r
+Accept: */*\r
+\r
+</protocol>
+</verify>
diff --git a/tests/data/test308 b/tests/data/test308
new file mode 100644 (file)
index 0000000..d9ae1fd
--- /dev/null
@@ -0,0 +1,24 @@
+#
+# Client-side
+<client>
+<features>
+OpenSSL
+</features>
+<server>
+https
+</server>
+ <name>
+simple HTTPS GET with invaild crypto engine
+ </name>
+ <command>
+--engine invalid-crypto-engine-xyzzy -k https://%HOSTIP:%HTTPSPORT/308
+</command>
+</client>
+
+#
+# Verify data after the test has been "shot"
+<verify>
+<errorcode>
+53
+</errorcode>
+</verify>