Differences From Artifact [c459854e29]:
- File
tests/OFSHA1HashTests.m
— part of check-in
[dc0c6c34ab]
at
2019-02-17 22:44:23
on branch trunk
— tests: Only import ObjFW.h
This prevents forgetting to add an import to ObjFW.h, as the tests would
then not compile. (user: js, size: 1680) [annotate] [blame] [check-ins using]
To Artifact [8145ea23f0]:
- File tests/OFSHA1HashTests.m — part of check-in [b045cbb9c7] at 2019-03-25 00:21:30 on branch trunk — tests: Use dot syntax (user: js, size: 1672) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
33 34 35 36 37 38 39 | OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init]; OFSHA1Hash *sha1, *copy; OFFile *f = [OFFile fileWithPath: @"testfile.bin" mode: @"r"]; TEST(@"+[cryptoHash]", (sha1 = [OFSHA1Hash cryptoHash])) | | | | | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init];
OFSHA1Hash *sha1, *copy;
OFFile *f = [OFFile fileWithPath: @"testfile.bin"
mode: @"r"];
TEST(@"+[cryptoHash]", (sha1 = [OFSHA1Hash cryptoHash]))
while (!f.atEndOfStream) {
char buf[64];
size_t len = [f readIntoBuffer: buf
length: 64];
[sha1 updateWithBuffer: buf
length: len];
}
[f close];
TEST(@"-[copy]", (copy = [[sha1 copy] autorelease]))
TEST(@"-[digest]",
memcmp(sha1.digest, testfile_sha1, 20) == 0 &&
memcmp(copy.digest, testfile_sha1, 20) == 0)
EXPECT_EXCEPTION(@"Detect invalid call of "
@"-[updateWithBuffer:length:]", OFHashAlreadyCalculatedException,
[sha1 updateWithBuffer: ""
length: 1])
[pool drain];
}
@end
|