summaryrefslogtreecommitdiffstats
path: root/src/usr/util/runtime/test/testlidmgr_rt.H
blob: a6681b37b57f3a2fee56718c181d7a19ea5b4838 (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
/* IBM_PROLOG_BEGIN_TAG                                                   */
/* This is an automatically generated prolog.                             */
/*                                                                        */
/* $Source: src/usr/util/runtime/test/testlidmgr_rt.H $                   */
/*                                                                        */
/* OpenPOWER HostBoot Project                                             */
/*                                                                        */
/* Contributors Listed Below - COPYRIGHT 2014,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                                                     */
#include <util/utillidmgr.H>
#include <cxxtest/TestSuite.H>
#include <errl/errlmanager.H>
#include <utilbase.H>

class LidMgrRtTest : public CxxTest::TestSuite
{
    public:
        void testMissingLid()
        {
            UtilLidMgr lidmgr(-1);

            size_t l_size = 0;
            errlHndl_t l_errl = lidmgr.getLidSize(l_size);

            if (l_size != 0)
            {
                TS_FAIL("Found missing lid -1.");
            }
            else
            {
                delete l_errl;
                l_errl = NULL;
            }
        }

        /**
         *  @brief Test to check if the structure that maps lidID's to pnor
         *         sections is working correctly
         */
        void testLidInPnor(void)
        {
            errlHndl_t l_errl = NULL;

            do
            {
                size_t l_lidSize = 0;

                UtilLidMgr l_lidMgr(Util::TEST_LIDID);

                PNOR::SectionInfo_t l_lidPnorInfo;
                l_errl = PNOR::getSectionInfo(PNOR::TEST, l_lidPnorInfo);
                if (l_errl)
                {
                    errlCommit(l_errl,UTIL_COMP_ID);
                    TS_FAIL("testLidInPnor: Error getting lidId=0x%.8x",
                            Util::TEST_LIDID);
                    break;
                }

                l_errl = l_lidMgr.getLidSize(l_lidSize);
                if(l_errl)
                {
                    errlCommit(l_errl,UTIL_COMP_ID);
                    TS_FAIL("testLidInPnor: Error getting lidId=0x%.8x",
                            Util::TEST_LIDID);
                    break;
                }

                if (l_lidSize != l_lidPnorInfo.size)
                {
                    TS_FAIL("testLidInPnor: lidSize does not match pnor TEST"
                            " section size 0x%.8X != 0x%.8X",
                            l_lidSize, l_lidPnorInfo.size);
                    break;
                }

                char * l_ptr = new char[l_lidPnorInfo.size];
                l_errl = l_lidMgr.getLid(l_ptr, l_lidPnorInfo.size);
                if(l_errl)
                {
                    errlCommit(l_errl, UTIL_COMP_ID);
                    TS_FAIL("testLidInPnor: failed to get lid from PNOR");
                }
                delete[] l_ptr;

                void* l_pLidImage = NULL;
                size_t l_lidImageSize = 0;
                l_errl = l_lidMgr.getStoredLidImage(l_pLidImage,
                                                    l_lidImageSize);
                if (l_errl)
                {
                    errlCommit(l_errl, UTIL_COMP_ID);
                    TS_FAIL("testLidInPnor: failed to store lid from PNOR");
                }

                if (l_lidImageSize != l_lidPnorInfo.size)
                {
                    TS_FAIL("testLidInPnor: lidImageSize does not match pnor"
                            " TEST section size 0x%.8X != 0x%.8X",
                            l_lidImageSize, l_lidPnorInfo.size);
                }

                l_errl = l_lidMgr.releaseLidImage();
                if(l_errl)
                {
                    errlCommit(l_errl, UTIL_COMP_ID);
                    TS_FAIL("testLidInPnor: failed to release lid from PNOR");
                }
            }while(0);
        }
};
OpenPOWER on IntegriCloud