aboutsummaryrefslogtreecommitdiff
path: root/xcode/OLMKitTests/OLMKitPkTests.m
blob: 04d2e30c030257f63c5eb8870bfe767d5a3d09cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/*
 Copyright 2018 New Vector Ltd

 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
 You may obtain a copy of the License at

 http://www.apache.org/licenses/LICENSE-2.0

 Unless required by applicable law or agreed to in writing, software
 distributed under the License is distributed on an "AS IS" BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.
 */

#import <XCTest/XCTest.h>
#import <OLMKit/OLMKit.h>

/**
 Tests are inspired from js tests.
 */
@interface OLMKitPkTests : XCTestCase {
    OLMPkEncryption *encryption;
    OLMPkDecryption *decryption;
}

@end

@implementation OLMKitPkTests

- (void)setUp {
    encryption = [OLMPkEncryption new];
    decryption = [OLMPkDecryption new];
}

- (void)tearDown {
    encryption = nil;
    decryption = nil;
}

- (void)testImportExportKeys {
    UInt8 alicePrivateBytes[] = {
                            0x77, 0x07, 0x6D, 0x0A, 0x73, 0x18, 0xA5, 0x7D,
                            0x3C, 0x16, 0xC1, 0x72, 0x51, 0xB2, 0x66, 0x45,
                            0xDF, 0x4C, 0x2F, 0x87, 0xEB, 0xC0, 0x99, 0x2A,
                            0xB1, 0x77, 0xFB, 0xA5, 0x1D, 0xB9, 0x2C, 0x2A
    };

    NSData *alicePrivate = [NSData dataWithBytes:alicePrivateBytes length:sizeof(alicePrivateBytes)];

    NSError *error;
    NSString *alicePublic = [decryption setPrivateKey:alicePrivate error:&error];
    XCTAssertNil(error);
    XCTAssertEqualObjects(alicePublic, @"hSDwCYkwp1R0i33ctD73Wg2/Og0mOBr066SpjqqbTmo");

    NSData *alicePrivateOut = decryption.privateKey;
    XCTAssertNil(error);
    XCTAssertEqualObjects(alicePrivateOut, alicePrivate);
}

- (void)testEncryptAndDecrypt {

    NSString *pubKey = [decryption generateKey:nil];
    NSLog(@"Ephemeral Key: %@", pubKey);
    XCTAssertNotNil(pubKey);

    NSString *TEST_TEXT = @"têst1";
    NSError *error;
    [encryption setRecipientKey:pubKey];
    OLMPkMessage *message = [encryption encryptMessage:TEST_TEXT error:&error];
    NSLog(@"message: %@ %@ %@", message.ciphertext, message.mac, message.ephemeralKey);
    XCTAssertNil(error);
    XCTAssertNotNil(message);
    XCTAssertNotNil(message.ciphertext);
    XCTAssertNotNil(message.mac);
    XCTAssertNotNil(message.ephemeralKey);

    NSString *decrypted = [decryption decryptMessage:message error:&error];
    XCTAssertNil(error);
    XCTAssertEqualObjects(decrypted, TEST_TEXT);

    TEST_TEXT = @"hot beverage: ☕";
    [encryption setRecipientKey:pubKey];
    message = [encryption encryptMessage:TEST_TEXT error:&error];
    decrypted = [decryption decryptMessage:message error:&error];
    XCTAssertEqualObjects(decrypted, TEST_TEXT);
}

- (void)testOLMPkDecryptionSerialization {
    NSString *TEST_TEXT = @"têst1";
    NSString *pubKey = [decryption generateKey:nil];
    [encryption setRecipientKey:pubKey];
    OLMPkMessage *encrypted = [encryption encryptMessage:TEST_TEXT error:nil];


    NSData *pickle = [NSKeyedArchiver archivedDataWithRootObject:decryption];
    decryption = nil;

    OLMPkDecryption *newDecryption = [NSKeyedUnarchiver unarchiveObjectWithData:pickle];

    NSError *error;
    NSString *decrypted = [newDecryption decryptMessage:encrypted error:&error];
    XCTAssertEqualObjects(decrypted, TEST_TEXT);
}

@end