summaryrefslogtreecommitdiff
path: root/SmartDeviceLinkTests/RPCSpecs/RequestSpecs/SDLUpdateTurnListSpec.m
blob: 24bd699d23fba2015e46070114a1a51db15e499e (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
//
//  SDLUpdateTurnListSpec.m
//  SmartDeviceLink


#import <Foundation/Foundation.h>

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

#import "SDLUpdateTurnList.h"
#import "SDLTurn.h"
#import "SDLSoftButton.h"
#import "SDLNames.h"

QuickSpecBegin(SDLUpdateTurnListSpec)

SDLTurn* turn = [[SDLTurn alloc] init];
SDLSoftButton* button = [[SDLSoftButton alloc] init];

describe(@"Getter/Setter Tests", ^ {
    it(@"Should set and get correctly", ^ {
        SDLUpdateTurnList* testRequest = [[SDLUpdateTurnList alloc] init];
        
        testRequest.turnList = [@[turn] mutableCopy];
        testRequest.softButtons = [@[button] mutableCopy];
        
        expect(testRequest.turnList).to(equal([@[turn] mutableCopy]));
        expect(testRequest.softButtons).to(equal([@[button] mutableCopy]));
    });
    
    it(@"Should get correctly when initialized", ^ {
        NSMutableDictionary<NSString *, id> *dict = [@{SDLNameRequest:
                                                           @{SDLNameParameters:
                                                                 @{SDLNameTurnList:[@[turn] mutableCopy],
                                                                   SDLNameSoftButtons:[@[button] mutableCopy]},
                                                             SDLNameOperationName:SDLNameUpdateTurnList}} mutableCopy];
        SDLUpdateTurnList* testRequest = [[SDLUpdateTurnList alloc] initWithDictionary:dict];
        
        expect(testRequest.turnList).to(equal([@[turn] mutableCopy]));
        expect(testRequest.softButtons).to(equal([@[button] mutableCopy]));
    });
    
    it(@"Should return nil if not set", ^ {
        SDLUpdateTurnList* testRequest = [[SDLUpdateTurnList alloc] init];
        
        expect(testRequest.turnList).to(beNil());
        expect(testRequest.softButtons).to(beNil());
    });
});

QuickSpecEnd