Differences From Artifact [8dbe2b957f]:
- File
tests/OFSHA1HashTests.m
— part of check-in
[1483709ab2]
at
2022-08-01 21:20:54
on branch trunk
— Add support for embedding files into binaries
Embedded files are available via the objfw-embedded: URL scheme. (user: js, size: 1819) [annotate] [blame] [check-ins using] [more...]
To Artifact [f253b9db0c]:
- File tests/OFSHA1HashTests.m — part of check-in [338d452f33] at 2022-08-11 20:54:05 on branch trunk — OFURLHandler: Add +[openItemAtURL:mode:] (user: js, size: 1793) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
27 28 29 30 31 32 33 |
@implementation TestsAppDelegate (SHA1HashTests)
- (void)SHA1HashTests
{
void *pool = objc_autoreleasePoolPush();
OFSHA1Hash *SHA1, *SHA1Copy;
OFURL *URL = [OFURL URLWithString: @"objfw-embedded:///testfile.bin"];
| < | | 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
@implementation TestsAppDelegate (SHA1HashTests)
- (void)SHA1HashTests
{
void *pool = objc_autoreleasePoolPush();
OFSHA1Hash *SHA1, *SHA1Copy;
OFURL *URL = [OFURL URLWithString: @"objfw-embedded:///testfile.bin"];
OFStream *file = [OFURLHandler openItemAtURL: URL mode: @"r"];
TEST(@"+[hashWithAllowsSwappableMemory:]",
(SHA1 = [OFSHA1Hash hashWithAllowsSwappableMemory: true]))
while (!file.atEndOfStream) {
char buffer[64];
size_t length = [file readIntoBuffer: buffer length: 64];
|
| ︙ | ︙ |