summaryrefslogtreecommitdiff
path: root/SmartDeviceLinkTests/RPCSpecs/PayloadSpecs/SDLSecurityQueryPayloadSpec.m
blob: 8d19b08cf5b9910c5655600df08734c841f257f6 (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
//
//  SDLSecurityQueryPayloadSpec.m
//  SmartDeviceLinkTests
//
//  Created by Frank Elias on 8/12/21.
//  Copyright © 2021 smartdevicelink. All rights reserved.
//


#import <Foundation/Foundation.h>

#import <Quick/Quick.h>
#import <Nimble/Nimble.h>

#import "SDLRPCParameterNames.h"
#import "SDLRPCFunctionNames.h"
#import "SDLSecurityQueryPayload.h"
#import "SDLSecurityQueryErrorCode.h"

QuickSpecBegin(SDLSecurityQueryPayloadSpec)

__block SDLSecurityQueryPayload* testPayload;
__block NSDictionary* dict = @{@"id": @"3", @"text":@"SDL does not support encryption"};

NSData* (^testData)(void) = ^NSData* {
    NSData* jsonData = [NSJSONSerialization dataWithJSONObject:dict options:0 error:0];
    NSData* binaryData = [NSData dataWithBytes:"PrimitiveString" length:strlen("PrimitiveString")];

    Byte header[12] = {0x20, 0x00, 0x00, 0x02, 0x00, 0x00, 0x14, 0x43, 0x00, 0x00, 0x00, 0x00};
    *(UInt32 *)&header[8] = CFSwapInt32HostToBig((unsigned int)jsonData.length);

    NSMutableData *data = [NSMutableData dataWithCapacity:12 + jsonData.length];
    [data appendBytes:&header length:12];
    [data appendData:jsonData];
    [data appendData:binaryData];

    return data;
};

beforeSuite(^ {
    testPayload = [[SDLSecurityQueryPayload alloc] init];

    testPayload.queryType = 0x20;
    testPayload.queryID = 0x02;
    testPayload.sequenceNumber = 0x1443;
    testPayload.jsonData = [NSJSONSerialization dataWithJSONObject:dict options:0 error:0];
    testPayload.binaryData = [NSData dataWithBytes:"PrimitiveString" length:strlen("PrimitiveString")];
});

describe(@"Getter/Setter Tests", ^ {
    it(@"should set and get correctly", ^ {
        expect(@(testPayload.queryType)).to(equal(SDLSecurityQueryTypeNotification));
        expect(@(testPayload.queryID)).to(equal(SDLSecurityQueryIdSendInternalError));
        expect(@(testPayload.sequenceNumber)).to(equal(@0x1443));
        expect([NSJSONSerialization JSONObjectWithData:testPayload.jsonData options:0 error:0]).to(equal(dict));
        expect([NSString stringWithUTF8String:[testPayload binaryData].bytes]).to(equal(@"PrimitiveString"));
    });
});

describe(@"Data Tests", ^ {
    it(@"should convert to byte data correctly", ^ {
        expect(testPayload.data).to(equal(testData()));
    });
});

describe(@"RPCPayloadWithData Test", ^ {
    it(@"should convert from byte data correctly", ^ {
        SDLSecurityQueryPayload* constructedPayload = [SDLSecurityQueryPayload securityPayloadWithData:testData()];

        expect(@(constructedPayload.queryType)).to(equal(SDLSecurityQueryTypeNotification));
        expect(@(constructedPayload.queryID)).to(equal(SDLSecurityQueryIdSendInternalError));
        expect(@(constructedPayload.sequenceNumber)).to(equal(@0x1443));
        NSDictionary *jsonDict = [NSJSONSerialization JSONObjectWithData:constructedPayload.jsonData options:0 error:0];
        expect(jsonDict).to(equal(dict));
        expect(jsonDict[@"text"]).to(equal(SDLSecurityQueryErrorCodeNotSupported));
        expect([NSString stringWithUTF8String:[constructedPayload binaryData].bytes]).to(equal(@"PrimitiveString"));
    });
});

QuickSpecEnd