summaryrefslogtreecommitdiff
path: root/SmartDeviceLinkTests/DevAPISpecs/SDLVoiceCommandUpdateOperationSpec.m
blob: ca8c9cfbd91c84af796e929f0ef6902840241a27 (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
#import <Quick/Quick.h>
#import <Nimble/Nimble.h>

#import "SDLAddCommand.h"
#import "SDLAddCommandResponse.h"
#import "SDLDeleteCommand.h"
#import "SDLDeleteCommandResponse.h"
#import "SDLError.h"
#import "SDLFileManager.h"
#import "SDLHMILevel.h"
#import "SDLVoiceCommand.h"
#import "SDLVoiceCommandManager.h"
#import "SDLVoiceCommandUpdateOperation.h"
#import "TestConnectionManager.h"

@interface SDLVoiceCommand()

@property (assign, nonatomic) UInt32 commandId;

@end

QuickSpecBegin(SDLVoiceCommandUpdateOperationSpec)

__block SDLDeleteCommandResponse *successDelete = nil;
__block SDLDeleteCommandResponse *failDelete = nil;
__block SDLAddCommandResponse *successAdd = nil;
__block SDLAddCommandResponse *failAdd = nil;

__block SDLVoiceCommand *newVoiceCommand1 = [[SDLVoiceCommand alloc] initWithVoiceCommands:@[@"NewVC1"] handler:^{}];
__block SDLVoiceCommand *newVoiceCommand2 = [[SDLVoiceCommand alloc] initWithVoiceCommands:@[@"NewVC2"] handler:^{}];
__block SDLVoiceCommand *oldVoiceCommand1 = [[SDLVoiceCommand alloc] initWithVoiceCommands:@[@"OldVC1"] handler:^{}];
__block SDLVoiceCommand *oldVoiceCommand2 = [[SDLVoiceCommand alloc] initWithVoiceCommands:@[@"OldVC2"] handler:^{}];


describe(@"a voice command operation", ^{
    __block TestConnectionManager *testConnectionManager = nil;
    __block SDLVoiceCommandUpdateOperation *testOp = nil;

    __block NSError *callbackError = nil;
    __block NSArray<SDLVoiceCommand *> *callbackCurrentVoiceCommands = nil;

    beforeEach(^{
        successDelete = [[SDLDeleteCommandResponse alloc] init];
        successDelete.success = @YES;
        successDelete.resultCode = SDLResultSuccess;

        failDelete = [[SDLDeleteCommandResponse alloc] init];
        failDelete.success = @NO;
        failDelete.resultCode = SDLResultDisallowed;

        successAdd = [[SDLAddCommandResponse alloc] init];
        successAdd.success = @YES;
        successAdd.resultCode = SDLResultSuccess;

        failAdd = [[SDLAddCommandResponse alloc] init];
        failAdd.success = @NO;
        failAdd.resultCode = SDLResultDisallowed;

        newVoiceCommand1.commandId = 1;
        newVoiceCommand2.commandId = 2;
        oldVoiceCommand1.commandId = 3;
        oldVoiceCommand2.commandId = 4;

        testConnectionManager = [[TestConnectionManager alloc] init];
        testOp = nil;

        callbackError = nil;
        callbackCurrentVoiceCommands = nil;
    });

    // should have a priority of 'normal'
    it(@"should have a priority of 'normal'", ^{
        testOp = [[SDLVoiceCommandUpdateOperation alloc] initWithConnectionManager:testConnectionManager pendingVoiceCommands:@[] oldVoiceCommands:@[] updateCompletionHandler:^(NSArray<SDLVoiceCommand *> * _Nonnull newCurrentVoiceCommands, NSError * _Nullable error) {
        }];

        expect(@(testOp.queuePriority)).to(equal(@(NSOperationQueuePriorityNormal)));
    });

    // initializing the operation
    describe(@"initializing the operation", ^{
        testOp = [[SDLVoiceCommandUpdateOperation alloc] initWithConnectionManager:testConnectionManager pendingVoiceCommands:@[newVoiceCommand1, newVoiceCommand2] oldVoiceCommands:@[oldVoiceCommand1, oldVoiceCommand2] updateCompletionHandler:^(NSArray<SDLVoiceCommand *> * _Nonnull newCurrentVoiceCommands, NSError * _Nullable error) {}];

        expect(testOp.oldVoiceCommands).to(equal(@[oldVoiceCommand1, oldVoiceCommand2]));
    });

    // starting the operation
    describe(@"starting the operation", ^{

        // if it starts cancelled
        context(@"if it starts cancelled", ^{
            beforeEach(^{
                testOp = [[SDLVoiceCommandUpdateOperation alloc] initWithConnectionManager:testConnectionManager pendingVoiceCommands:@[newVoiceCommand1, newVoiceCommand2] oldVoiceCommands:@[oldVoiceCommand1, oldVoiceCommand2] updateCompletionHandler:^(NSArray<SDLVoiceCommand *> * _Nonnull newCurrentVoiceCommands, NSError * _Nullable error) {
                    callbackCurrentVoiceCommands = newCurrentVoiceCommands;
                    callbackError = error;
                }];
                [testOp cancel];
                [testOp start];
            });

            it(@"should return immediately with an error", ^{
                expect(callbackError).toEventuallyNot(beNil());
            });
        });

        // if it has voice commands to delete
        context(@"if it has voice commands to delete", ^{
            beforeEach(^{
                testOp = [[SDLVoiceCommandUpdateOperation alloc] initWithConnectionManager:testConnectionManager pendingVoiceCommands:@[] oldVoiceCommands:@[oldVoiceCommand1, oldVoiceCommand2] updateCompletionHandler:^(NSArray<SDLVoiceCommand *> * _Nonnull newCurrentVoiceCommands, NSError * _Nullable error) {
                    callbackCurrentVoiceCommands = newCurrentVoiceCommands;
                    callbackError = error;
                }];
                [testOp start];
            });

            // and the delete succeeds
            context(@"and the delete succeeds", ^{
                beforeEach(^{
                    SDLDeleteCommandResponse *deleteOld1 = [[SDLDeleteCommandResponse alloc] init];
                    deleteOld1.success = @YES;
                    deleteOld1.resultCode = SDLResultSuccess;

                    SDLDeleteCommandResponse *deleteOld2 = [[SDLDeleteCommandResponse alloc] init];
                    deleteOld2.success = @YES;
                    deleteOld2.resultCode = SDLResultSuccess;

                    [testConnectionManager respondToRequestWithResponse:deleteOld1 requestNumber:0 error:nil];
                    [testConnectionManager respondToRequestWithResponse:deleteOld2 requestNumber:1 error:nil];
                    [testConnectionManager respondToLastMultipleRequestsWithSuccess:YES];
                });

                it(@"should update the current voice commands", ^{
                    expect(callbackCurrentVoiceCommands).to(haveCount(0));
                    expect(callbackError).to(beNil());
                    expect(testConnectionManager.receivedRequests).to(haveCount(2));
                });
            });

            // and the delete fails
            context(@"and the delete fails", ^{
                beforeEach(^{
                    [testConnectionManager respondToRequestWithResponse:failDelete requestNumber:0 error:[NSError sdl_lifecycle_failedWithBadResult:SDLResultDisallowed info:nil]];
                    [testConnectionManager respondToRequestWithResponse:failDelete requestNumber:1 error:[NSError sdl_lifecycle_failedWithBadResult:SDLResultDisallowed info:nil]];
                    [testConnectionManager respondToLastMultipleRequestsWithSuccess:NO];
                });

                it(@"should update the current voice commands and attempt to send the adds", ^{
                    expect(callbackCurrentVoiceCommands).to(haveCount(2));
                    expect(callbackError).toNot(beNil());
                    expect(testConnectionManager.receivedRequests).to(haveCount(2));
                });
            });

            // and the delete partially fails
            context(@"and the delete partially fails", ^{
                beforeEach(^{
                    [testConnectionManager respondToRequestWithResponse:failDelete requestNumber:0 error:[NSError sdl_lifecycle_failedWithBadResult:SDLResultDisallowed info:nil]];
                    [testConnectionManager respondToRequestWithResponse:successDelete requestNumber:1 error:nil];
                    [testConnectionManager respondToLastMultipleRequestsWithSuccess:NO];
                });

                it(@"should update the current voice commands and attempt to send the adds", ^{
                    expect(callbackCurrentVoiceCommands).to(haveCount(1));
                    expect(callbackError).toNot(beNil());
                    expect(testConnectionManager.receivedRequests).to(haveCount(2));
                });
            });
        });

        context(@"if it doesn't have any voice commands to delete", ^{
            beforeEach(^{
                testOp = [[SDLVoiceCommandUpdateOperation alloc] initWithConnectionManager:testConnectionManager pendingVoiceCommands:@[newVoiceCommand1, newVoiceCommand2] oldVoiceCommands:@[] updateCompletionHandler:^(NSArray<SDLVoiceCommand *> * _Nonnull newCurrentVoiceCommands, NSError * _Nullable error) {
                    callbackCurrentVoiceCommands = newCurrentVoiceCommands;
                    callbackError = error;
                }];
                [testOp start];
            });

            context(@"adding voice commands", ^{
                context(@"and the add succeeds", ^{
                    beforeEach(^{
                        SDLAddCommandResponse *addNew1 = [[SDLAddCommandResponse alloc] init];
                        addNew1.success = @YES;
                        addNew1.resultCode = SDLResultSuccess;

                        SDLAddCommandResponse *addNew2 = [[SDLAddCommandResponse alloc] init];
                        addNew2.success = @YES;
                        addNew2.resultCode = SDLResultSuccess;

                        [testConnectionManager respondToRequestWithResponse:addNew1 requestNumber:0 error:nil];
                        [testConnectionManager respondToRequestWithResponse:addNew2 requestNumber:1 error:nil];
                        [testConnectionManager respondToLastMultipleRequestsWithSuccess:YES];
                    });

                    it(@"should update the current voice commands", ^{
                        expect(callbackCurrentVoiceCommands).to(haveCount(2));
                        expect(callbackError).to(beNil());
                        expect(testConnectionManager.receivedRequests).to(haveCount(2));
                    });
                });

                context(@"and the add fails", ^{
                    beforeEach(^{
                        SDLAddCommandResponse *addNew1 = [[SDLAddCommandResponse alloc] init];
                        addNew1.success = @NO;
                        addNew1.resultCode = SDLResultDisallowed;

                        SDLAddCommandResponse *addNew2 = [[SDLAddCommandResponse alloc] init];
                        addNew2.success = @NO;
                        addNew2.resultCode = SDLResultDisallowed;

                        [testConnectionManager respondToRequestWithResponse:addNew1 requestNumber:0 error:[NSError sdl_lifecycle_failedWithBadResult:SDLResultDisallowed info:nil]];
                        [testConnectionManager respondToRequestWithResponse:addNew2 requestNumber:1 error:[NSError sdl_lifecycle_failedWithBadResult:SDLResultDisallowed info:nil]];
                        [testConnectionManager respondToLastMultipleRequestsWithSuccess:NO];
                    });

                    it(@"should update the current voice commands", ^{
                        expect(callbackCurrentVoiceCommands).to(haveCount(0));
                        expect(callbackError).toNot(beNil());
                        expect(testConnectionManager.receivedRequests).to(haveCount(2));
                    });
                });

                context(@"and the add partially fails", ^{
                    beforeEach(^{
                        SDLAddCommandResponse *addNew1 = [[SDLAddCommandResponse alloc] init];
                        addNew1.success = @NO;
                        addNew1.resultCode = SDLResultDisallowed;

                        SDLAddCommandResponse *addNew2 = [[SDLAddCommandResponse alloc] init];
                        addNew2.success = @YES;
                        addNew2.resultCode = SDLResultSuccess;

                        [testConnectionManager respondToRequestWithResponse:addNew1 requestNumber:0 error:[NSError sdl_lifecycle_failedWithBadResult:SDLResultDisallowed info:nil]];
                        [testConnectionManager respondToRequestWithResponse:addNew2 requestNumber:1 error:nil];
                        [testConnectionManager respondToLastMultipleRequestsWithSuccess:NO];
                    });

                    it(@"should update the current voice commands", ^{
                        expect(callbackCurrentVoiceCommands).to(haveCount(1));
                        expect(callbackError).toNot(beNil());
                        expect(testConnectionManager.receivedRequests).to(haveCount(2));
                    });
                });
            });
        });
    });
});

QuickSpecEnd