From 26282a6a6331cc0f8d6d8e239a335507de715682 Mon Sep 17 00:00:00 2001 From: Siddharth Ravikumar Date: Wed, 21 Jan 2015 10:43:43 -0500 Subject: combox/file.py: defined hash_file function. hash_file function returns the SHA512 hash of the file's content. The test for the hash_file function is at tests/file_test.py --- tests/file_test.py | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'tests/file_test.py') diff --git a/tests/file_test.py b/tests/file_test.py index 558bcd7..4787406 100644 --- a/tests/file_test.py +++ b/tests/file_test.py @@ -18,13 +18,15 @@ import yaml +from hashlib import sha512 from glob import glob from nose.tools import * from os import path, remove from combox.config import get_nodedirs from combox.file import (split_data, glue_data, write_file, - read_file, write_shards, read_shards) + read_file, write_shards, read_shards, + hash_file) CONFIG_DIR = path.join('tests', 'test-config') @@ -82,3 +84,13 @@ and check if they're the same as the orginal file. f_content_glued = glue_data(f_shards) assert f_content == f_content_glued + + +def test_hashing(): + """ + Tests the hashing function - hash_file + """ + fhash = hash_file(TEST_FILE) + fcontent = read_file(TEST_FILE) + + assert fhash == sha512(fcontent).hexdigest() -- cgit v1.2.3