// file : tests/openssl/driver.cxx -*- C++ -*- // license : MIT; see accompanying LICENSE file #include #include #include #include #include #include // operator<<(ostream, exception) #include #include // nullfd #undef NDEBUG #include 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 r (os.in.read_binary ()); os.in.close (); assert (os.wait () && r.size () == 128); } // Test openssl info retrieval. // { optional v (openssl::info (2, path ("openssl"))); assert (v); } return 0; } catch (const system_error& e) { cerr << argv[0] << ": " << e << endl; return 1; }