Differences From Artifact [3bceacae61]:
- File tests/OFSHA1HashTests.m — part of check-in [2969086342] at 2021-04-07 21:14:36 on branch trunk — Rename OFCryptoHash -> OFCryptographicHash (user: js, size: 1610) [annotate] [blame] [check-ins using] [more...]
To Artifact [4f485b9d65]:
- File
tests/OFSHA1HashTests.m
— part of check-in
[14f1e22d79]
at
2021-05-08 23:22:59
on branch trunk
— tests: Align more with ObjFW style
ObjFW's style changed over the years, but the tests were never adjusted
to it. (user: js, size: 1652) [annotate] [blame] [check-ins using] [more...]
| ︙ | ︙ | |||
15 16 17 18 19 20 21 | #include "config.h" #include <string.h> #import "TestsAppDelegate.h" | | | | | | | | | | | | | | | | 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 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 |
#include "config.h"
#include <string.h>
#import "TestsAppDelegate.h"
static OFString *const module = @"OFSHA1Hash";
const uint8_t testFileSHA1[20] =
"\xC9\x9A\xB8\x7E\x1E\xC8\xEC\x65\xD5\xEB\xE4\x2E\x0D\xA6\x80\x96\xF5"
"\x94\xE7\x17";
@implementation TestsAppDelegate (SHA1HashTests)
- (void)SHA1HashTests
{
void *pool = objc_autoreleasePoolPush();
OFSHA1Hash *SHA1, *SHA1Copy;
OFFile *file = [OFFile fileWithPath: @"testfile.bin" mode: @"r"];
TEST(@"+[hashWithAllowsSwappableMemory:]",
(SHA1 = [OFSHA1Hash hashWithAllowsSwappableMemory: true]))
while (!file.atEndOfStream) {
char buffer[64];
size_t length = [file readIntoBuffer: buffer length: 64];
[SHA1 updateWithBuffer: buffer length: length];
}
[file close];
TEST(@"-[copy]", (SHA1Copy = [[SHA1 copy] autorelease]))
TEST(@"-[digest]",
memcmp(SHA1.digest, testFileSHA1, 20) == 0 &&
memcmp(SHA1Copy.digest, testFileSHA1, 20) == 0)
EXPECT_EXCEPTION(@"Detect invalid call of "
@"-[updateWithBuffer:length:]", OFHashAlreadyCalculatedException,
[SHA1 updateWithBuffer: "" length: 1])
objc_autoreleasePoolPop(pool);
}
@end
|