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
|
//
// SDLV2ProtocolHeaderSpec.m
// SmartDeviceLink-iOS
#import <Foundation/Foundation.h>
#import <Quick/Quick.h>
#import <Nimble/Nimble.h>
#import "SDLV2ProtocolHeader.h"
#import "SDLRPCParameterNames.h"
QuickSpecBegin(SDLV2ProtocolHeaderSpec)
__block SDLV2ProtocolHeader* testHeader;
__block NSData* testData;
beforeSuite(^ {
//Set up test header
testHeader = [[SDLV2ProtocolHeader alloc] init];
testHeader.encrypted = YES;
testHeader.frameType = SDLFrameTypeControl;
testHeader.serviceType = SDLServiceTypeRPC;
testHeader.frameData = SDLFrameInfoStartService;
testHeader.sessionID = 0x53;
testHeader.bytesInPayload = 0x1234;
testHeader.messageID = 0x6DAB424F;
const char testBytes[12] = {0x28 | (SDLFrameTypeControl & 0xFF), SDLServiceTypeRPC, SDLFrameInfoStartService, 0x53, 0x00, 0x00, 0x12, 0x34, 0x6D, 0xAB, 0x42, 0x4F};
testData = [NSData dataWithBytes:testBytes length:12];
});
describe(@"Getter/Setter Tests", ^ {
it(@"Should get readonly values correctly", ^ {
expect(@(testHeader.version)).to(equal(@2));
expect(@(testHeader.size)).to(equal(@12));
});
it(@"Should set and get correctly", ^ {
expect(@(testHeader.encrypted)).to(equal(@YES));
expect(@(testHeader.frameType)).to(equal(@(SDLFrameTypeControl)));
expect(@(testHeader.serviceType)).to(equal(@(SDLServiceTypeRPC)));
expect(@(testHeader.frameData)).to(equal(@(SDLFrameInfoStartService)));
expect(@(testHeader.sessionID)).to(equal(@0x53));
expect(@(testHeader.bytesInPayload)).to(equal(@0x1234));
expect(@(testHeader.messageID)).to(equal(@0x6DAB424F));
});
});
describe(@"Copy Tests", ^ {
it(@"Should copy correctly", ^ {
SDLV2ProtocolHeader* headerCopy = [testHeader copy];
expect(@(headerCopy.version)).to(equal(@2));
expect(@(headerCopy.size)).to(equal(@12));
expect(@(headerCopy.encrypted)).to(equal(@YES));
expect(@(headerCopy.frameType)).to(equal(@(SDLFrameTypeControl)));
expect(@(headerCopy.serviceType)).to(equal(@(SDLServiceTypeRPC)));
expect(@(headerCopy.frameData)).to(equal(@(SDLFrameInfoStartService)));
expect(@(headerCopy.sessionID)).to(equal(@0x53));
expect(@(headerCopy.bytesInPayload)).to(equal(@0x1234));
expect(@(testHeader.messageID)).to(equal(@0x6DAB424F));
expect(headerCopy).toNot(beIdenticalTo(testHeader));
});
});
describe(@"Data Tests", ^ {
it (@"Should convert to byte data correctly", ^ {
expect(testHeader.data).to(equal(testData));
});
});
describe(@"RPCPayloadWithData Test", ^ {
it (@"Should convert from byte data correctly", ^ {
SDLV2ProtocolHeader* constructedHeader = [[SDLV2ProtocolHeader alloc] init];
[constructedHeader parse:testData];
expect(@(constructedHeader.encrypted)).to(equal(@YES));
expect(@(constructedHeader.frameType)).to(equal(@(SDLFrameTypeControl)));
expect(@(constructedHeader.serviceType)).to(equal(@(SDLServiceTypeRPC)));
expect(@(constructedHeader.frameData)).to(equal(@(SDLFrameInfoStartService)));
expect(@(constructedHeader.sessionID)).to(equal(@0x53));
expect(@(constructedHeader.bytesInPayload)).to(equal(@0x1234));
expect(@(testHeader.messageID)).to(equal(@0x6DAB424F));
});
});
QuickSpecEnd
|