@@ -37,7 +37,7 @@ SCENARIO("Arduino Cloud Properties are decoded", "[ArduinoCloudThing::decode]")
37
37
WHEN (" A boolean property is changed via CBOR message" )
38
38
{
39
39
PropertyContainer property_container;
40
-
40
+
41
41
CloudBool test = true ;
42
42
addPropertyToContainer (property_container, test, " test" , Permission::ReadWrite);
43
43
@@ -55,7 +55,7 @@ SCENARIO("Arduino Cloud Properties are decoded", "[ArduinoCloudThing::decode]")
55
55
{
56
56
/* An integer identifier has been encoded instead of the name of the property in order to have a shorter payload*/
57
57
PropertyContainer property_container;
58
-
58
+
59
59
CloudBool test = true ;
60
60
/* The property is added with identifier 1 that will be used instead of the string "test" as property identifier*/
61
61
addPropertyToContainer (property_container, test, " test" , Permission::ReadWrite, 1 );
@@ -73,8 +73,8 @@ SCENARIO("Arduino Cloud Properties are decoded", "[ArduinoCloudThing::decode]")
73
73
WHEN (" A positive int property is changed via CBOR message" )
74
74
{
75
75
PropertyContainer property_container;
76
-
77
- CloudInt test = 0 ;
76
+
77
+ CloudInt< int > test = 0 ;
78
78
addPropertyToContainer (property_container, test, " test" , Permission::ReadWrite);
79
79
80
80
/* [{0: "test", 2: 7}] = 81 A2 00 64 74 65 73 74 02 07 */
@@ -88,8 +88,8 @@ SCENARIO("Arduino Cloud Properties are decoded", "[ArduinoCloudThing::decode]")
88
88
WHEN (" A negative int property is changed via CBOR message" )
89
89
{
90
90
PropertyContainer property_container;
91
-
92
- CloudInt test = 0 ;
91
+
92
+ CloudInt< int > test = 0 ;
93
93
addPropertyToContainer (property_container, test, " test" , Permission::ReadWrite);
94
94
95
95
/* [{0: "test", 2: -7}] = 81 A2 00 64 74 65 73 74 02 26 */
@@ -105,7 +105,7 @@ SCENARIO("Arduino Cloud Properties are decoded", "[ArduinoCloudThing::decode]")
105
105
WHEN (" A float property is changed via CBOR message" )
106
106
{
107
107
PropertyContainer property_container;
108
-
108
+
109
109
CloudFloat test = 0 .0f ;
110
110
addPropertyToContainer (property_container, test, " test" , Permission::ReadWrite);
111
111
@@ -122,7 +122,7 @@ SCENARIO("Arduino Cloud Properties are decoded", "[ArduinoCloudThing::decode]")
122
122
WHEN (" A String property is changed via CBOR message" )
123
123
{
124
124
PropertyContainer property_container;
125
-
125
+
126
126
CloudString str_test;
127
127
str_test = " test" ;
128
128
addPropertyToContainer (property_container, str_test, " test" , Permission::ReadWrite);
@@ -139,7 +139,7 @@ SCENARIO("Arduino Cloud Properties are decoded", "[ArduinoCloudThing::decode]")
139
139
WHEN (" A Location property is changed via CBOR message" )
140
140
{
141
141
PropertyContainer property_container;
142
-
142
+
143
143
CloudLocation location_test = CloudLocation (0 , 1 );
144
144
addPropertyToContainer (property_container, location_test, " test" , Permission::ReadWrite);
145
145
@@ -157,7 +157,7 @@ SCENARIO("Arduino Cloud Properties are decoded", "[ArduinoCloudThing::decode]")
157
157
WHEN (" A Color property is changed via CBOR message" )
158
158
{
159
159
PropertyContainer property_container;
160
-
160
+
161
161
CloudColor color_test = CloudColor (0.0 , 0.0 , 0.0 );
162
162
163
163
addPropertyToContainer (property_container, color_test, " test" , Permission::ReadWrite);
@@ -181,7 +181,7 @@ SCENARIO("Arduino Cloud Properties are decoded", "[ArduinoCloudThing::decode]")
181
181
{
182
182
/* An integer identifier has been encoded instead of the name of the property in order to have a shorter payload*/
183
183
PropertyContainer property_container;
184
-
184
+
185
185
CloudColor color_test = CloudColor (0.0 , 0.0 , 0.0 );
186
186
187
187
/* The property is added with identifier 1 that will be used instead of the string "test" as property identifier*/
@@ -205,7 +205,7 @@ SCENARIO("Arduino Cloud Properties are decoded", "[ArduinoCloudThing::decode]")
205
205
WHEN (" A ColoredLight property is changed via CBOR message" )
206
206
{
207
207
PropertyContainer property_container;
208
-
208
+
209
209
CloudColoredLight color_test = CloudColoredLight (false , 0.0 , 0.0 , 0.0 );
210
210
211
211
addPropertyToContainer (property_container, color_test, " test" , Permission::ReadWrite);
@@ -229,7 +229,7 @@ SCENARIO("Arduino Cloud Properties are decoded", "[ArduinoCloudThing::decode]")
229
229
WHEN (" A Television property is changed via CBOR message" )
230
230
{
231
231
PropertyContainer property_container;
232
-
232
+
233
233
CloudTelevision tv_test = CloudTelevision (false , 0 , false , PlaybackCommands::Stop, InputValue::AUX1, 0 );
234
234
235
235
addPropertyToContainer (property_container, tv_test, " test" , Permission::ReadWrite);
@@ -255,7 +255,7 @@ SCENARIO("Arduino Cloud Properties are decoded", "[ArduinoCloudThing::decode]")
255
255
WHEN (" A DimmedLight property is changed via CBOR message" )
256
256
{
257
257
PropertyContainer property_container;
258
-
258
+
259
259
CloudDimmedLight light_test = CloudDimmedLight (false , 0.0 );
260
260
261
261
addPropertyToContainer (property_container, light_test, " test" , Permission::ReadWrite);
@@ -277,7 +277,7 @@ SCENARIO("Arduino Cloud Properties are decoded", "[ArduinoCloudThing::decode]")
277
277
WHEN (" A Light property is changed via CBOR message" )
278
278
{
279
279
PropertyContainer property_container;
280
-
280
+
281
281
CloudLight light_test;
282
282
light_test = false ;
283
283
@@ -295,7 +295,7 @@ SCENARIO("Arduino Cloud Properties are decoded", "[ArduinoCloudThing::decode]")
295
295
WHEN (" A ContactSensor property is changed via CBOR message" )
296
296
{
297
297
PropertyContainer property_container;
298
-
298
+
299
299
CloudContactSensor contact_test;
300
300
contact_test = false ;
301
301
@@ -313,7 +313,7 @@ SCENARIO("Arduino Cloud Properties are decoded", "[ArduinoCloudThing::decode]")
313
313
WHEN (" A MotionSensor property is changed via CBOR message" )
314
314
{
315
315
PropertyContainer property_container;
316
-
316
+
317
317
CloudMotionSensor motion_test;
318
318
motion_test = false ;
319
319
@@ -331,7 +331,7 @@ SCENARIO("Arduino Cloud Properties are decoded", "[ArduinoCloudThing::decode]")
331
331
WHEN (" A SmartPlug property is changed via CBOR message" )
332
332
{
333
333
PropertyContainer property_container;
334
-
334
+
335
335
CloudSmartPlug plug_test;
336
336
plug_test = false ;
337
337
@@ -349,7 +349,7 @@ SCENARIO("Arduino Cloud Properties are decoded", "[ArduinoCloudThing::decode]")
349
349
WHEN (" A Switch property is changed via CBOR message" )
350
350
{
351
351
PropertyContainer property_container;
352
-
352
+
353
353
CloudSwitch switch_test;
354
354
switch_test = false ;
355
355
@@ -367,7 +367,7 @@ SCENARIO("Arduino Cloud Properties are decoded", "[ArduinoCloudThing::decode]")
367
367
WHEN (" A Temperature property is changed via CBOR message" )
368
368
{
369
369
PropertyContainer property_container;
370
-
370
+
371
371
CloudTemperatureSensor test;
372
372
test = 0 .0f ;
373
373
addPropertyToContainer (property_container, test, " test" , Permission::ReadWrite);
@@ -414,8 +414,8 @@ SCENARIO("Arduino Cloud Properties are decoded", "[ArduinoCloudThing::decode]")
414
414
CBORDecoder::decode (property_container, payload, sizeof (payload) / sizeof (uint8_t ));
415
415
416
416
Schedule schedule_compare = Schedule (1633305600 , 1633651200 , 600 , 1140850708 );
417
- Schedule value_schedule_test = schedule_test.getValue ();
418
-
417
+ Schedule value_schedule_test = schedule_test.getValue ();
418
+
419
419
bool verify = (value_schedule_test == schedule_compare);
420
420
REQUIRE (verify);
421
421
REQUIRE (value_schedule_test.frm == schedule_compare.frm );
@@ -431,11 +431,11 @@ SCENARIO("Arduino Cloud Properties are decoded", "[ArduinoCloudThing::decode]")
431
431
WHEN (" Multiple properties of different type are changed via CBOR message" )
432
432
{
433
433
PropertyContainer property_container;
434
-
435
- CloudBool bool_test = false ;
436
- CloudInt int_test = 1 ;
437
- CloudFloat float_test = 2 .0f ;
438
- CloudString str_test;
434
+
435
+ CloudBool bool_test = false ;
436
+ CloudInt< int > int_test = 1 ;
437
+ CloudFloat float_test = 2 .0f ;
438
+ CloudString str_test;
439
439
str_test = (" str_test" );
440
440
441
441
addPropertyToContainer (property_container, bool_test, " bool_test" , Permission::ReadWrite);
@@ -460,11 +460,11 @@ SCENARIO("Arduino Cloud Properties are decoded", "[ArduinoCloudThing::decode]")
460
460
WHEN (" Multiple properties of different type are synchronized via CBOR message. FORCE_CLOUD_SYNC is passed as synchronization function and as a consequence values contained in the incoming message are stored in the properties" )
461
461
{
462
462
PropertyContainer property_container;
463
-
464
- CloudBool bool_test = false ;
465
- CloudInt int_test = 1 ;
466
- CloudFloat float_test = 2 .0f ;
467
- CloudString str_test;
463
+
464
+ CloudBool bool_test = false ;
465
+ CloudInt< int > int_test = 1 ;
466
+ CloudFloat float_test = 2 .0f ;
467
+ CloudString str_test;
468
468
str_test = (" str_test" );
469
469
470
470
addPropertyToContainer (property_container, bool_test, " bool_test" , Permission::ReadWrite).onSync (CLOUD_WINS);
@@ -489,14 +489,14 @@ SCENARIO("Arduino Cloud Properties are decoded", "[ArduinoCloudThing::decode]")
489
489
WHEN (" Multiple primitive properties of different type are synchronized via CBOR message. FORCE_CLOUD_SYNC is passed as synchronization function and as a consequence values contained in the incoming message are stored in the properties" )
490
490
{
491
491
PropertyContainer property_container;
492
-
492
+
493
493
int int_test = 1 ;
494
494
bool bool_test = false ;
495
495
float float_test = 2 .0f ;
496
496
String str_test;
497
497
str_test = " str_test" ;
498
498
499
- std::unique_ptr<Property> i (new CloudWrapperInt (int_test));
499
+ std::unique_ptr<Property> i (new CloudWrapperInt< int > (int_test));
500
500
std::unique_ptr<Property> b (new CloudWrapperBool (bool_test));
501
501
std::unique_ptr<Property> f (new CloudWrapperFloat (float_test));
502
502
std::unique_ptr<Property> s (new CloudWrapperString (str_test));
@@ -525,7 +525,7 @@ SCENARIO("Arduino Cloud Properties are decoded", "[ArduinoCloudThing::decode]")
525
525
WHEN (" Multiple String properties are changed via CBOR message" )
526
526
{
527
527
PropertyContainer property_container;
528
-
528
+
529
529
CloudString str_1 (" hello" ),
530
530
str_2 (" arduino" ),
531
531
str_3 (" cloud" ),
@@ -554,7 +554,7 @@ SCENARIO("Arduino Cloud Properties are decoded", "[ArduinoCloudThing::decode]")
554
554
WHEN (" A payload containing a CBOR base name is parsed" )
555
555
{
556
556
PropertyContainer property_container;
557
-
557
+
558
558
CloudString str = " hello" ;
559
559
addPropertyToContainer (property_container, str, " test" , Permission::ReadWrite);
560
560
@@ -570,8 +570,8 @@ SCENARIO("Arduino Cloud Properties are decoded", "[ArduinoCloudThing::decode]")
570
570
WHEN (" A payload containing a CBOR base time is parsed" )
571
571
{
572
572
PropertyContainer property_container;
573
-
574
- CloudInt test = 0 ;
573
+
574
+ CloudInt< int > test = 0 ;
575
575
addPropertyToContainer (property_container, test, " test" , Permission::ReadWrite);
576
576
577
577
/* [{-3: 123.456, 0: "test", 2: 1}] = 81 A3 22 FB 40 5E DD 2F 1A 9F BE 77 00 64 74 65 73 74 02 01 */
@@ -586,8 +586,8 @@ SCENARIO("Arduino Cloud Properties are decoded", "[ArduinoCloudThing::decode]")
586
586
WHEN (" A payload containing a CBOR time is parsed" )
587
587
{
588
588
PropertyContainer property_container;
589
-
590
- CloudInt test = 0 ;
589
+
590
+ CloudInt< int > test = 0 ;
591
591
addPropertyToContainer (property_container, test, " test" , Permission::ReadWrite);
592
592
593
593
/* [{6: 123.456, 0: "test", 2: 1}] = 81 A3 06 FB 40 5E DD 2F 1A 9F BE 77 00 64 74 65 73 74 02 01 */
@@ -602,8 +602,8 @@ SCENARIO("Arduino Cloud Properties are decoded", "[ArduinoCloudThing::decode]")
602
602
WHEN (" A payload containing a CBOR BaseVersion is parsed" )
603
603
{
604
604
PropertyContainer property_container;
605
-
606
- CloudInt test = 0 ;
605
+
606
+ CloudInt< int > test = 0 ;
607
607
addPropertyToContainer (property_container, test, " test" , Permission::ReadWrite);
608
608
609
609
/* [{-1: 1, 0: "test", 2: 1}] = 81 A3 20 01 00 64 74 65 73 74 02 01 */
@@ -618,8 +618,8 @@ SCENARIO("Arduino Cloud Properties are decoded", "[ArduinoCloudThing::decode]")
618
618
WHEN (" A payload containing a CBOR BaseName, BaseTime and Time is parsed" )
619
619
{
620
620
PropertyContainer property_container;
621
-
622
- CloudInt test = 0 ;
621
+
622
+ CloudInt< int > test = 0 ;
623
623
addPropertyToContainer (property_container, test, " test" , Permission::ReadWrite);
624
624
625
625
/* [{-2: "base-name", -3: 654.321, 6: 123.456, 0: "test", 2: 1}] =
@@ -636,8 +636,8 @@ SCENARIO("Arduino Cloud Properties are decoded", "[ArduinoCloudThing::decode]")
636
636
WHEN (" A payload containing a invalid CBOR key is parsed" )
637
637
{
638
638
PropertyContainer property_container;
639
-
640
- CloudInt test = 0 ;
639
+
640
+ CloudInt< int > test = 0 ;
641
641
addPropertyToContainer (property_container, test, " test" , Permission::ReadWrite);
642
642
643
643
/* [{123: 123, 0: "test", 2: 1}] = 81 A3 18 7B 18 7B 00 64 74 65 73 74 02 01 */
0 commit comments