aboutsummaryrefslogtreecommitdiff
path: root/tests/sha1
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2018-07-10 09:20:25 +0200
committerKaren Arutyunov <karen@codesynthesis.com>2018-07-10 14:58:50 +0300
commit16b63f8cdf5b488ab2f4b0e029478b01a2d6b8a8 (patch)
tree78509ede9ae2652e8c82f01ec91b35eba3c3c7e4 /tests/sha1
parent681ca375fd5af01501a91a78214ab7a26ad67ac7 (diff)
Add support for hashing ifdstream
Diffstat (limited to 'tests/sha1')
-rw-r--r--tests/sha1/driver.cxx38
1 files changed, 34 insertions, 4 deletions
diff --git a/tests/sha1/driver.cxx b/tests/sha1/driver.cxx
index 5d53faa..92a8443 100644
--- a/tests/sha1/driver.cxx
+++ b/tests/sha1/driver.cxx
@@ -6,7 +6,7 @@
#ifndef __cpp_lib_modules
#include <string>
-#include <iostream>
+#include <cstddef> // size_t
#endif
// Other includes.
@@ -14,11 +14,16 @@
#ifdef __cpp_modules
#ifdef __cpp_lib_modules
import std.core;
-import std.io;
#endif
import butl.sha1;
+import butl.path;
+import butl.fdstream;
+import butl.filesystem;
#else
#include <libbutl/sha1.mxx>
+#include <libbutl/path.mxx>
+#include <libbutl/fdstream.mxx>
+#include <libbutl/filesystem.mxx> // auto_rmfile
#endif
using namespace std;
@@ -37,8 +42,32 @@ main ()
"40bd001563085fc35165329ea1ff5c5ecbdbbeef");
{
+ string s;
+ for (size_t i (0); i < 1024; ++i)
+ s += "0123456789";
+
+ path p (path::temp_path ("butl-sha1"));
+
+ auto_rmfile pr; // Always remove the file after the stream is closed.
+ ofdstream os (p);
+ pr = auto_rmfile (p);
+
+ os << s;
+ os.close ();
+
+ ifdstream is (p);
+
+ assert (string (sha1 (is).string ()) ==
+ sha1 (s.c_str (), s.size ()).string ());
+
+ assert (is.eof ());
+ is.close ();
+ }
+
+ {
sha1 h ("123");
- assert (string (h.string ()) == "cc320164df1a2130045a28f08d3b88bc5bbcc43a");
+ assert (string (h.string ()) ==
+ "cc320164df1a2130045a28f08d3b88bc5bbcc43a");
assert (h.abbreviated_string (10) == "cc320164df");
assert (h.abbreviated_string (41) == h.string ());
@@ -53,6 +82,7 @@ main ()
auto& b (h.binary ());
assert (b[0] == 0x58 && b[19] == 0xfd);
- assert (string (h.string ()) == "58c596bafad8d007952934af1db9abc5401d4dfd");
+ assert (string (h.string ()) ==
+ "58c596bafad8d007952934af1db9abc5401d4dfd");
}
}