blob: 55f91dd04ab171cfe866ff9f65002f712aaf576f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
// file : tests/openssl/driver.cxx -*- C++ -*-
// license : MIT; see accompanying LICENSE file
#include <vector>
#include <iostream>
#include <iterator>
#include <system_error>
#include <libbutl/path.hxx>
#include <libbutl/utility.hxx> // operator<<(ostream, exception)
#include <libbutl/openssl.hxx>
#include <libbutl/fdstream.hxx> // nullfd
#undef NDEBUG
#include <cassert>
using namespace std;
using namespace butl;
// Usage: argv[0]
//
int
main (int, const char* argv[])
try
{
using butl::optional;
// Test openssl rand command.
//
{
openssl os (nullfd, path ("-"), 2, path ("openssl"), "rand", 128);
vector<char> r (os.in.read_binary ());
os.in.close ();
assert (os.wait () && r.size () == 128);
}
// Test openssl info retrieval.
//
{
optional<openssl_info> v (openssl::info (2, path ("openssl")));
assert (v);
}
return 0;
}
catch (const system_error& e)
{
cerr << argv[0] << ": " << e << endl;
return 1;
}
|