mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-13 22:52:26 +00:00
39 lines
1.3 KiB
Objective-C
39 lines
1.3 KiB
Objective-C
//
|
|
// MPDatabaseCreation.m
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 10.07.13.
|
|
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import <XCTest/XCTest.h>
|
|
#import <KeePassKit/KeePassKit.h>
|
|
|
|
#import "MPDocument.h"
|
|
|
|
@interface MPTestDocument : XCTestCase
|
|
|
|
@end
|
|
|
|
@implementation MPTestDocument
|
|
|
|
- (void)testCreateEmptyDocument {
|
|
MPDocument *document = [[MPDocument alloc] init];
|
|
XCTAssertNotNil(document, @"Document should be created");
|
|
XCTAssertNil(document.tree, @"Allocated document should not have a tree");
|
|
XCTAssertFalse(document.encrypted, @"Document cannot be encrypted without a tree");
|
|
XCTAssertNil(document.compositeKey, @"Document shoudl have not key at all");
|
|
}
|
|
|
|
- (void)testCreateUntitledDocument {
|
|
MPDocument *document = [[MPDocument alloc] initWithType:@"" error:nil];
|
|
XCTAssertNotNil(document, @"Document should be created");
|
|
KPKFileVersion kdb = { KPKDatabaseFormatKdb, kKPKKdbFileVersion };
|
|
XCTAssertEqual(NSOrderedSame, KPKFileVersionCompare(kdb, document.tree.minimumVersion), @"Tree should be Legacy Version in default case");
|
|
XCTAssertFalse(document.encrypted, @"Document cannot be encrypted at creation");
|
|
XCTAssertFalse(document.compositeKey.hasPasswordOrKeyFile, @"Document has no Password/Keyfile and thus is not secured");
|
|
|
|
}
|
|
|
|
@end
|