mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-13 22:52:26 +00:00
52 lines
1.4 KiB
Objective-C
52 lines
1.4 KiB
Objective-C
//
|
|
// KPKTestKeyfileParsing.m
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 13.08.13.
|
|
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import <XCTest/XCTest.h>
|
|
#import "NSData+Keyfile.h"
|
|
|
|
@interface KPKTestKeyfileParsing : XCTestCase
|
|
|
|
@end
|
|
|
|
@implementation KPKTestKeyfileParsing
|
|
|
|
- (void)testXmlKeyfileLoadingValidFile {
|
|
NSBundle *myBundle = [NSBundle bundleForClass:[self class]];
|
|
NSURL *url = [myBundle URLForResource:@"Keepass2Key" withExtension:@"xml"];
|
|
NSError *error;
|
|
NSData *data = [NSData dataWithContentsOfKeyFile:url version:KPKXmlVersion error:&error];
|
|
XCTAssertNotNil(data, @"Data should be loaded");
|
|
XCTAssertNil(error, @"No error should occur on keyfile loading");
|
|
}
|
|
|
|
- (void)testXmlKeyfileLoadingCorruptData {
|
|
XCTAssertFalse(NO, @"Not Implemented");
|
|
}
|
|
|
|
- (void)testXmlKeyfileLoadingMissingVersion {
|
|
XCTAssertFalse(NO, @"Not Implemented");
|
|
}
|
|
|
|
- (void)testXmlKeyfileLoadingLowerVersion {
|
|
XCTAssertFalse(NO, @"Not Implemented");
|
|
}
|
|
|
|
- (void)testXmlKeyfilGeneration {
|
|
NSData *data = [NSData generateKeyfiledataForVersion:KPKXmlVersion];
|
|
// Test if structure is sound;
|
|
XCTAssertNotNil(data, @"Keydata should have been generated");
|
|
}
|
|
|
|
- (void)testLegacyKeyfileGeneration {
|
|
NSData *data = [NSData generateKeyfiledataForVersion:KPKLegacyVersion];
|
|
// test if strucutre is sound;
|
|
XCTAssertNotNil(data, @"Keydata should have been generated");
|
|
}
|
|
|
|
@end
|