summaryrefslogtreecommitdiff
path: root/SmartDeviceLink-iOS/SmartDeviceLinkTests/RPCSpecs/StructSpecs/SDLBeltStatusSpec.m
blob: e0d8c4883027345623794ab81dfb9b0f85dcb7bc (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
//
//  SDLBeltStatusSpec.m
//  SmartDeviceLink


#import <Foundation/Foundation.h>

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

#import "SDLBeltStatus.h"
#import "SDLNames.h"
#import "SDLVehicleDataEventStatus.h"


QuickSpecBegin(SDLBeltStatusSpec)

describe(@"Getter/Setter Tests", ^ {
    it(@"Should set and get correctly", ^ {
        SDLBeltStatus* testStruct = [[SDLBeltStatus alloc] init];
        
        testStruct.driverBeltDeployed = [SDLVehicleDataEventStatus _YES];
        testStruct.passengerBeltDeployed = [SDLVehicleDataEventStatus NO_EVENT];
        testStruct.passengerBuckleBelted = [SDLVehicleDataEventStatus FAULT];
        testStruct.driverBuckleBelted = [SDLVehicleDataEventStatus _YES];
        testStruct.leftRow2BuckleBelted = [SDLVehicleDataEventStatus FAULT];
        testStruct.passengerChildDetected = [SDLVehicleDataEventStatus NOT_SUPPORTED];
        testStruct.rightRow2BuckleBelted = [SDLVehicleDataEventStatus _YES];
        testStruct.middleRow2BuckleBelted = [SDLVehicleDataEventStatus NO_EVENT];
        testStruct.middleRow3BuckleBelted = [SDLVehicleDataEventStatus NOT_SUPPORTED];
        testStruct.leftRow3BuckleBelted = [SDLVehicleDataEventStatus _YES];
        testStruct.rightRow3BuckleBelted = [SDLVehicleDataEventStatus _NO];
        testStruct.leftRearInflatableBelted = [SDLVehicleDataEventStatus NOT_SUPPORTED];
        testStruct.rightRearInflatableBelted = [SDLVehicleDataEventStatus FAULT];
        testStruct.middleRow1BeltDeployed = [SDLVehicleDataEventStatus _YES];
        testStruct.middleRow1BuckleBelted = [SDLVehicleDataEventStatus _NO];
        
        expect(testStruct.driverBeltDeployed).to(equal([SDLVehicleDataEventStatus _YES]));
        expect(testStruct.passengerBeltDeployed).to(equal([SDLVehicleDataEventStatus NO_EVENT]));
        expect(testStruct.passengerBuckleBelted).to(equal([SDLVehicleDataEventStatus FAULT]));
        expect(testStruct.driverBuckleBelted).to(equal([SDLVehicleDataEventStatus _YES]));
        expect(testStruct.leftRow2BuckleBelted).to(equal([SDLVehicleDataEventStatus FAULT]));
        expect(testStruct.passengerChildDetected).to(equal([SDLVehicleDataEventStatus NOT_SUPPORTED]));
        expect(testStruct.rightRow2BuckleBelted).to(equal([SDLVehicleDataEventStatus _YES]));
        expect(testStruct.middleRow2BuckleBelted).to(equal([SDLVehicleDataEventStatus NO_EVENT]));
        expect(testStruct.middleRow3BuckleBelted).to(equal([SDLVehicleDataEventStatus NOT_SUPPORTED]));
        expect(testStruct.leftRow3BuckleBelted).to(equal([SDLVehicleDataEventStatus _YES]));
        expect(testStruct.rightRow3BuckleBelted).to(equal([SDLVehicleDataEventStatus _NO]));
        expect(testStruct.leftRearInflatableBelted).to(equal([SDLVehicleDataEventStatus NOT_SUPPORTED]));
        expect(testStruct.rightRearInflatableBelted).to(equal([SDLVehicleDataEventStatus FAULT]));
        expect(testStruct.middleRow1BeltDeployed).to(equal([SDLVehicleDataEventStatus _YES]));
        expect(testStruct.middleRow1BuckleBelted).to(equal([SDLVehicleDataEventStatus _NO]));
    });
    
    it(@"Should get correctly when initialized", ^ {
        NSMutableDictionary* dict = [@{NAMES_driverBeltDeployed:[SDLVehicleDataEventStatus NO_EVENT],
                                       NAMES_passengerBeltDeployed:[SDLVehicleDataEventStatus _YES],
                                       NAMES_passengerBuckleBelted:[SDLVehicleDataEventStatus _NO],
                                       NAMES_driverBuckleBelted:[SDLVehicleDataEventStatus FAULT],
                                       NAMES_leftRow2BuckleBelted:[SDLVehicleDataEventStatus _YES],
                                       NAMES_passengerChildDetected:[SDLVehicleDataEventStatus _NO],
                                       NAMES_rightRow2BuckleBelted:[SDLVehicleDataEventStatus NOT_SUPPORTED],
                                       NAMES_middleRow2BuckleBelted:[SDLVehicleDataEventStatus NO_EVENT],
                                       NAMES_middleRow3BuckleBelted:[SDLVehicleDataEventStatus _YES],
                                       NAMES_leftRow3BuckleBelted:[SDLVehicleDataEventStatus FAULT],
                                       NAMES_rightRow3BuckleBelted:[SDLVehicleDataEventStatus _NO],
                                       NAMES_leftRearInflatableBelted:[SDLVehicleDataEventStatus NOT_SUPPORTED],
                                       NAMES_rightRearInflatableBelted:[SDLVehicleDataEventStatus FAULT],
                                       NAMES_middleRow1BeltDeployed:[SDLVehicleDataEventStatus NO_EVENT],
                                       NAMES_middleRow1BuckleBelted:[SDLVehicleDataEventStatus NOT_SUPPORTED]} mutableCopy];
        SDLBeltStatus* testStruct = [[SDLBeltStatus alloc] initWithDictionary:dict];
        
        expect(testStruct.driverBeltDeployed).to(equal([SDLVehicleDataEventStatus NO_EVENT]));
        expect(testStruct.passengerBeltDeployed).to(equal([SDLVehicleDataEventStatus _YES]));
        expect(testStruct.passengerBuckleBelted).to(equal([SDLVehicleDataEventStatus _NO]));
        expect(testStruct.driverBuckleBelted).to(equal([SDLVehicleDataEventStatus FAULT]));
        expect(testStruct.leftRow2BuckleBelted).to(equal([SDLVehicleDataEventStatus _YES]));
        expect(testStruct.passengerChildDetected).to(equal([SDLVehicleDataEventStatus _NO]));
        expect(testStruct.rightRow2BuckleBelted).to(equal([SDLVehicleDataEventStatus NOT_SUPPORTED]));
        expect(testStruct.middleRow2BuckleBelted).to(equal([SDLVehicleDataEventStatus NO_EVENT]));
        expect(testStruct.middleRow3BuckleBelted).to(equal([SDLVehicleDataEventStatus _YES]));
        expect(testStruct.leftRow3BuckleBelted).to(equal([SDLVehicleDataEventStatus FAULT]));
        expect(testStruct.rightRow3BuckleBelted).to(equal([SDLVehicleDataEventStatus _NO]));
        expect(testStruct.leftRearInflatableBelted).to(equal([SDLVehicleDataEventStatus NOT_SUPPORTED]));
        expect(testStruct.rightRearInflatableBelted).to(equal([SDLVehicleDataEventStatus FAULT]));
        expect(testStruct.middleRow1BeltDeployed).to(equal([SDLVehicleDataEventStatus NO_EVENT]));
        expect(testStruct.middleRow1BuckleBelted).to(equal([SDLVehicleDataEventStatus NOT_SUPPORTED]));
    });
    
    it(@"Should return nil if not set", ^ {
        SDLBeltStatus* testStruct = [[SDLBeltStatus alloc] init];
        
        expect(testStruct.driverBeltDeployed).to(beNil());
        expect(testStruct.passengerBeltDeployed).to(beNil());
        expect(testStruct.passengerBuckleBelted).to(beNil());
        expect(testStruct.driverBuckleBelted).to(beNil());
        expect(testStruct.leftRow2BuckleBelted).to(beNil());
        expect(testStruct.passengerChildDetected).to(beNil());
        expect(testStruct.rightRow2BuckleBelted).to(beNil());
        expect(testStruct.middleRow2BuckleBelted).to(beNil());
        expect(testStruct.middleRow3BuckleBelted).to(beNil());
        expect(testStruct.leftRow3BuckleBelted).to(beNil());
        expect(testStruct.rightRow3BuckleBelted).to(beNil());
        expect(testStruct.leftRearInflatableBelted).to(beNil());
        expect(testStruct.rightRearInflatableBelted).to(beNil());
        expect(testStruct.middleRow1BeltDeployed).to(beNil());
        expect(testStruct.middleRow1BuckleBelted).to(beNil());
    });
});

QuickSpecEnd