summaryrefslogtreecommitdiff
path: root/SmartDeviceLinkTests/ProtocolSpecs/MessageSpecs/SDLProtocolSpec.m
blob: 373575a4d1600b6b93f567f35df09489e5d2597f (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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
//
//  SDLProtocolSpec.m
//  SmartDeviceLink-iOS


#import <Foundation/Foundation.h>

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

#import "SDLAbstractTransport.h"
#import "SDLProtocolHeader.h"
#import "SDLProtocol.h"
#import "SDLProtocolMessage.h"
#import "SDLProtocolReceivedMessageRouter.h"
#import "SDLRPCRequest.h"
#import "SDLNames.h"
#import "SDLV1ProtocolMessage.h"
#import "SDLV2ProtocolMessage.h"
#import "SDLV1ProtocolHeader.h"
#import "SDLV2ProtocolHeader.h"


QuickSpecBegin(SDLProtocolSpec)

//Test dictionaries
NSDictionary* dictionaryV1 = @{NAMES_request:
                                   @{NAMES_operation_name:@"DeleteCommand",
                                     NAMES_correlationID:@0x98765,
                                     NAMES_parameters:
                                         @{NAMES_cmdID:@55}}};
NSDictionary* dictionaryV2 = @{NAMES_cmdID:@55};

describe(@"SendStartSession Tests", ^ {
    it(@"Should send the correct data", ^ {
        SDLProtocol* testProtocol = [[SDLProtocol alloc] init];
        
        __block BOOL verified = NO;
        id transportMock = OCMClassMock([SDLAbstractTransport class]);
        [[[transportMock stub] andDo:^(NSInvocation* invocation) {
            verified = YES;
            
            //Without the __unsafe_unretained, a double release will occur. More information: https://github.com/erikdoe/ocmock/issues/123
            __unsafe_unretained NSData* data;
            [invocation getArgument:&data atIndex:2];
            NSData* dataSent = [data copy];
            
            const char testHeader[8] = {0x10 | SDLFrameType_Control, SDLServiceType_BulkData, SDLFrameData_StartSession, 0x00, 0x00, 0x00, 0x00, 0x00};
            expect(dataSent).to(equal([NSData dataWithBytes:testHeader length:8]));
        }] sendData:[OCMArg any]];
        testProtocol.transport = transportMock;
        
        [testProtocol sendStartSessionWithType:SDLServiceType_BulkData];
        
        expect(@(verified)).toEventually(beTruthy());
    });
});

describe(@"SendEndSession Tests", ^ {
    context(@"During V1 session", ^ {
        it(@"Should send the correct data", ^ {
            SDLProtocol* testProtocol = [[SDLProtocol alloc] init];
            [testProtocol handleProtocolStartSessionACK:SDLServiceType_RPC sessionID:0x03 version:0x01];
            
            __block BOOL verified = NO;
            id transportMock = OCMClassMock([SDLAbstractTransport class]);
            [[[transportMock stub] andDo:^(NSInvocation* invocation) {
                verified = YES;
                
                //Without the __unsafe_unretained, a double release will occur. More information: https://github.com/erikdoe/ocmock/issues/123
                __unsafe_unretained NSData* data;
                [invocation getArgument:&data atIndex:2];
                NSData* dataSent = [data copy];
                
                const char testHeader[8] = {0x10 | SDLFrameType_Control, SDLServiceType_RPC, SDLFrameData_EndSession, 0x03, 0x00, 0x00, 0x00, 0x00};
                expect(dataSent).to(equal([NSData dataWithBytes:testHeader length:8]));
            }] sendData:[OCMArg any]];
            testProtocol.transport = transportMock;
            
            [testProtocol sendEndSessionWithType:SDLServiceType_RPC];
            
            expect(@(verified)).toEventually(beTruthy());
        });
    });
    
    context(@"During V2 session", ^ {
        it(@"Should send the correct data", ^ {
            SDLProtocol* testProtocol = [[SDLProtocol alloc] init];
            [testProtocol handleProtocolStartSessionACK:SDLServiceType_RPC sessionID:0x61 version:0x02];
            
            __block BOOL verified = NO;
            id transportMock = OCMClassMock([SDLAbstractTransport class]);
            [[[transportMock stub] andDo:^(NSInvocation* invocation) {
                verified = YES;
                
                //Without the __unsafe_unretained, a double release will occur. More information: https://github.com/erikdoe/ocmock/issues/123
                __unsafe_unretained NSData* data;
                [invocation getArgument:&data atIndex:2];
                NSData* dataSent = [data copy];
                
                const char testHeader[12] = {0x20 | SDLFrameType_Control, SDLServiceType_RPC, SDLFrameData_EndSession, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
                expect(dataSent).to(equal([NSData dataWithBytes:testHeader length:12]));
            }] sendData:[OCMArg any]];
            testProtocol.transport = transportMock;
            
            [testProtocol sendEndSessionWithType:SDLServiceType_RPC];
            
            expect(@(verified)).toEventually(beTruthy());
        });
    });
});

describe(@"SendRPCRequest Tests", ^ {
    __block id mockRequest;
    beforeEach(^ {
        mockRequest = OCMPartialMock([[SDLRPCRequest alloc] init]);
    });
    
    context(@"During V1 session", ^ {
        it(@"Should send the correct data", ^ {
            [[[[mockRequest stub] andReturn:dictionaryV1] ignoringNonObjectArgs] serializeAsDictionary:1];
            
            SDLProtocol* testProtocol = [[SDLProtocol alloc] init];
            [testProtocol handleProtocolStartSessionACK:SDLServiceType_RPC sessionID:0xFF version:0x01];
            
            __block BOOL verified = NO;
            id transportMock = OCMClassMock([SDLAbstractTransport class]);
            [[[transportMock stub] andDo:^(NSInvocation* invocation) {
                verified = YES;
                
                //Without the __unsafe_unretained, a double release will occur. More information: https://github.com/erikdoe/ocmock/issues/123
                __unsafe_unretained NSData* data;
                [invocation getArgument:&data atIndex:2];
                NSData* dataSent = [data copy];
                
                NSData* jsonTestData = [NSJSONSerialization dataWithJSONObject:dictionaryV1 options:0 error:0];
                NSUInteger dataLength = jsonTestData.length;
                
                const char testHeader[8] = {0x10 | SDLFrameType_Single, SDLServiceType_RPC, SDLFrameData_SingleFrame, 0xFF, (dataLength >> 24) & 0xFF, (dataLength >> 16) & 0xFF, (dataLength >> 8) & 0xFF, dataLength & 0xFF};
                NSMutableData* testData = [NSMutableData dataWithBytes:testHeader length:8];
                [testData appendData:jsonTestData];
                
                expect(dataSent).to(equal([testData copy]));
            }] sendData:[OCMArg any]];
            testProtocol.transport = transportMock;
            
            [testProtocol sendRPC:mockRequest];
            
            expect(@(verified)).toEventually(beTruthy());
        });
    });
    
    context(@"During V2 session", ^ {
        it(@"Should send the correct data bulk data when bulk data is available", ^ {
            [[[[mockRequest stub] andReturn:dictionaryV2] ignoringNonObjectArgs] serializeAsDictionary:2];
            [[[mockRequest stub] andReturn:@0x98765] correlationID];
            [[[mockRequest stub] andReturn:@"DeleteCommand"] getFunctionName];
            [[[mockRequest stub] andReturn:[NSData dataWithBytes:"COMMAND" length:strlen("COMMAND")]] bulkData];
            
            SDLProtocol* testProtocol = [[SDLProtocol alloc] init];
            [testProtocol handleProtocolStartSessionACK:SDLServiceType_RPC sessionID:0x01 version:0x02];
            
            __block BOOL verified = NO;
            id transportMock = OCMClassMock([SDLAbstractTransport class]);
            [[[transportMock stub] andDo:^(NSInvocation* invocation) {
                verified = YES;
                
                //Without the __unsafe_unretained, a double release will occur. More information: https://github.com/erikdoe/ocmock/issues/123
                __unsafe_unretained NSData* data;
                [invocation getArgument:&data atIndex:2];
                NSData* dataSent = [data copy];
                
                NSData* jsonTestData = [NSJSONSerialization dataWithJSONObject:dictionaryV2 options:0 error:0];
                NSUInteger dataLength = jsonTestData.length;
                
                const char testPayloadHeader[12] = {0x00, 0x00, 0x00, 0x06, 0x00, 0x09, 0x87, 0x65, (dataLength >> 24) & 0xFF, (dataLength >> 16) & 0xFF, (dataLength >> 8) & 0xFF, dataLength & 0xFF};
                
                NSMutableData* payloadData = [NSMutableData dataWithBytes:testPayloadHeader length:12];
                [payloadData appendData:jsonTestData];
                [payloadData appendBytes:"COMMAND" length:strlen("COMMAND")];
                
                const char testHeader[12] = {0x20 | SDLFrameType_Single, SDLServiceType_BulkData, SDLFrameData_SingleFrame, 0x01, (payloadData.length >> 24) & 0xFF, (payloadData.length >> 16) & 0xFF,(payloadData.length >> 8) & 0xFF, payloadData.length & 0xFF, 0x00, 0x00, 0x00, 0x01};
                
                NSMutableData* testData = [NSMutableData dataWithBytes:testHeader length:12];
                [testData appendData:payloadData];
                
                expect(dataSent).to(equal([testData copy]));
            }] sendData:[OCMArg any]];
            testProtocol.transport = transportMock;
            
            [testProtocol sendRPC:mockRequest];
            
            expect(@(verified)).toEventually(beTruthy());
        });
    });
});

describe(@"HandleBytesFromTransport Tests", ^ {
    context(@"During V1 session", ^ {
        it(@"Should parse the data correctly", ^ {
            id routerMock = OCMClassMock(SDLProtocolReceivedMessageRouter.class);
            
            //Override initialization methods so that our protocol will use our object instead
            [[[routerMock stub] andReturn:routerMock] alloc];
            (void)[[[routerMock stub] andReturn:routerMock] init];
            
            SDLProtocol* testProtocol = [[SDLProtocol alloc] init];
            [testProtocol handleProtocolStartSessionACK:SDLServiceType_RPC sessionID:0x43 version:0x01];
            
            NSData* jsonTestData = [NSJSONSerialization dataWithJSONObject:dictionaryV1 options:0 error:0];
            NSUInteger dataLength = jsonTestData.length;
            
            __block BOOL verified = NO;
            [[[routerMock stub] andDo:^(NSInvocation* invocation) {
                verified = YES;
                
                //Without the __unsafe_unretained, a double release will occur. More information: https://github.com/erikdoe/ocmock/issues/123
                __unsafe_unretained SDLV1ProtocolMessage* message;
                [invocation getArgument:&message atIndex:2];
                
                SDLV1ProtocolMessage* messageReceived = message;
                
                expect(messageReceived.payload).to(equal(jsonTestData));
                expect(@(messageReceived.header.version)).to(equal(@1));
                expect(@(messageReceived.header.compressed)).to(equal(@NO));
                expect(@(messageReceived.header.frameType)).to(equal(@(SDLFrameType_Single)));
                expect(@(messageReceived.header.sessionID)).to(equal(@0xFF));
                expect(@(messageReceived.header.serviceType)).to(equal(@(SDLServiceType_RPC)));
                expect(@(messageReceived.header.frameData)).to(equal(@(SDLFrameData_SingleFrame)));
                expect(@(messageReceived.header.bytesInPayload)).to(equal(@(dataLength)));
            }] handleReceivedMessage:[OCMArg any]];
            
            const char testHeader[8] = {0x10 | SDLFrameType_Single, SDLServiceType_RPC, SDLFrameData_SingleFrame, 0xFF, (dataLength >> 24) & 0xFF, (dataLength >> 16) & 0xFF, (dataLength >> 8) & 0xFF, dataLength & 0xFF};
            NSMutableData* testData = [NSMutableData dataWithBytes:testHeader length:8];
            [testData appendData:jsonTestData];
            
            [testProtocol handleBytesFromTransport:testData];
            
            expect(@(verified)).toEventually(beTruthy());
        });
    });
    
    context(@"During V2 session", ^ {
        it(@"Should parse the data correctly", ^ {
            id routerMock = OCMClassMock(SDLProtocolReceivedMessageRouter.class);
            
            //Override initialization methods so that our protocol will use our object instead
            [[[routerMock stub] andReturn:routerMock] alloc];
            (void)[[[routerMock stub] andReturn:routerMock] init];
            
            SDLProtocol* testProtocol = [[SDLProtocol alloc] init];
            [testProtocol handleProtocolStartSessionACK:SDLServiceType_RPC sessionID:0xF5 version:0x02];
            
            NSData* jsonTestData = [NSJSONSerialization dataWithJSONObject:dictionaryV2 options:0 error:0];
            NSUInteger dataLength = jsonTestData.length;
            
            const char testPayloadHeader[12] = {0x00, 0x00, 0x00, 0x06, 0x00, 0x09, 0x87, 0x65, (dataLength >> 24) & 0xFF, (dataLength >> 16) & 0xFF, (dataLength >> 8) & 0xFF, dataLength & 0xFF};
            
            NSMutableData* payloadData = [NSMutableData dataWithBytes:testPayloadHeader length:12];
            [payloadData appendData:jsonTestData];
            [payloadData appendBytes:"COMMAND" length:strlen("COMMAND")];
            
            __block BOOL verified = NO;
            [[[routerMock stub] andDo:^(NSInvocation* invocation) {
                verified = YES;
                
                //Without the __unsafe_unretained, a double release will occur. More information: https://github.com/erikdoe/ocmock/issues/123
                __unsafe_unretained SDLV2ProtocolMessage* message;
                [invocation getArgument:&message atIndex:2];
                
                SDLV2ProtocolMessage* messageReceived = message;
                
                expect(messageReceived.payload).to(equal(payloadData));
                expect(@(messageReceived.header.version)).to(equal(@2));
                expect(@(messageReceived.header.compressed)).to(equal(@NO));
                expect(@(messageReceived.header.frameType)).to(equal(@(SDLFrameType_Single)));
                expect(@(messageReceived.header.sessionID)).to(equal(@0x01));
                expect(@(messageReceived.header.serviceType)).to(equal(@(SDLServiceType_RPC)));
                expect(@(messageReceived.header.frameData)).to(equal(@(SDLFrameData_SingleFrame)));
                expect(@(messageReceived.header.bytesInPayload)).to(equal(@(payloadData.length)));
                expect(@(((SDLV2ProtocolHeader*)messageReceived.header).messageID)).to(equal(@1));
                
            }] handleReceivedMessage:[OCMArg any]];
            testProtocol.transport = routerMock;
            
            const char testHeader[12] = {0x20 | SDLFrameType_Single, SDLServiceType_RPC, SDLFrameData_SingleFrame, 0x01, (payloadData.length >> 24) & 0xFF, (payloadData.length >> 16) & 0xFF,
                (payloadData.length >> 8) & 0xFF, payloadData.length & 0xFF, 0x00, 0x00, 0x00, 0x01};
            
            NSMutableData* testData = [NSMutableData dataWithBytes:testHeader length:12];
            [testData appendData:payloadData];
            
            [testProtocol handleBytesFromTransport:testData];
            
            expect(@(verified)).toEventually(beTruthy());
        });
    });
});

describe(@"SendHeartbeat Tests", ^ {
    context(@"During V1 session", ^ {
        it(@"Should send the correct data", ^ {
            SDLProtocol* testProtocol = [[SDLProtocol alloc] init];
            [testProtocol handleProtocolStartSessionACK:SDLServiceType_RPC sessionID:0x43 version:0x01];
            
            __block BOOL verified = NO;
            id transportMock = OCMClassMock([SDLAbstractTransport class]);
            [[[transportMock stub] andDo:^(NSInvocation* invocation) {
                verified = YES;
                
                //Without the __unsafe_unretained, a double release will occur. More information: https://github.com/erikdoe/ocmock/issues/123
                __unsafe_unretained NSData* data;
                [invocation getArgument:&data atIndex:2];
                NSData* dataSent = [data copy];
                
                const char testHeader[8] = {0x10 | SDLFrameType_Control, 0x00, SDLFrameData_Heartbeat, 0x43, 0x00, 0x00, 0x00, 0x00};
                expect(dataSent).to(equal([NSData dataWithBytes:testHeader length:8]));
            }] sendData:[OCMArg any]];
            testProtocol.transport = transportMock;
           
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
            [testProtocol sendHeartbeat];
#pragma clang diagnostic pop
            
            expect(@(verified)).toEventually(beTruthy());
        });
    });
    
    context(@"During V2 session", ^ {
        it(@"Should send the correct data", ^ {
            SDLProtocol* testProtocol = [[SDLProtocol alloc] init];
            [testProtocol handleProtocolStartSessionACK:SDLServiceType_RPC sessionID:0xF5 version:0x02];
            
            __block BOOL verified = NO;
            id transportMock = OCMClassMock([SDLAbstractTransport class]);
            [[[transportMock stub] andDo:^(NSInvocation* invocation) {
                verified = YES;
                
                //Without the __unsafe_unretained, a double release will occur. More information: https://github.com/erikdoe/ocmock/issues/123
                __unsafe_unretained NSData* data;
                [invocation getArgument:&data atIndex:2];
                NSData* dataSent = [data copy];
                
                const char testHeader[12] = {0x20 | SDLFrameType_Control, 0x00, SDLFrameData_Heartbeat, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
                expect(dataSent).to(equal([NSData dataWithBytes:testHeader length:12]));
            }] sendData:[OCMArg any]];
            testProtocol.transport = transportMock;
            
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
            [testProtocol sendHeartbeat];
#pragma clang diagnostic pop
            
            expect(@(verified)).toEventually(beTruthy());
        });
    });
});

describe(@"HandleProtocolSessionStarted Tests", ^ {
    it(@"Should pass information along to delegate", ^ {
        SDLProtocol* testProtocol = [[SDLProtocol alloc] init];
        
        id delegateMock = OCMProtocolMock(@protocol(SDLProtocolListener));
        
        __block BOOL verified = NO;
        [[[[delegateMock stub] andDo:^(NSInvocation* invocation) {
            verified = YES;
            Byte serviceType;
            Byte sessionID;
            Byte version;
            
            [invocation getArgument:&serviceType atIndex:2];
            [invocation getArgument:&sessionID atIndex:3];
            [invocation getArgument:&version atIndex:4];
            
            expect(@(serviceType)).to(equal(@(SDLServiceType_BulkData)));
            expect(@(sessionID)).to(equal(@0x44));
            expect(@(version)).to(equal(@0x03));
        }] ignoringNonObjectArgs] handleProtocolStartSessionACK:0 sessionID:0 version:0];
        
        [testProtocol.protocolDelegateTable addObject:delegateMock];
        
        [testProtocol handleProtocolStartSessionACK:SDLServiceType_BulkData sessionID:0x44 version:0x03];
        
        expect(@(verified)).to(beTruthy());
    });
});

describe(@"HandleHeartbeatForSession Tests", ^{
    // TODO: Test automatically sending data to head unit (dependency injection?)
    it(@"Should pass information along to delegate", ^ {
        SDLProtocol* testProtocol = [[SDLProtocol alloc] init];
        
        id delegateMock = OCMProtocolMock(@protocol(SDLProtocolListener));
        
        __block BOOL verified = NO;
        [[[[delegateMock stub] andDo:^(NSInvocation* invocation) {
            verified = YES;
            Byte sessionID;
            
            [invocation getArgument:&sessionID atIndex:2];
            
            expect(@(sessionID)).to(equal(@0x44));
        }] ignoringNonObjectArgs] handleHeartbeatForSession:0];
        
        [testProtocol.protocolDelegateTable addObject:delegateMock];
        
        [testProtocol handleHeartbeatForSession:0x44];
        
        expect(@(verified)).to(beTruthy());
    });
});

describe(@"OnProtocolMessageReceived Tests", ^ {
    it(@"Should pass information along to delegate", ^ {
        SDLProtocol* testProtocol = [[SDLProtocol alloc] init];
        
        SDLProtocolMessage* testMessage = [[SDLProtocolMessage alloc] init];
        
        id delegateMock = OCMProtocolMock(@protocol(SDLProtocolListener));
        
        __block BOOL verified = NO;
        [[[[delegateMock stub] andDo:^(NSInvocation* invocation) {
            verified = YES;
            
            //Without the __unsafe_unretained, a double release will occur. More information: https://github.com/erikdoe/ocmock/issues/123
            __unsafe_unretained SDLProtocolMessage* message;
            
            [invocation getArgument:&message atIndex:2];
            
            expect(message).to(beIdenticalTo(testMessage));
        }] ignoringNonObjectArgs] onProtocolMessageReceived:[OCMArg any]];
        
        [testProtocol.protocolDelegateTable addObject:delegateMock];
        
        [testProtocol onProtocolMessageReceived:testMessage];
        
        expect(@(verified)).toEventually(beTruthy());
    });
});

describe(@"OnProtocolOpened Tests", ^ {
    it(@"Should pass information along to delegate", ^ {
        SDLProtocol* testProtocol = [[SDLProtocol alloc] init];
        
        id delegateMock = OCMProtocolMock(@protocol(SDLProtocolListener));
        
        __block BOOL verified = NO;
        [[[delegateMock stub] andDo:^(NSInvocation* invocation) {
            verified = YES;
        }] onProtocolOpened];
        
        [testProtocol.protocolDelegateTable addObject:delegateMock];
        
        [testProtocol onProtocolOpened];
        
        expect(@(verified)).toEventually(beTruthy());
    });
});

describe(@"OnProtocolClosed Tests", ^ {
    it(@"Should pass information along to delegate", ^ {
        SDLProtocol* testProtocol = [[SDLProtocol alloc] init];
        
        id delegateMock = OCMProtocolMock(@protocol(SDLProtocolListener));
        
        __block BOOL verified = NO;
        [[[delegateMock stub] andDo:^(NSInvocation* invocation) {
            verified = YES;
        }] onProtocolClosed];
        
        [testProtocol.protocolDelegateTable addObject:delegateMock];
        
        [testProtocol onProtocolClosed];
        
        expect(@(verified)).toEventually(beTruthy());
    });
});

describe(@"OnError Tests", ^ {
    it(@"Should pass information along to delegate", ^ {
        SDLProtocol* testProtocol = [[SDLProtocol alloc] init];
        
        NSException* testException = [[NSException alloc] initWithName:@"Name" reason:@"No Reason" userInfo:@{}];
        
        id delegateMock = OCMProtocolMock(@protocol(SDLProtocolListener));
        
        __block BOOL verified = NO;
        [[[delegateMock stub] andDo:^(NSInvocation* invocation) {
            verified = YES;
            //Without the __unsafe_unretained, a double release will occur. More information: https://github.com/erikdoe/ocmock/issues/123
            __unsafe_unretained NSString* message;
            __unsafe_unretained NSException* exception;
            
            [invocation getArgument:&message atIndex:2];
            [invocation getArgument:&exception atIndex:3];
            
            expect(message).to(equal(@"Nothing actually happened"));
            expect(exception).to(equal(testException));
        }] onError:[OCMArg any] exception:[OCMArg any]];
        
        [testProtocol.protocolDelegateTable addObject:delegateMock];
        
        [testProtocol onError:@"Nothing actually happened" exception:testException];
        
        expect(@(verified)).toEventually(beTruthy());
    });
});

QuickSpecEnd