summaryrefslogtreecommitdiffstats
path: root/src/usr/targeting/test/testAttribute.H
blob: 8014f13975287b8746a4c9f8547ed6fc66fa24e6 (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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
/* IBM_PROLOG_BEGIN_TAG                                                   */
/* This is an automatically generated prolog.                             */
/*                                                                        */
/* $Source: src/usr/targeting/test/testAttribute.H $                      */
/*                                                                        */
/* OpenPOWER HostBoot Project                                             */
/*                                                                        */
/* Contributors Listed Below - COPYRIGHT 2011,2019                        */
/* [+] International Business Machines Corp.                              */
/*                                                                        */
/*                                                                        */
/* Licensed under the Apache License, Version 2.0 (the "License");        */
/* you may not use this file except in compliance with the License.       */
/* You may obtain a copy of the License at                                */
/*                                                                        */
/*     http://www.apache.org/licenses/LICENSE-2.0                         */
/*                                                                        */
/* Unless required by applicable law or agreed to in writing, software    */
/* distributed under the License is distributed on an "AS IS" BASIS,      */
/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or        */
/* implied. See the License for the specific language governing           */
/* permissions and limitations under the License.                         */
/*                                                                        */
/* IBM_PROLOG_END_TAG                                                     */

#ifndef __TEST_ATTRIBUTE_H
#define __TEST_ATTRIBUTE_H

/**
 *  @file targeting/test/testAttribute.H
 *
 *  @brief Unit test for TARGETING::AttributeTank::Attribute
 */

//******************************************************************************
// Includes
//******************************************************************************

// CXX TEST
#include <cxxtest/TestSuite.H>

#include <targeting/common/attributeTank.H>

using namespace TARGETING;

class AttributeTest: public CxxTest::TestSuite
{
public:
    /**
     *  @test Tests the setters and getter methods
     */
    void testSimpleSettersAndGetters(void);

    /**
     *  @test Test setting the Attribute Value
     */
    void testSettingAndGettingValue(void);

    /**
     *  @test Test Serialize and Deserialize methods
     */
    void testSerializeAndDeserializeMethod(void);

    /**
     *  @test Test the Operator Equal method
     */
    void testOperatorEqual(void);

    /**
     *  @test Test the Copy Constructor Method
     */
    void testCopyConstructor(void);

    private:

    /**
     *  @test Compare the Attribute Header for the two given attributes
     *
     *  @param[in] l_attribute1 Attribute to compare with
     *  @param[in] l_attribute2 Attribute to compare with
     *
     *  @return true if Attribute Header's match, false otherwise
     */
    bool compareAttributeHeader(
                     const AttributeTank::Attribute* const l_attribute1,
                     const AttributeTank::Attribute* const l_attribute2);

    /**
     *  @test Compare the Attribute Values for the two given attributes
     *
     *  @param[in] l_attribute1 Attribute to compare with
     *  @param[in] l_attribute2 Attribute to compare with
     *
     *  @return true if Attribute Values` match, false otherwise
     */
    bool compareAttributeValues(
                     const AttributeTank::Attribute* const l_attribute1,
                     const AttributeTank::Attribute* const l_attribute2);
};  //  end class AttributeTest


// testSimpleSettersAndGetters
void AttributeTest::testSimpleSettersAndGetters(void)
{
    TRACFCOMP( g_trac_test, ENTER_MRK "testSimpleSettersAndGetters" );

    // Test stats
    uint8_t l_numTests(0);
    uint8_t l_numFails(0);

    // Create an Attribute to test against
    TARGETING::AttributeTank::Attribute l_attribute;

    // Get a reference to the Attribute Header to test that
    // what is returned is truly a reference and not a copy
    const TARGETING::AttributeTank::AttributeHeader &l_attributeHeader =
                                        l_attribute.getHeader();

    // Test setting/getting the Attribute ID
    ++l_numTests;
    l_attribute.setId(0x1001);
    if (0x1001 != l_attribute.getHeader().iv_attrId)
    {
        TS_FAIL("testSimpleSettersAndGetters: Test 1 - "
                "set/get Attribute ID failed; "
                "expected 0x1001 but got back 0x%X",
                l_attribute.getHeader().iv_attrId);
        ++l_numFails;
    }

    ++l_numTests;
    if (0x1001 != l_attributeHeader.iv_attrId)
    {
        TS_FAIL("testSimpleSettersAndGetters: Test 2 - get Attribute ID "
                "via Attribute Header reference failed; "
                "expected 0x1001 but got back 0x%X",
                l_attributeHeader.iv_attrId);
        ++l_numFails;
    }

    // Test setting/getting the Attribute Target Type
    ++l_numTests;
    l_attribute.setTargetType(0x2002);
    if (0x2002 != l_attribute.getHeader().iv_targetType)
    {
        TS_FAIL("testSimpleSettersAndGetters: Test 3 - "
                "set/get Attribute Target Type failed; "
                "expected 0x2002 but got back 0x%X",
                l_attribute.getHeader().iv_targetType);
        ++l_numFails;
    }

    ++l_numTests;
    if (0x2002 != l_attributeHeader.iv_targetType)
    {
        TS_FAIL("testSimpleSettersAndGetters: Test 4 - get Attribute "
                "Target Type via Attribute Header reference failed; "
                "expected 0x2002 but got back 0x%X",
                l_attributeHeader.iv_targetType);
        ++l_numFails;
    }

    // Test setting/getting the Attribute Position
    ++l_numTests;
    l_attribute.setPosition(0x3003);
    if (0x3003 != l_attribute.getHeader().iv_pos)
    {
        TS_FAIL("testSimpleSettersAndGetters: Test 5 - "
                "set/get Attribute Position failed; "
                "expected 0x3003 but got back 0x%X",
                l_attribute.getHeader().iv_pos);
        ++l_numFails;
    }

    ++l_numTests;
    if (0x3003 != l_attributeHeader.iv_pos)
    {
        TS_FAIL("testSimpleSettersAndGetters: Test 6 - get Attribute Position "
                "via Attribute Header reference failed; "
                "expected 0x3003 but got back 0x%X",
                l_attributeHeader.iv_pos);
        ++l_numFails;
    }

    // Test setting/getting the Attribute Unit Position
    ++l_numTests;
    l_attribute.setUnitPosition(0x4);
    if (0x4 != l_attribute.getHeader().iv_unitPos)
    {
        TS_FAIL("testSimpleSettersAndGetters: Test 7 - "
                "set/get Attribute Unit Position failed; "
                "expected 0x4 but got back 0x%X",
                l_attribute.getHeader().iv_unitPos);
        ++l_numFails;
    }

    ++l_numTests;
    if (0x4 != l_attributeHeader.iv_unitPos)
    {
       TS_FAIL("testSimpleSettersAndGetters: Test 8 - "
               "get Attribute Unit Position via Attribute Header reference "
               "failed; expected 0x4 but got back 0x%X",
               l_attributeHeader.iv_unitPos);
        ++l_numFails;
    }

    // Test setting/getting the Attribute Node
    ++l_numTests;
    l_attribute.setNode(0x5);
    if (0x5 != l_attribute.getHeader().iv_node)
    {
        TS_FAIL("testSimpleSettersAndGetters: Test 9 - "
                "set/get Attribute Node failed; "
                "expected 0x5 but got back 0x%X",
                l_attribute.getHeader().iv_node);
        ++l_numFails;
    }

    ++l_numTests;
    if (0x5 != l_attributeHeader.iv_node)
    {
        TS_FAIL("testSimpleSettersAndGetters: Test 10 - get Attribute Node "
                "via Attribute Header reference failed; "
                "expected 0x5 but got back 0x%X",
                l_attributeHeader.iv_node);
        ++l_numFails;
    }

    // Test setting/getting the Attribute Flags
    ++l_numTests;
    l_attribute.setFlags(0x6);
    if (0x6 != l_attribute.getHeader().iv_flags)
    {
        TS_FAIL("testSimpleSettersAndGetters: Test 11 - "
                "set/get Attribute Flags failed; "
                "expected 0x6 but got back 0x%X",
                l_attribute.getHeader().iv_flags);
        ++l_numFails;
    }

    ++l_numTests;
    if (0x6 != l_attributeHeader.iv_flags)
    {
        TS_FAIL("testSimpleSettersAndGetters: Test 12 - get Attribute Flags "
                "via Attribute Header reference failed; "
                "expected 0x6 but got back 0x%X",
                l_attributeHeader.iv_flags);
        ++l_numFails;
    }

    TRACFCOMP( g_trac_test, EXIT_MRK "testSimpleSettersAndGetters "
               "num tests = %d  / num fails = %d", l_numTests, l_numFails);
}  // end testSimpleSettersAndGetters


// testSettingAndGettingValue
void AttributeTest::testSettingAndGettingValue(void)
{
    TRACFCOMP( g_trac_test, ENTER_MRK "testSettingAndGettingValue" );

    // Test stats
    uint8_t l_numTests(0);
    uint8_t l_numFails(0);

    // Create an Attribute to test with
    TARGETING::AttributeTank::Attribute l_attribute;

    /// Test getting Size of the Attribute when no Value exists/has been set
    ++l_numTests;
    if (l_attribute.getSize() !=
                            sizeof(TARGETING::AttributeTank::AttributeHeader))
    {
        TS_FAIL("testSettingAndGettingValue: Test 1 - "
                 "get Attribute Size failed, when no value set; "
                 "expected size %d but got back size %d",
                 sizeof(TARGETING::AttributeTank::AttributeHeader),
                 l_attribute.getSize());
        ++l_numFails;
    }

    /// Test cloning the value when no Value exists/has been set
    // First create a buffer
    uint32_t l_bufferSize = 3;
    uint8_t l_buffer[l_bufferSize] = { 0 };
    uint8_t l_compareBuffer[l_bufferSize] = { 0 };

    uint32_t l_returnedSize = l_attribute.cloneValue(l_buffer, l_bufferSize);
    // Make sure 0 is returned
    ++l_numTests;
    if (0 != l_returnedSize)
    {
        TS_FAIL("testSettingAndGettingValue: Test 2 - "
                "Attribute clone value failed, with buffer size 0; "
                "expected size 0 but got back size %d",
                l_returnedSize);
        ++l_numFails;
    }

    // Make sure cloned data is correct
    ++l_numTests;
    if (0 != memcmp(l_buffer, l_compareBuffer, l_bufferSize))
    {
        TS_FAIL("testSettingAndGettingValue: Test 3 - "
                "Attribute clone value failed, with buffer size 0; "
                "incorrect data returned");
        ++l_numFails;
    }

    /// Test clearing the Value
    l_returnedSize = l_attribute.setValue(nullptr, 0);
    // Make sure 0 is returned
    ++l_numTests;
    if (0 != l_returnedSize)
    {
        TS_FAIL("testSettingAndGettingValue: Test 4 - "
                "returned Attribute Size failed, sent a value of size 0; "
                "expected size 0 but got back size %d",
                l_returnedSize);
        ++l_numFails;
    }

    // Make sure size is only the Attribute Header size
    ++l_numTests;
    if (l_attribute.getSize() !=
                            sizeof(TARGETING::AttributeTank::AttributeHeader))
    {
        TS_FAIL("testSettingAndGettingValue: Test 5 - "
                     "get Attribute Size failed, sent a value of size 0; "
                     "expected size %d but got back size %d",
                     sizeof(TARGETING::AttributeTank::AttributeHeader),
                     l_attribute.getSize());
        ++l_numFails;
    }

    // Make sure value is NULL
    ++l_numTests;
    if (nullptr != l_attribute.getValue())
    {
        TS_FAIL("testSettingAndGettingValue: Test 6 - "
                "get Attribute Value failed, sent a value of size 0; "
                "expected nullptr but got back %p",
                l_attribute.getValue());
        ++l_numFails;
    }

    /// Send in buffer with smaller size than actual size of buffer
    // Add data o the buffer
    l_buffer[0] = 0xAA;
    l_buffer[1] = 0xBB;
    l_buffer[2] = 0xCC;

    // Set the Attribute Value to the buffer's first element
    l_returnedSize = l_attribute.setValue(l_buffer, 1);
    // Make sure only 1 is returned
    ++l_numTests;
    if (1 != l_returnedSize)
    {
        TS_FAIL("testSettingAndGettingValue: Test 7 - "
                "returned Attribute Size failed, sent a value of size 1; "
                "expected size 1 but got back size %d",
                l_returnedSize);
        ++l_numFails;
    }

    // Make sure Attribute Value size is size of Attribute Header plus one
    ++l_numTests;
    if (l_attribute.getSize() !=
             (sizeof(TARGETING::AttributeTank::AttributeHeader) + 1))
    {
        TS_FAIL("testSettingAndGettingValue: Test 8 - "
                "get Attribute Size failed, sent a Value of size 1 "
                "expected size %d but got back size %d",
                sizeof(TARGETING::AttributeTank::AttributeHeader) + 1,
                l_attribute.getSize());
        ++l_numFails;
    }

    // Get a handle to the Value to do some testing on it
    const uint8_t* const l_value =
                reinterpret_cast<const uint8_t* const>(l_attribute.getValue());

    // Make sure Value is not NULL
    ++l_numTests;
    if (nullptr == l_value)
    {
        TS_FAIL("testSettingAndGettingValue: Test 9 - "
                     "get Attribute Value failed; "
                     "expected a non-null pointer but got back a null pointer");
        ++l_numFails;
    }

    // Make sure the first value is what we expect
    ++l_numTests;
    if (l_value[0] != 0xAA)
    {
        TS_FAIL("testSettingAndGettingValue: Test 10 - "
                "Accessing first value in Attribute Value failed; "
                "expected 0xAA but got back 0x%X",
                l_value[0]);
        ++l_numFails;
    }

    // Test cloning with Attribute
    uint8_t l_clonedBuffer[l_bufferSize] = { 0 };
    memset(l_compareBuffer, 0, l_bufferSize);
    l_compareBuffer[0] = 0xAA;
    l_returnedSize = l_attribute.cloneValue(l_clonedBuffer, l_bufferSize);
    // Make sure 1 is returned
    ++l_numTests;
    if (1 != l_returnedSize)
    {
        TS_FAIL("testSettingAndGettingValue: Test 11 - "
                "Attribute clone value failed, with buffer size 1; "
                "expected size 1 but got back size %d",
                l_returnedSize);
        ++l_numFails;
    }

    // Make sure the cloned data is correct
    ++l_numTests;
    if (0 != memcmp(l_clonedBuffer, l_compareBuffer, l_bufferSize))
    {
        TS_FAIL("testSettingAndGettingValue: Test 12 - "
                "Attribute clone value failed, with buffer size 1; "
                "incorrect data returned");
        ++l_numFails;
    }

    /// Send in buffer with actual size of said buffer
    // First set the buffer's values
    l_buffer[0] = 0xDD;
    l_buffer[1] = 0xEE;
    l_buffer[2] = 0xFF;
    l_returnedSize = l_attribute.setValue(l_buffer, l_bufferSize);

    // Make sure buffer size is returned correctly
    ++l_numTests;
    if (l_bufferSize != l_returnedSize)
    {
        TS_FAIL("testSettingAndGettingValue: Test 13 - "
                "returned Attribute Size failed, sent a buffer of size %d; "
                "expected size %d but got back size %d",
                l_bufferSize,
                l_bufferSize,
                l_returnedSize);
        ++l_numFails;
    }

    // Make sure Attribute Value size is size of Attribute Header
    // plus buffer size
    ++l_numTests;
    if (l_attribute.getSize() !=
            (sizeof(TARGETING::AttributeTank::AttributeHeader) + l_bufferSize))
    {
        TS_FAIL("testSettingAndGettingValue: Test 14 - "
              "get Attribute Size failed, sent a buffer of size %d; "
              "expected size %d but got back size %d",
              l_bufferSize,
              sizeof(TARGETING::AttributeTank::AttributeHeader) + l_bufferSize,
              l_attribute.getSize());
        ++l_numFails;
    }

    // Get a handle to the Value to do some testing on it
    const uint8_t* const l_value2 =
                reinterpret_cast<const uint8_t* const>(l_attribute.getValue());

    // Make sure Value is not NULL
    ++l_numTests;
    if (nullptr == l_value2)
    {
        TS_FAIL("testSettingAndGettingValue: Test 15 - "
                "get Attribute Value failed, sent a buffer of size %d "
                "expected a non-null pointer but got back a null pointer",
                l_bufferSize);
        ++l_numFails;
    }

    // Make sure the first value is what we expect
    ++l_numTests;
    if (l_value2[0] != 0xDD)
    {
        TS_FAIL("testSettingAndGettingValue: Test 16 - "
                "Accessing first value in Attribute Value failed, "
                "for a Value of size %d; "
                "expected 0xDD but got back 0x%X",
                l_bufferSize,
                l_value2[0]);
        ++l_numFails;
    }

    // Make sure the second value is what we expect
    ++l_numTests;
    if (l_value2[1] != 0xEE)
    {
        TS_FAIL("testSettingAndGettingValue: Test 17 - "
                "Accessing second value in Attribute Value failed, "
                "for a Value of size %d; "
                "expected 0xEE but got back 0x%X",
                l_bufferSize,
                l_value2[1]);
        ++l_numFails;
    }

    // Make sure the third value is what we expect
    ++l_numTests;
    if (l_value2[2] != 0xFF)
    {
        TS_FAIL("testSettingAndGettingValue: Test 18 - "
                "Accessing third value in Attribute Value failed, "
                "for a Value of size %d; "
                "expected 0xFF but got back 0x%X",
                l_bufferSize,
                l_value2[2]);
        ++l_numFails;
    }

    /// Make sure previously cloned data is an actually cloned and not
    /// a copy
    ++l_numTests;
    if (0 != memcmp(l_clonedBuffer, l_compareBuffer, l_bufferSize))
    {
        TS_FAIL("testSettingAndGettingValue: Test 19 - "
                "Attribute clone value failed, with buffer size 1; "
                "data not cloned but is a reference a pointer");
        ++l_numFails;
    }

    l_returnedSize = l_attribute.cloneValue(l_clonedBuffer, l_bufferSize);
    // Make sure 3 is returned
    ++l_numTests;
    if (3 != l_returnedSize)
    {
        TS_FAIL("testSettingAndGettingValue: Test 20 - "
                "returned Attribute clone value failed, with buffer size 3; "
                "expected size 3 but got back size %d",
                l_returnedSize);
        ++l_numFails;
    }

    /// Make sure previously cloned data is correct
    ++l_numTests;
    if (0 != memcmp(l_clonedBuffer, l_buffer, l_bufferSize))
    {
        TS_FAIL("testSettingAndGettingValue: Test 21 - "
                "Attribute clone value failed, with buffer size 3 ; "
                "incorrect data returned");
        ++l_numFails;
    }

    TRACFCOMP( g_trac_test, EXIT_MRK "testSettingAndGettingValue "
               "num tests = %d  / num fails = %d", l_numTests, l_numFails);
}  // end AttributeTest::testSettingAndGettingValue


// testSerializeAndDeserializeMethod
void AttributeTest::testSerializeAndDeserializeMethod(void)
{
    TRACFCOMP( g_trac_test, ENTER_MRK "testSerializeAndDeserializeMethod" );

    // Test stats
    uint8_t l_numTests(0);
    uint8_t l_numFails(0);

    // Create an Attribute to test with
    AttributeTank::Attribute l_attribute;
    // Get a copy of the Attribute Size for later purposes
    uint32_t l_attributeSize(l_attribute.getSize());

    /// Test serializing when attribute has no data at all
    {
        // Create a buffer to hold serialized data
        uint8_t* l_serializedData = new uint8_t[l_attributeSize];
        // Get the serialized data
        uint32_t l_returnedSize = l_attribute.serialize(l_serializedData,
                                                        l_attributeSize);

        // Make sure serialized data is the size expected
        ++l_numTests;
        if (l_returnedSize != l_attributeSize)
        {
            TS_FAIL("testSerializeAndDeserializeMethod: Test 1 - "
                    "Attribute Serialize failed, with a 0 size Data Value; "
                    "expected size %d but got back size %d",
                     l_attributeSize,
                     l_returnedSize);
            ++l_numFails;
        }

        // Make sure the serialized Attribute Header
        // matches original Attribute Header
        // Get a handle to Attribute Header
        AttributeTank::Attribute* l_attribute2 =
                 reinterpret_cast<AttributeTank::Attribute*>(l_serializedData);
        const AttributeTank::AttributeHeader & l_attributeHeader2 =
                                                     l_attribute2->getHeader();

        // Compare the two different Attribute Header for a match
        ++l_numTests;
        if (!compareAttributeHeader(l_attribute2, &l_attribute))
        {
            TS_FAIL("testSerializeAndDeserializeMethod: Test 2 - "
                    "Attribute Serialize failed, with a 0 size Data Value; "
                    "incorrect Attribute Header data returned");
            ++l_numFails;
        }

        // Make sure that the size of the Attribute Values is zero
        ++l_numTests;
        if (0 != l_attributeHeader2.iv_valSize)
        {
            TS_FAIL("testSerializeAndDeserializeMethod: Test 3 - "
                    "Attribute Serialize failed, with a 0 size Data Value; "
                    "Expected 0 size Data Value but %d was returned",
                    l_attributeHeader2.iv_valSize);
            ++l_numFails;
        }

        // Test deserialize
        {
            AttributeTank::Attribute l_attribute3;
            uint32_t l_returnedSize2 =
                    l_attribute3.deserialize(l_serializedData, l_returnedSize);

            // Make sure data size copied is correct
            ++l_numTests;
            if (l_returnedSize2 != l_returnedSize)
            {
                TS_FAIL("testSerializeAndDeserializeMethod: Test 4 - "
                     "Attribute Deserialize failed, with a 0 size Data Value; "
                     "expected size %d but got back size %d",
                     l_returnedSize,
                     l_returnedSize2);
                ++l_numFails;
            }

            // Make sure the Attribute Header matches original data
            ++l_numTests;
            if (!compareAttributeHeader(&l_attribute3, &l_attribute))
            {
                TS_FAIL("testSerializeAndDeserializeMethod: Test 5 - "
                     "Attribute deserialize failed, with a 0 size Data Value; "
                     "incorrect Attribute Header data returned");
                ++l_numFails;
            }

            // Test when buffer is too small
            ++l_numTests;
            AttributeTank::Attribute l_attribute4;
            l_returnedSize2 = l_attribute4.deserialize(l_serializedData,
                                                       l_returnedSize - 1);
            if (0 != l_returnedSize2)
            {
                TS_FAIL("testSerializeAndDeserializeMethod: Test 6 - "
                     "Attribute Deserialize failed, with too small of buffer;"
                     "expected size 0 but got back size %d",
                     l_returnedSize2);
                ++l_numFails;
            }
        }
        // Cleanup memory used for this test
        delete []l_serializedData;
        l_serializedData = nullptr;
    }

    /// Test serializing when Attribute has Attribute Header data
    /// and no Attribute Values
    // Set some values for the Attribute Header
    l_attribute.setId(0x1001);
    l_attribute.setTargetType(0x2002);
    l_attribute.setPosition(0x3003);
    l_attribute.setUnitPosition(0x4);
    l_attribute.setNode(0x5);
    l_attribute.setFlags(0x6);
    {
        // Create a buffer to hold serialized data
        uint8_t* l_serializedData = new uint8_t[l_attributeSize];
        // Get the serialized data
        uint32_t l_returnedSize = l_attribute.serialize(l_serializedData,
                                                        l_attributeSize);

        // Make sure serialized data is the size expected
        ++l_numTests;
        if (l_returnedSize != l_attributeSize)
        {
            TS_FAIL("testSerializeAndDeserializeMethod: Test 7 - "
                    "Attribute Serialize failed, with valid Attribute "
                    "Header data and no Data Value;"
                    "expected size %d but got back size %d",
                    l_attributeSize,
                    l_returnedSize);
            ++l_numFails;
        }

        // Make sure the serialized Attribute Header
        // matches original Attribute Header
        // Get a handle to Attribute Header
        AttributeTank::Attribute* l_attribute2 =
                 reinterpret_cast<AttributeTank::Attribute*>(l_serializedData);
        const AttributeTank::AttributeHeader & l_attributeHeader2 =
                                                     l_attribute2->getHeader();
        // Compare the two different Attribute Header for a match
        ++l_numTests;
        if (!compareAttributeHeader(l_attribute2, &l_attribute))
        {
            TS_FAIL("testSerializeAndDeserializeMethod: Test 8 - "
                        "Attribute Serialize failed, with valid Attribute "
                        "Header data and no Data Value;"
                        "incorrect Attribute Header data returned");
            ++l_numFails;
        }

        // Make sure that the size of the Attribute Values is zero
        ++l_numTests;
        if (0 != l_attributeHeader2.iv_valSize)
        {
            TS_FAIL("testSerializeAndDeserializeMethod: Test 9 - "
                    "Attribute Serialize failed, with valid Attribute "
                    "Header data and no Data Value;"
                    "Expected 0 size Data Value but %d was returned",
                    l_attributeHeader2.iv_valSize);
            ++l_numFails;
        }

        // Test deserialize
        {
            AttributeTank::Attribute l_attribute3;
            uint32_t l_returnedSize2 =
                    l_attribute3.deserialize(l_serializedData, l_returnedSize);

            // Make sure data size copied is correct
            ++l_numTests;
            if (l_returnedSize2 != l_returnedSize)
            {
                TS_FAIL("testSerializeAndDeserializeMethod: Test 10 - "
                        "Attribute Deserialize failed, with valid Attribute "
                        "Header data and no Data Value;"
                        "expected size %d but got back size %d",
                        l_returnedSize,
                        l_returnedSize2);
                ++l_numFails;
            }

            // Make sure the Attribute Header matches original data
            ++l_numTests;
            if (!compareAttributeHeader(&l_attribute3, &l_attribute))
            {
                TS_FAIL("testSerializeAndDeserializeMethod: Test 11 - "
                        "Attribute Deserialize failed, with valid Attribute "
                        "Header data and no Data Value;"
                        "incorrect Attribute Header data returned");
                ++l_numFails;
            }
        }

        // Cleanup memory used for this test
        delete []l_serializedData;
        l_serializedData = nullptr;
    }

    /// Test serializing when Attribute has Attribute Header data
    /// and a single Attribute Value
    // Give the Attribute a single Attribute Value
    uint8_t l_dataBuffer[1] = { 0 };
    l_dataBuffer[0] = 0x44;
    l_attribute.setValue(l_dataBuffer, 1);
    l_attributeSize = l_attribute.getSize();
    {
        // Create a buffer to hold serialized data
        uint8_t* l_serializedData = new uint8_t[l_attributeSize];
        // Get the serialized data
        uint32_t l_returnedSize = l_attribute.serialize(l_serializedData,
                                                        l_attributeSize);

        // Make sure serialized data is the size expected
        ++l_numTests;
        if (l_returnedSize != l_attributeSize)
        {
            TS_FAIL("testSerializeAndDeserializeMethod: Test 12 - "
                    "Attribute Serialize failed, with a size 1 Data Value; "
                    "expected size %d but got back size %d",
                    l_attributeSize,
                    l_returnedSize);
            ++l_numFails;
        }

        // Make sure the serialized Attribute Header
        // matches original Attribute Header
        // Get a handle to Attribute Header
        AttributeTank::Attribute* l_attribute2 =
                 reinterpret_cast<AttributeTank::Attribute*>(l_serializedData);
        const AttributeTank::AttributeHeader & l_attributeHeader2 =
                                                     l_attribute2->getHeader();
        // Compare the two different Attribute Header for a match
        ++l_numTests;
        if (!compareAttributeHeader(l_attribute2, &l_attribute))
        {
            TS_FAIL("testSerializeAndDeserializeMethod: Test 13 - "
                    "Attribute Serialize failed, with a size 1 Data Value; "
                    "incorrect Attribute Header data returned");
            ++l_numFails;
        }

        // Make sure that the size of the Attribute Values is 1
        ++l_numTests;
        if (1 != l_attributeHeader2.iv_valSize)
        {
            TS_FAIL("testSerializeAndDeserializeMethod: Test 14 - "
                    "Attribute Serialize failed, with a size 1 Data Value; "
                    "Expected 1 size Data Value but %d was returned",
                    l_attributeHeader2.iv_valSize);
            ++l_numFails;
        }

        // Point to the Attribute Values
        l_serializedData += sizeof(AttributeTank::AttributeHeader);

        // Compare the two different Attribute Value
        ++l_numTests;
        if (0 != memcmp(l_serializedData, &l_dataBuffer, 1))
        {
            TS_FAIL("testSerializeAndDeserializeMethod: Test 15 - "
                    "Attribute Serialize failed, with a size 1 Data Value; "
                    "incorrect Attribute Data Value returned");
            ++l_numFails;
        }

        // Reset the Serialized Data for next test
        l_serializedData -= sizeof(AttributeTank::AttributeHeader);

        // Test deserialize
        {
            AttributeTank::Attribute l_attribute3;
            uint32_t l_returnedSize2 =
                    l_attribute3.deserialize(l_serializedData, l_returnedSize);
            // Make sure data size copied is correct
            ++l_numTests;
            if (l_returnedSize2 != l_returnedSize)
            {

                TS_FAIL("testSerializeAndDeserializeMethod: Test 16 - "
                     "Attribute Deserialize failed, with a size 1 Data Value; "
                     "expected size %d but got back size %d",
                     l_returnedSize,
                     l_returnedSize2);
                ++l_numFails;
            }

            // Make sure the Attribute Header matches original data
            ++l_numTests;
            if (!compareAttributeHeader(&l_attribute3, &l_attribute))
            {
                TS_FAIL("testSerializeAndDeserializeMethod: Test 17 - "
                     "Attribute deserialize failed, with a size 1 Data Value; "
                     "incorrect Attribute Header data returned");
                ++l_numFails;
            }

            // Test when buffer is too small
            AttributeTank::Attribute l_attribute4;
            l_returnedSize2 = l_attribute4.deserialize(l_serializedData,
                                                       l_returnedSize - 1);

            // Make sure returned size is 0
            ++l_numTests;
            if (0 != l_returnedSize2)
            {
                TS_FAIL("testSerializeAndDeserializeMethod: Test 18 - "
                     "Attribute Deserialize failed, with too small of buffer "
                     "for 1 data value; expected size 0 but got back size %d",
                     l_returnedSize2);
                ++l_numFails;
            }
        }

        // Cleanup memory used for this test
        delete []l_serializedData;
        l_serializedData = nullptr;
    }

    /// Test serializing when Attribute has Attribute Header data
    /// and a several Attribute Values
    // Give the Attribute several Attribute Values
    uint32_t l_bufferSize(3);
    uint8_t l_dataBuffer2[l_bufferSize] = { 0 };
    l_dataBuffer2[0] = 0x55;
    l_dataBuffer2[1] = 0x66;
    l_dataBuffer2[2] = 0x77;
    l_attribute.setValue(l_dataBuffer2, l_bufferSize);
    l_attributeSize = l_attribute.getSize();
    {
        // Create a buffer to hold serialized data
        uint8_t* l_serializedData = new uint8_t[l_attributeSize];
        // Get the serialized data
        uint32_t l_returnedSize = l_attribute.serialize(l_serializedData,
                                                        l_attributeSize);

        // Make sure serialized data is the size expected
        ++l_numTests;
        if (l_returnedSize != l_attributeSize)
        {
            TS_FAIL("testSerializeAndDeserializeMethod: Test 19 - "
                    "Attribute Serialize failed, with a size 3 Data Value; "
                    "expected size %d but got back size %d",
                    l_attributeSize,
                    l_returnedSize);
            ++l_numFails;
        }

        // Make sure the serialized Attribute Header
        // matches original Attribute Header
        // Get a handle to Attribute Header
        AttributeTank::Attribute* l_attribute2 =
                 reinterpret_cast<AttributeTank::Attribute*>(l_serializedData);

        // Compare the two different Attribute Header for a match
        ++l_numTests;
        if (!compareAttributeHeader(l_attribute2, &l_attribute))
        {
            TS_FAIL("testSerializeAndDeserializeMethod: Test 20 - "
                    "Attribute Serialize failed, with a size 3 Data Value; "
                    "incorrect Attribute Header data returned");
            ++l_numFails;
        }

        // Make sure that the size of the Attribute Values is 3
        ++l_numTests;
        if (l_bufferSize != l_attribute2->getHeader().iv_valSize)
        {
            TS_FAIL("testSerializeAndDeserializeMethod: Test 21 - "
                    "Attribute Serialize failed, with a size 3 Data Value; "
                    "Expected %d size Data Value but %d was returned",
                    l_bufferSize,
                    l_attribute2->getHeader().iv_valSize);

            ++l_numFails;
        }

        // Point to the Attribute Values
        l_serializedData += sizeof(AttributeTank::AttributeHeader);


        // Compare the two different Attribute Value
        ++l_numTests;
        if (0 != memcmp(l_serializedData, &l_dataBuffer2, l_bufferSize))
        {
            TS_FAIL("testSerializeAndDeserializeMethod: Test 22 - "
                    "Attribute Serialize failed, with a size 3 Data Value; "
                    "incorrect Attribute Data Values returned");
            ++l_numFails;
        }

        // Reset the Serialized Data for next test
        l_serializedData -= sizeof(AttributeTank::AttributeHeader);

        // Test deserialize
        {
            AttributeTank::Attribute l_attribute3;
            uint32_t l_returnedSize2 =
                    l_attribute3.deserialize(l_serializedData, l_returnedSize);

            // Make sure data size copied is correct
            ++l_numTests;
            if (l_returnedSize2 != l_returnedSize)
            {
                TS_FAIL("testSerializeAndDeserializeMethod: Test 23 - "
                     "Attribute Deserialize failed, with a size 3 Data Value; "
                     "expected size %d but got back size %d",
                     l_returnedSize,
                     l_returnedSize2);
                ++l_numFails;
            }

            // Make sure the Attribute Header matches original data
            ++l_numTests;
            if (!compareAttributeHeader(&l_attribute3, &l_attribute))
            {
                TS_FAIL("testSerializeAndDeserializeMethod: Test 24 - "
                     "Attribute Deserialize failed, with a size 3 Data Value; "
                     "incorrect Attribute Header data returned");
                ++l_numFails;
            }

            // Test when buffer is too small
            AttributeTank::Attribute l_attribute4;
            l_returnedSize2 = l_attribute4.deserialize(l_serializedData,
                                                       l_returnedSize - 1);

            // Make sure returned size is 0
            ++l_numTests;
            if (0 != l_returnedSize2)
            {
                TS_FAIL("testSerializeAndDeserializeMethod: Test 25 - "
                     "Attribute Deserialize failed, with too small of buffer "
                     "for 3 data values; expected size 0 but got back size %d",
                     l_returnedSize2);
                ++l_numFails;
            }
        }

        // Cleanup memory used for this test
        delete []l_serializedData;
        l_serializedData = nullptr;
    }

    TRACFCOMP( g_trac_test, EXIT_MRK "testSerializeAndDeserializeMethod "
               "num tests = %d  / num fails = %d", l_numTests, l_numFails);
}   // end AttributeTest::testSerializeAndDeserializeMethod

// testOperatorEqual
void AttributeTest::testOperatorEqual(void)
{
    TRACFCOMP( g_trac_test, ENTER_MRK "testOperatorEqual" );

    // Test stats
    uint8_t l_numTests(0);
    uint8_t l_numFails(0);

    // Create an Attribute to test against
    AttributeTank::Attribute l_attribute1;

    // Test with an empty attribute
    AttributeTank::Attribute l_attribute2;
    // Invoke Operator Equal
    l_attribute2 = l_attribute1;

    // Make sure the Attribute Header match
    ++l_numTests;
    if (!compareAttributeHeader(&l_attribute1, &l_attribute2))
    {
        TS_FAIL("testOperatorEqual: Test 1 - "
                "Attribute Operator = failed, with default values; "
                "incorrect Attribute Header data returned");
        ++l_numFails;
    }

    // Modify the data
    l_attribute1.setId(0x1001);
    l_attribute1.setTargetType(0x2002);
    l_attribute1.setPosition(0x3003);
    l_attribute1.setUnitPosition(0x4);
    l_attribute1.setNode(0x5);
    l_attribute1.setFlags(0x6);

    // Test with modified data
    AttributeTank::Attribute l_attribute3;
    // Invoke Operator Equal
    l_attribute3 = l_attribute1;

    // Make sure the Attribute Header match
    ++l_numTests;
    if (!compareAttributeHeader(&l_attribute1, &l_attribute3))
    {
        TS_FAIL("testOperatorEqual: Test 2 - "
                "Attribute Operator = failed, with modifed values; "
                "incorrect Attribute Header data returned");
        ++l_numFails;
    }

    // Add attribute values
    uint32_t l_bufferSize(3);
    uint8_t l_buffer[l_bufferSize];
    l_buffer[0] = 0x66;
    l_buffer[0] = 0x77;
    l_buffer[0] = 0x88;
    l_attribute1.setValue(l_buffer, l_bufferSize);

    // Test with modified data
    AttributeTank::Attribute l_attribute4;
    // Invoke Operator Equal
    l_attribute4 = l_attribute1;

    // Make sure the Attribute Header match
    ++l_numTests;
    if (!compareAttributeHeader(&l_attribute1, &l_attribute4))
    {
        TS_FAIL("testOperatorEqual: Test 3 - "
                     "Attribute Operator = failed, with data values; "
                     "incorrect Attribute Header data returned");
        ++l_numFails;
    }

    // Make sure the Attribute Values match
    ++l_numTests;
    if (!compareAttributeValues(&l_attribute1, &l_attribute4))
    {
        TS_FAIL("testOperatorEqual: Test 4 - "
                "Attribute Operator = failed, with data values; "
                "incorrect Attribute Values data returned");
        ++l_numFails;
    }

    // Update the Attribute Values and test again
    l_buffer[0] = 0x22;
    l_buffer[0] = 0x33;
    l_buffer[0] = 0x55;
    l_attribute1.setValue(l_buffer, l_bufferSize);

    // Make sure the Attribute Header match original data
    ++l_numTests;
    if (!compareAttributeHeader(&l_attribute1, &l_attribute4))
    {
        TS_FAIL("testOperatorEqual: Test 5 - "
                "Attribute Operator = failed, with data values updated; "
                "incorrect Attribute Header data returned");
        ++l_numFails;
    }

    // Make sure the Attribute Values DO NOT match
    ++l_numTests;
    if (compareAttributeValues(&l_attribute1, &l_attribute4))
    {
        TS_FAIL("testOperatorEqual: Test 6 - "
                "Attribute Operator = failed, with data values updated; "
                "incorrect Attribute Values data returned");
        ++l_numFails;
    }

    TRACFCOMP( g_trac_test, EXIT_MRK "testOperatorEqual "
               "num tests = %d  / num fails = %d", l_numTests, l_numFails);
} // end testOperatorEqual

// testCopyConstructor
void AttributeTest::testCopyConstructor(void)
{
    TRACFCOMP( g_trac_test, ENTER_MRK "testCopyConstructor" );

    // Test stats
    uint8_t l_numTests(0);
    uint8_t l_numFails(0);

    // Create an Attribute to test against
    AttributeTank::Attribute l_attribute1;

    l_attribute1.setId(0x1001);
    l_attribute1.setFlags(0x5);

    // Test with an empty attribute, invoke copy constructor
    AttributeTank::Attribute l_attribute2 = l_attribute1;

    // Make sure the Attribute Header match
    ++l_numTests;
    if (!compareAttributeHeader(&l_attribute1, &l_attribute2))
    {
        TS_FAIL("testCopyConstructor: Test 1 - "
                "Attribute Copy Ctor failed, with default values; "
                "incorrect Attribute Header data returned");
        ++l_numFails;
    }

    // Modify the data
    l_attribute1.setId(0x1001);
    l_attribute1.setTargetType(0x2002);
    l_attribute1.setPosition(0x3003);
    l_attribute1.setUnitPosition(0x4);
    l_attribute1.setNode(0x5);
    l_attribute1.setFlags(0x6);

    // Test with modified data, invoke copy constructor
    AttributeTank::Attribute l_attribute3 = l_attribute1;

    // Make sure the Attribute Header match
    ++l_numTests;
    if (!compareAttributeHeader(&l_attribute1, &l_attribute3))
    {
        TS_FAIL("testCopyConstructor: Test 2 - "
                "Attribute Copy Ctor failed, with modifed values; "
                "incorrect Attribute Header data returned");
        ++l_numFails;
    }

    // Add attribute values
    uint32_t l_bufferSize(3);
    uint8_t l_buffer[l_bufferSize];
    l_buffer[0] = 0x66;
    l_buffer[0] = 0x77;
    l_buffer[0] = 0x88;
    l_attribute1.setValue(l_buffer, l_bufferSize);

    // Test with modified data, invoke copy constructor
    AttributeTank::Attribute l_attribute4 = l_attribute1;

    // Make sure the Attribute Header match
    ++l_numTests;
    if (!compareAttributeHeader(&l_attribute1, &l_attribute4))
    {
        TS_FAIL("testCopyConstructor: Test 3 - "
                "Attribute Copy Ctor failed, with data values; "
                "incorrect Attribute Header data returned");
        ++l_numFails;
    }

    // Make sure the Attribute Values match
    ++l_numTests;
    if (!compareAttributeValues(&l_attribute1, &l_attribute4))
    {
        TS_FAIL("testCopyConstructor: Test 4 - "
                "Attribute Copy Ctor failed, with data values; "
                "incorrect Attribute Values data returned");
        ++l_numFails;
    }

    // Update the Attribute Values and test again
    l_buffer[0] = 0x22;
    l_buffer[0] = 0x33;
    l_buffer[0] = 0x55;
    l_attribute1.setValue(l_buffer, l_bufferSize);

    // Make sure the Attribute Header match original data
    ++l_numTests;
    if (!compareAttributeHeader(&l_attribute1, &l_attribute4))
    {
        TS_FAIL("testCopyConstructor: Test 5 - "
                "Attribute Copy Ctor failed, with data values updated; "
                "incorrect Attribute Header data returned");
        ++l_numFails;
    }

    // Make sure the Attribute Values DO NOT match
    ++l_numTests;
    if (compareAttributeValues(&l_attribute1, &l_attribute4))
    {
        TS_FAIL("testCopyConstructor: Test 6 - "
                "Attribute Copy Ctor failed, with data values updated; "
                "incorrect Attribute Values data returned");
        ++l_numFails;
    }

    TRACFCOMP( g_trac_test, EXIT_MRK "testCopyConstructor "
               "num tests = %d  / num fails = %d", l_numTests, l_numFails);
} // end testCopyConstructor

// compareAttributeHeader
bool AttributeTest::compareAttributeHeader(
                     const AttributeTank::Attribute* const l_attribute1,
                     const AttributeTank::Attribute* const l_attribute2)
{
    bool retVal(true);

    // Make sure the Attribute Header matches original data
    if (0 != memcmp(&(l_attribute1->getHeader()),
                    &(l_attribute2->getHeader()),
                    sizeof(AttributeTank::AttributeHeader)))
    {
        retVal = false;
    }

    return retVal;

} // end compareAttributeHeader

// compareAttributeValues
bool AttributeTest::compareAttributeValues(
                     const AttributeTank::Attribute* const l_attribute1,
                     const AttributeTank::Attribute* const l_attribute2)
{
    bool retVal(true);

    // Compare the Attribute Values for a match
    if (0 != memcmp(l_attribute1->getValue(),
                    l_attribute2->getValue(),
                    l_attribute2->getHeader().iv_valSize))
    {
        retVal = false;
    }

    return retVal;

} // end compareAttributeValues

#endif // end __TEST_ATTRIBUTE_H
OpenPOWER on IntegriCloud