2009-10-23 12:56:52 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Created By: Virgil Dupras
|
|
|
|
# Created On: 2009-10-23
|
2010-01-01 20:11:34 +00:00
|
|
|
# Copyright 2010 Hardcoded Software (http://www.hardcoded.net)
|
2009-10-23 12:56:52 +00:00
|
|
|
#
|
2010-09-30 10:17:41 +00:00
|
|
|
# This software is licensed under the "BSD" License as described in the "LICENSE" file,
|
2009-10-23 12:56:52 +00:00
|
|
|
# which should be included with this package. The terms are also available at
|
2010-09-30 10:17:41 +00:00
|
|
|
# http://www.hardcoded.net/licenses/bsd_license
|
2009-10-23 12:56:52 +00:00
|
|
|
|
|
|
|
import hashlib
|
|
|
|
|
2011-01-11 12:36:05 +00:00
|
|
|
from hscommon.path import Path
|
2011-01-05 10:11:21 +00:00
|
|
|
from hscommon.testutil import eq_
|
2009-12-30 10:37:57 +00:00
|
|
|
from core.fs import File
|
|
|
|
from core.tests.directories_test import create_fake_fs
|
2009-10-23 12:56:52 +00:00
|
|
|
|
|
|
|
from .. import fs
|
|
|
|
|
2011-01-05 10:11:21 +00:00
|
|
|
def test_size_aggregates_subfiles(tmpdir):
|
|
|
|
p = create_fake_fs(Path(str(tmpdir)))
|
|
|
|
b = fs.Bundle(p)
|
|
|
|
eq_(b.size, 12)
|
|
|
|
|
|
|
|
def test_md5_aggregate_subfiles_sorted(tmpdir):
|
|
|
|
#dir.allfiles can return child in any order. Thus, bundle.md5 must aggregate
|
|
|
|
#all files' md5 it contains, but it must make sure that it does so in the
|
|
|
|
#same order everytime.
|
|
|
|
p = create_fake_fs(Path(str(tmpdir)))
|
|
|
|
b = fs.Bundle(p)
|
|
|
|
md5s = File(p + ('dir1', 'file1.test')).md5
|
|
|
|
md5s += File(p + ('dir2', 'file2.test')).md5
|
|
|
|
md5s += File(p + ('dir3', 'file3.test')).md5
|
|
|
|
md5s += File(p + 'file1.test').md5
|
|
|
|
md5s += File(p + 'file2.test').md5
|
|
|
|
md5s += File(p + 'file3.test').md5
|
|
|
|
md5 = hashlib.md5(md5s)
|
|
|
|
eq_(b.md5, md5.digest())
|
|
|
|
|
|
|
|
def test_has_file_attrs(tmpdir):
|
|
|
|
#a Bundle must behave like a file, so it must have mtime attributes
|
|
|
|
b = fs.Bundle(Path(str(tmpdir)))
|
|
|
|
assert b.mtime > 0
|
|
|
|
eq_(b.extension, '')
|