summaryrefslogtreecommitdiffstats
path: root/testit.cpp
diff options
context:
space:
mode:
authorPatrick Venture <venture@google.com>2018-08-31 11:55:55 -0700
committerPatrick Venture <venture@google.com>2018-09-07 23:45:41 +0000
commit0b02be925a29357f69abbc9e9a58e7c5aaed2eab (patch)
treec1b39f817d98ffda7b987f9e3f864f576e3bf9ea /testit.cpp
parent26f80ab2cc41deadc913190d906f71266c4ed224 (diff)
downloadphosphor-host-ipmid-0b02be925a29357f69abbc9e9a58e7c5aaed2eab.tar.gz
phosphor-host-ipmid-0b02be925a29357f69abbc9e9a58e7c5aaed2eab.zip
add .clang-format
Change-Id: I7c2a527b4751a560703a61fcbe9638b150546af5 Signed-off-by: Patrick Venture <venture@google.com>
Diffstat (limited to 'testit.cpp')
-rw-r--r--testit.cpp115
1 files changed, 66 insertions, 49 deletions
diff --git a/testit.cpp b/testit.cpp
index 37bb146..2541915 100644
--- a/testit.cpp
+++ b/testit.cpp
@@ -1,33 +1,33 @@
+#include <stdint.h>
#include <stdio.h>
#include <string.h>
-#include <stdint.h>
+unsigned char g_sensortype[][2] = {
+ {0xC3, 0x01}, {0x07, 0x02}, {0x0F, 0x05}, {0x0c, 0x1F}, {0xFF, 0xff}};
-unsigned char g_sensortype [][2] = {
- {0xC3, 0x01},
- {0x07, 0x02},
- {0x0F, 0x05},
- {0x0c, 0x1F},
- {0xFF ,0xff}
-};
+uint8_t find_type_for_sensor_number(uint8_t sensor_number)
+{
-uint8_t find_type_for_sensor_number(uint8_t sensor_number) {
-
- int i=0;
+ int i = 0;
uint8_t rc;
- while (g_sensortype[i][0] != 0xff) {
- if (g_sensortype[i][1] == sensor_number) {
+ while (g_sensortype[i][0] != 0xff)
+ {
+ if (g_sensortype[i][1] == sensor_number)
+ {
break;
- } else {
+ }
+ else
+ {
i++;
}
}
rc = g_sensortype[i][0];
- if (rc == 0xFF) {
+ if (rc == 0xFF)
+ {
rc = 0;
}
return rc;
@@ -36,19 +36,21 @@ uint8_t find_type_for_sensor_number(uint8_t sensor_number) {
char g_results_method[64];
char g_results_value[64];
-
-int set_sensor_dbus_state_s(unsigned char number, const char *member, const char *value) {
+int set_sensor_dbus_state_s(unsigned char number, const char* member,
+ const char* value)
+{
strcpy(g_results_method, member);
strcpy(g_results_value, value);
return 0;
}
-int set_sensor_dbus_state_y(unsigned char number, char const* member, uint8_t value) {
+int set_sensor_dbus_state_y(unsigned char number, char const* member,
+ uint8_t value)
+{
char val[2];
-
snprintf(val, 2, "%d", value);
strcpy(g_results_method, member);
@@ -57,40 +59,43 @@ int set_sensor_dbus_state_y(unsigned char number, char const* member, uint8_t va
return 0;
}
-
-extern int updateSensorRecordFromSSRAESC(const void *record);
-
-
+extern int updateSensorRecordFromSSRAESC(const void* record);
// DIMM Present
-uint8_t testrec_sensor1[] = {0x1F, 0xa9, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
+uint8_t testrec_sensor1[] = {0x1F, 0xa9, 0x00, 0x40, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00};
// DIMM Not present
-uint8_t testrec_sensor2[] = {0x1F, 0xa9, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00};
+uint8_t testrec_sensor2[] = {0x1F, 0xa9, 0x00, 0x00, 0x00,
+ 0x40, 0x00, 0x00, 0x00, 0x00};
// DIMM Not present
-uint8_t testrec_procfailed[] = {0x02, 0xa9, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00};
+uint8_t testrec_procfailed[] = {0x02, 0xa9, 0x00, 0x00, 0x00,
+ 0x00, 0x01, 0x00, 0x00, 0x00};
// Virtual Sensor 5, setting a Value of 0h
-uint8_t testrec_bootprogress[] = {0x05, 0xa9, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00};
+uint8_t testrec_bootprogress[] = {0x05, 0xa9, 0x00, 0x04, 0x00,
+ 0x00, 0x00, 0x00, 0x0E, 0x00};
// Virtual Sensor setting a boot count
-uint8_t testrec_bootcount[] = {0x01, 0x09, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
+uint8_t testrec_bootcount[] = {0x01, 0x09, 0x00, 0x03, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00};
// Invalid sensor number
-uint8_t testrec_invalidnumber[]= {0x35, 0xa9, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00};
-
-
-int check_results(int rc, const char *method, const char *value) {
- if (strcmp(g_results_method, method)) {
- log<level::ERR>("Method Failed",
- entry("EXPECT=%s", method),
+uint8_t testrec_invalidnumber[] = {0x35, 0xa9, 0x00, 0x04, 0x00,
+ 0x00, 0x00, 0x00, 0x03, 0x00};
+
+int check_results(int rc, const char* method, const char* value)
+{
+ if (strcmp(g_results_method, method))
+ {
+ log<level::ERR>("Method Failed", entry("EXPECT=%s", method),
entry("GOT=%s", g_results_method));
return -1;
}
- if (strcmp(g_results_value, value)) {
- log<level::ERR>("Value failed",
- entry("EXPECT=%s", value),
+ if (strcmp(g_results_value, value))
+ {
+ log<level::ERR>("Value failed", entry("EXPECT=%s", value),
entry("GOT=%s", g_results_method));
return -2;
}
@@ -98,20 +103,32 @@ int check_results(int rc, const char *method, const char *value) {
return 0;
}
-void testprep(void) {
+void testprep(void)
+{
memset(g_results_method, 0, sizeof(g_results_method));
memset(g_results_value, 0, sizeof(g_results_value));
}
+int main()
+{
+
+ testprep();
+ check_results(updateSensorRecordFromSSRAESC(testrec_bootprogress),
+ "setValue", "FW Progress, Docking station attachment");
+ testprep();
+ check_results(updateSensorRecordFromSSRAESC(testrec_sensor1), "setPresent",
+ "True");
+ testprep();
+ check_results(updateSensorRecordFromSSRAESC(testrec_sensor2), "setPresent",
+ "False");
+ testprep();
+ check_results(updateSensorRecordFromSSRAESC(testrec_procfailed), "setFault",
+ "False");
+ testprep();
+ check_results(updateSensorRecordFromSSRAESC(testrec_bootcount), "setValue",
+ "3");
+ testprep();
+ check_results(updateSensorRecordFromSSRAESC(testrec_invalidnumber), "", "");
-int main() {
-
- testprep(); check_results(updateSensorRecordFromSSRAESC(testrec_bootprogress), "setValue", "FW Progress, Docking station attachment");
- testprep(); check_results(updateSensorRecordFromSSRAESC(testrec_sensor1), "setPresent", "True");
- testprep(); check_results(updateSensorRecordFromSSRAESC(testrec_sensor2), "setPresent", "False");
- testprep(); check_results(updateSensorRecordFromSSRAESC(testrec_procfailed), "setFault", "False");
- testprep(); check_results(updateSensorRecordFromSSRAESC(testrec_bootcount), "setValue", "3");
- testprep(); check_results(updateSensorRecordFromSSRAESC(testrec_invalidnumber), "", "");
-
- return 0;
+ return 0;
}
OpenPOWER on IntegriCloud