]> www.wagner.pp.ru Git - openssl-gost/engine.git/commitdiff
modernize ci:
authorIlya Shipitsin <chipitsine@gmail.com>
Wed, 27 Jun 2018 12:38:39 +0000 (17:38 +0500)
committerGleb Fotengauer-Malinovskiy <glebfm@altlinux.org>
Tue, 21 Aug 2018 16:37:10 +0000 (19:37 +0300)
(*) convert 'openssl ciphers | grep ...' into Test:More syntax

(cherry picked from commit abf1f76739e89aeee17988a55c2375324f66c380)

test/00-engine.t

index a3d1037857028d5a10f65b73f74ec354f70ac271..9104ab0df709e6214aa6c54363729a0d1e41514b 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl
-use Test::More tests => 5;
+use Test::More tests => 7;
 use Cwd 'abs_path';
 
 # prepare data for 
@@ -80,5 +80,9 @@ is(`openssl dgst -engine $engine -md_gost94 testdata.dat`,
 "md_gost94(testdata.dat)= f7fc6d16a6a5c12ac4f7d320e0fd0d8354908699125e09727a4ef929122b1cae\n",
 "compute digest with both config and explicit engine param");
 
+like(`openssl ciphers`, qr|GOST2001-GOST89-GOST89|, 'display GOST2001-GOST89-GOST89 cipher');
+
+like(`openssl ciphers`, qr|GOST2012-GOST8912-GOST8912|, 'display GOST2012-GOST8912-GOST8912 cipher');
+
 unlink('testdata.dat');
 unlink('test.cnf');