@@ -24,7 +24,7 @@ require('user_modules/AppTypes')
2424
2525--[[ Local Variables ]]
2626local iTimeout = 5000
27- local strMaxLengthFileName255 = string.rep (" a" , 251 ) .. " .png" -- set max length file name
27+ local strMaxLengthFileName242 = string.rep (" a" , 238 ) .. " .png" -- max is 242 since docker limitation
2828local textPromtValue = {" Please speak one of the following commands," , " Please say a command," }
2929
3030local storagePath = commonPreconditions :GetPathToSDL () .. " storage/" .. config .application1 .registerAppInterfaceParams .appID .. " _" .. config .deviceMAC .. " /"
514514
515515-- 2. PutFiles
516516 commonSteps :PutFile (" PutFile_action.png" , " action.png" )
517- commonSteps :PutFile (" PutFile_MaxLength_255Characters" , strMaxLengthFileName255 )
517+ commonSteps :PutFile (" PutFile_MaxLength_255Characters" , strMaxLengthFileName242 )
518518 commonSteps :PutFile (" Putfile_SpaceBefore" , " SpaceBefore" )
519519 commonSteps :PutFile (" Putfile_Icon.png" , " icon.png" )
520520
@@ -679,17 +679,7 @@ function Test:ResetGlobalProperties_PositiveCase()
679679 -- hmi side: expect TTS.SetGlobalProperties request
680680 EXPECT_HMICALL (" TTS.SetGlobalProperties" ,
681681 {
682- helpPrompt =
683- {
684- {
685- type = " TEXT" ,
686- text = textPromtValue [1 ]
687- },
688- {
689- type = " TEXT" ,
690- text = textPromtValue [2 ]
691- }
692- },
682+ helpPrompt = { },
693683 timeoutPrompt =
694684 {
695685 {
@@ -1226,10 +1216,10 @@ function Test:ListFiles()
12261216 {
12271217 success = true ,
12281218 resultCode = " SUCCESS" ,
1229- spaceAvailable = 103878520
1219+ -- spaceAvailable = 103878520 -- disabled due to CI issue
12301220 })
12311221 :ValidIf (function (_ , data )
1232- local files_expected = { " SpaceBefore" , strMaxLengthFileName255 , " icon.png" }
1222+ local files_expected = { " SpaceBefore" , strMaxLengthFileName242 , " icon.png" }
12331223 if not commonFunctions :is_table_equal (data .payload .filenames , files_expected ) then
12341224 return false , " \n Expected files:\n " .. commonFunctions :convertTableToString (files_expected , 1 )
12351225 .. " \n Actual files:\n " .. commonFunctions :convertTableToString (data .payload .filenames , 1 )
@@ -2781,12 +2771,6 @@ local function displayCap_textFields_Value()
27812771 rows = 1 ,
27822772 width = 500
27832773 },
2784- {
2785- characterSet = " TYPE2SET" ,
2786- name = " turnText" ,
2787- rows = 1 ,
2788- width = 500
2789- },
27902774 {
27912775 characterSet = " TYPE2SET" ,
27922776 name = " menuTitle" ,
@@ -3259,7 +3243,23 @@ local function setGVDResponse(paramsSend)
32593243 gps =
32603244 {
32613245 longitudeDegrees = 25.5 ,
3262- latitudeDegrees = 45.5
3246+ latitudeDegrees = 45.5 ,
3247+ utcYear = 2010 ,
3248+ utcMonth = 1 ,
3249+ utcDay = 1 ,
3250+ utcHours = 2 ,
3251+ utcMinutes = 3 ,
3252+ utcSeconds = 4 ,
3253+ compassDirection = " NORTH" ,
3254+ pdop = 1.1 ,
3255+ hdop = 2.2 ,
3256+ vdop = 3.3 ,
3257+ actual = true ,
3258+ satellites = 5 ,
3259+ dimension = " NO_FIX" ,
3260+ altitude = 4.4 ,
3261+ heading = 5.5 ,
3262+ speed = 100
32633263 },
32643264 speed = 100.5 ,
32653265 rpm = 1000 ,
@@ -3271,18 +3271,48 @@ local function setGVDResponse(paramsSend)
32713271 prndl = " DRIVE" ,
32723272 tirePressure = {
32733273 pressureTelltale = " ON" ,
3274+ leftFront = { status = " NORMAL" },
3275+ rightFront = { status = " NORMAL" },
3276+ leftRear = { status = " NORMAL" },
3277+ rightRear = { status = " NORMAL" },
3278+ innerLeftRear = { status = " NORMAL" },
3279+ innerRightRear = { status = " NORMAL" }
32743280 },
32753281 odometer = 8888 ,
32763282 beltStatus = {
3277- driverBeltDeployed = " NOT_SUPPORTED"
3283+ driverBeltDeployed = " NOT_SUPPORTED" ,
3284+ passengerBeltDeployed = " YES" ,
3285+ passengerBuckleBelted = " YES" ,
3286+ driverBuckleBelted = " YES" ,
3287+ leftRow2BuckleBelted = " YES" ,
3288+ passengerChildDetected = " YES" ,
3289+ rightRow2BuckleBelted = " YES" ,
3290+ middleRow2BuckleBelted = " YES" ,
3291+ middleRow3BuckleBelted = " YES" ,
3292+ leftRow3BuckleBelted = " YES" ,
3293+ rightRow3BuckleBelted = " YES" ,
3294+ leftRearInflatableBelted = " YES" ,
3295+ rightRearInflatableBelted = " YES" ,
3296+ middleRow1BeltDeployed = " YES" ,
3297+ middleRow1BuckleBelted = " YES"
32783298 },
32793299 bodyInformation = {
32803300 parkBrakeActive = true ,
32813301 ignitionStableStatus = " MISSING_FROM_TRANSMITTER" ,
32823302 ignitionStatus = " UNKNOWN"
32833303 },
32843304 deviceStatus = {
3285- voiceRecOn = true
3305+ voiceRecOn = true ,
3306+ btIconOn = true ,
3307+ callActive = true ,
3308+ phoneRoaming = true ,
3309+ textMsgAvailable = true ,
3310+ battLevelStatus = " ONE_LEVEL_BARS" ,
3311+ stereoAudioOutputMuted = true ,
3312+ monoAudioOutputMuted = true ,
3313+ signalLevelStatus = " TWO_LEVEL_BARS" ,
3314+ primaryAudioSource = " USB" ,
3315+ eCallEventActive = true
32863316 },
32873317 driverBraking = " NOT_SUPPORTED" ,
32883318 wiperStatus = " MAN_LOW" ,
@@ -3416,7 +3446,7 @@ local function setExTurnList(size)
34163446 navigationText =
34173447 {
34183448 fieldText = " Text" ,
3419- fieldName = " turnText "
3449+ fieldName = " navigationText "
34203450 },
34213451 turnIcon =
34223452 {
@@ -3433,7 +3463,7 @@ local function setExTurnList(size)
34333463 navigationText =
34343464 {
34353465 fieldText = " Text" .. i ,
3436- fieldName = " turnText "
3466+ fieldName = " navigationText "
34373467 },
34383468 turnIcon =
34393469 {
0 commit comments