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


#import <Foundation/Foundation.h>

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

#import "SDLAppHMIType.h"
#import "SDLAppInfo.h"
#import "SDLDeviceInfo.h"
#import "SDLLanguage.h"
#import "SDLNames.h"
#import "SDLRegisterAppInterface.h"
#import "SDLSyncMsgVersion.h"
#import "SDLTTSChunk.h"


QuickSpecBegin(SDLRegisterAppInterfaceSpec)

SDLSyncMsgVersion* version = [[SDLSyncMsgVersion alloc] init];
SDLTTSChunk* chunk = [[SDLTTSChunk alloc] init];
SDLDeviceInfo* info = [[SDLDeviceInfo alloc] init];
SDLAppInfo* appInfo = [[SDLAppInfo alloc] init];

describe(@"Getter/Setter Tests", ^ {
    it(@"Should set and get correctly", ^ {
        SDLRegisterAppInterface* testRequest = [[SDLRegisterAppInterface alloc] init];
        
        testRequest.syncMsgVersion = version;
        testRequest.appName = @"app56";
        testRequest.ttsName = [@[chunk] mutableCopy];
        testRequest.ngnMediaScreenAppName = @"whatisanngn";
        testRequest.vrSynonyms = [@[@"paraphrase of the original name"] mutableCopy];
        testRequest.isMediaApplication = @NO;
        testRequest.languageDesired = SDLLanguageNoNo;
        testRequest.hmiDisplayLanguageDesired = SDLLanguagePtPt;
        testRequest.appHMIType = [@[SDLAppHMITypeMessaging, SDLAppHMITypeInformation] copy];
        testRequest.hashID = @"gercd35grw2";
        testRequest.deviceInfo = info;
        testRequest.appID = @"123456789";
        testRequest.appInfo = appInfo;
        
        expect(testRequest.syncMsgVersion).to(equal(version));
        expect(testRequest.appName).to(equal(@"app56"));
        expect(testRequest.ttsName).to(equal([@[chunk] mutableCopy]));
        expect(testRequest.ngnMediaScreenAppName).to(equal(@"whatisanngn"));
        expect(testRequest.vrSynonyms).to(equal([@[@"paraphrase of the original name"] mutableCopy]));
        expect(testRequest.isMediaApplication).to(equal(@NO));
        expect(testRequest.languageDesired).to(equal(SDLLanguageNoNo));
        expect(testRequest.hmiDisplayLanguageDesired).to(equal(SDLLanguagePtPt));
        expect(testRequest.appHMIType).to(equal([@[SDLAppHMITypeMessaging, SDLAppHMITypeInformation] copy]));
        expect(testRequest.hashID).to(equal(@"gercd35grw2"));
        expect(testRequest.deviceInfo).to(equal(info));
        expect(testRequest.appID).to(equal(@"123456789"));
        expect(testRequest.appInfo).to(equal(appInfo));
    });
    
    it(@"Should get correctly when initialized", ^ {
        NSMutableDictionary* dict = [@{NAMES_request:
                                           @{NAMES_parameters:
                                                 @{NAMES_syncMsgVersion:version,
                                                   NAMES_appName:@"app56",
                                                   NAMES_ttsName:[@[chunk] mutableCopy],
                                                   NAMES_ngnMediaScreenAppName:@"whatisanngn",
                                                   NAMES_vrSynonyms:[@[@"paraphrase of the original name"] mutableCopy],
                                                   NAMES_isMediaApplication:@NO,
                                                   NAMES_languageDesired:SDLLanguageNoNo,
                                                   NAMES_hmiDisplayLanguageDesired:SDLLanguagePtPt,
                                                   NAMES_appHMIType:[@[SDLAppHMITypeMessaging, SDLAppHMITypeInformation] copy],
                                                   NAMES_hashID:@"gercd35grw2",
                                                   NAMES_deviceInfo:info,
                                                   NAMES_appID:@"123456789",
                                                   NAMES_appInfo:appInfo},
                                             NAMES_operation_name:NAMES_RegisterAppInterface}} mutableCopy];
        SDLRegisterAppInterface* testRequest = [[SDLRegisterAppInterface alloc] initWithDictionary:dict];
        
        expect(testRequest.syncMsgVersion).to(equal(version));
        expect(testRequest.appName).to(equal(@"app56"));
        expect(testRequest.ttsName).to(equal([@[chunk] mutableCopy]));
        expect(testRequest.ngnMediaScreenAppName).to(equal(@"whatisanngn"));
        expect(testRequest.vrSynonyms).to(equal([@[@"paraphrase of the original name"] mutableCopy]));
        expect(testRequest.isMediaApplication).to(equal(@NO));
        expect(testRequest.languageDesired).to(equal(SDLLanguageNoNo));
        expect(testRequest.hmiDisplayLanguageDesired).to(equal(SDLLanguagePtPt));
        expect(testRequest.appHMIType).to(equal([@[SDLAppHMITypeMessaging, SDLAppHMITypeInformation] copy]));
        expect(testRequest.hashID).to(equal(@"gercd35grw2"));
        expect(testRequest.deviceInfo).to(equal(info));
        expect(testRequest.appID).to(equal(@"123456789"));
        expect(testRequest.appInfo).to(equal(appInfo));
    });
    
    it(@"Should return nil if not set", ^ {
        SDLRegisterAppInterface* testRequest = [[SDLRegisterAppInterface alloc] init];
        
        expect(testRequest.syncMsgVersion).to(beNil());
        expect(testRequest.appName).to(beNil());
        expect(testRequest.ttsName).to(beNil());
        expect(testRequest.ngnMediaScreenAppName).to(beNil());
        expect(testRequest.vrSynonyms).to(beNil());
        expect(testRequest.isMediaApplication).to(beNil());
        expect(testRequest.languageDesired).to(beNil());
        expect(testRequest.hmiDisplayLanguageDesired).to(beNil());
        expect(testRequest.appHMIType).to(beNil());
        expect(testRequest.hashID).to(beNil());
        expect(testRequest.deviceInfo).to(beNil());
        expect(testRequest.appID).to(beNil());
        expect(testRequest.appInfo).to(beNil());
    });
});

QuickSpecEnd