summaryrefslogtreecommitdiffstats
path: root/src/usr/util/runtime/test/testruncommand.H
blob: f6563819e5ad4b9baab7a6c6a8596f2c7ff6fd7d (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
/* IBM_PROLOG_BEGIN_TAG                                                   */
/* This is an automatically generated prolog.                             */
/*                                                                        */
/* $Source: src/usr/util/runtime/test/testruncommand.H $                  */
/*                                                                        */
/* OpenPOWER HostBoot Project                                             */
/*                                                                        */
/* Contributors Listed Below - COPYRIGHT 2015,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 <cxxtest/TestSuite.H>
#include <errl/errlmanager.H>
#include <runtime/interface.h>
#include <string.h>
#include <stdio.h>
#include "utilbase.H"

class RunCommandTest : public CxxTest::TestSuite
{
  public:
    /**
     *  @brief Test basic command/response
     */
    void testRunCommand()
    {
        int argc = 2;

        char arg0[10]; memcpy( arg0, "testRunCommand", 15 );
        char arg1[10]; memcpy( arg1, "arg1", 5 );

        const char* argv[] = { arg0, arg1 };

        char* outstr = NULL;

        int rc = (getRuntimeInterfaces()->run_command)( argc, argv, &outstr );

        TRACFCOMP( Util::g_util_trace, "testRunCommand> rc=%d :: %s",
                                        rc, outstr == NULL ? "null" : outstr );

        char expected[21];
        sprintf( expected, "TEST:arg1" );

        if( strcmp( outstr, expected ) )
        {
            TS_FAIL( "testRunCommand> Unexpected result : Exp=%s, Act=%s",
                     expected, outstr );
        }

        if( outstr )
        {
            delete[] outstr;
        }
    }

    /**
     *  @brief Test invalid parms
     */
    void testRunCommandBad(void)
    {
        int rc = 0;

        rc = (getRuntimeInterfaces()->run_command)( 0, NULL, NULL );
        if( rc )
        {
            TS_FAIL( "testRunCommandBad> Error from no args" );
        }
    }


    /**
     *  @brief Test scom operations
     */
    void testRunCommandScom(void)
    {
        int rc = 0;
        char* outstr = NULL;

        char arg0[10]; memcpy( arg0, "getscom", 8 );
        char arg1[15]; memcpy( arg1, "0x00050000", 11 );//proc0
        char arg2[15]; memcpy( arg2, "0x02010803", 11 );//CXA FIR Mask
        char arg3[30]; memcpy( arg3, "0x1122334455667788", 19 );
        const char* argv[] = { arg0, arg1, arg2, arg3 };

        // do a read
        rc = (getRuntimeInterfaces()->run_command)( 3, argv, &outstr );
        if( rc )
        {
            TS_FAIL( "testRunCommandScom1> rc=%d", rc );
        }
        TRACFCOMP( Util::g_util_trace, "testRunCommandScom1> rc=%d :: %s",
                                        rc, outstr == NULL ? "null" : outstr );
        if( outstr ) delete[] outstr;

        // do a write
        memcpy( arg0, "putscom", 8 );
        rc = (getRuntimeInterfaces()->run_command)( 4, argv, &outstr );
        if( rc )
        {
            TS_FAIL( "testRunCommandScom2> rc=%d", rc );
        }
        TRACFCOMP( Util::g_util_trace, "testRunCommandScom2> rc=%d :: %s",
                                        rc, outstr == NULL ? "null" : outstr );
        if( outstr ) delete[] outstr;

        // read again to check data (in trace only)
        memcpy( arg0, "getscom", 8 );
        rc = (getRuntimeInterfaces()->run_command)( 3, argv, &outstr );
        if( rc )
        {
            TS_FAIL( "testRunCommandScom3> rc=%d", rc );
        }
        TRACFCOMP( Util::g_util_trace, "testRunCommandScom3> rc=%d :: %s",
                                        rc, outstr == NULL ? "null" : outstr );
        if( outstr ) delete[] outstr;

    }


    /**
     *  @brief Test read HBRT version operation
     */
    void testRunCommandReadHbrtVersion(void)
    {
        int rc = 0;
        char* outstr = NULL;

        char arg0[20]; memcpy( arg0, "readHBRTversion", 16 );
        const char* argv[] = { arg0 };

        // do a read
        rc = (getRuntimeInterfaces()->run_command)( 1, argv, &outstr );
        if( rc )
        {
            TS_FAIL( "testRunCommandReadHbrtVersion> rc=%d", rc );
        }
        if( outstr == NULL )
        {
            TS_FAIL( "testRunCommandReadHbrtVersion> outstr is NULL" );
        }
        TRACFCOMP( Util::g_util_trace,
                   "testRunCommandReadHbrtVersion> rc=%d :: %s",
                   rc, outstr == NULL ? "null" : outstr );
        if( outstr ) delete[] outstr;
    }
};
OpenPOWER on IntegriCloud