Skip to content

Commit

Permalink
test-ipmi-hiomap: Add read-one-block test
Browse files Browse the repository at this point in the history
[ Upstream commit 5b12dfe ]

Cc: stable
Signed-off-by: Andrew Jeffery <andrew@aj.id.au>
Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
Signed-off-by: Vasant Hegde <hegdevasant@linux.vnet.ibm.com>
  • Loading branch information
amboar authored and Vasant Hegde committed Mar 5, 2019
1 parent 01ab517 commit bb3f88b
Showing 1 changed file with 68 additions and 3 deletions.
71 changes: 68 additions & 3 deletions libflash/test/test-ipmi-hiomap.c
Original file line number Diff line number Diff line change
Expand Up @@ -207,13 +207,16 @@ int64_t lpc_write(enum OpalLPCAddressType addr_type __attribute__((unused)),
}

int64_t lpc_read(enum OpalLPCAddressType addr_type __attribute__((unused)),
uint32_t addr __attribute__((unused)),
uint32_t *data __attribute__((unused)),
uint32_t sz __attribute__((unused)))
uint32_t addr __attribute__((unused)), uint32_t *data,
uint32_t sz)
{
memset(data, 0xaa, sz);

return 0;
}

/* Commonly used messages */

static const struct scenario_event hiomap_ack_call = {
.type = scenario_cmd,
.c = {
Expand Down Expand Up @@ -276,6 +279,31 @@ static const struct scenario_event hiomap_get_flash_info_call = {
},
};

static const struct scenario_event
hiomap_create_read_window_qs0l1_rs0l1_call = {
.type = scenario_cmd,
.c = {
.req = {
.cmd = HIOMAP_C_CREATE_READ_WINDOW,
.seq = 4,
.args = {
[0] = 0x00, [1] = 0x00,
[2] = 0x01, [3] = 0x00,
},
},
.cc = IPMI_CC_NO_ERROR,
.resp = {
.cmd = HIOMAP_C_CREATE_READ_WINDOW,
.seq = 4,
.args = {
[0] = 0xff, [1] = 0x0f,
[2] = 0x01, [3] = 0x00,
[4] = 0x00, [5] = 0x00,
},
},
},
};

static const struct scenario_event scenario_hiomap_init[] = {
{ .type = scenario_event_p, .p = &hiomap_ack_call, },
{ .type = scenario_event_p, .p = &hiomap_get_info_call, },
Expand Down Expand Up @@ -642,6 +670,42 @@ static void test_hiomap_protocol_reset_recovery(void)
free(buf);
}

static const struct scenario_event
scenario_hiomap_protocol_read_one_block[] = {
{ .type = scenario_event_p, .p = &hiomap_ack_call, },
{ .type = scenario_event_p, .p = &hiomap_get_info_call, },
{ .type = scenario_event_p, .p = &hiomap_get_flash_info_call, },
{
.type = scenario_event_p,
.p = &hiomap_create_read_window_qs0l1_rs0l1_call,
},
SCENARIO_SENTINEL,
};

static void test_hiomap_protocol_read_one_block(void)
{
struct blocklevel_device *bl;
struct ipmi_hiomap *ctx;
size_t len;
unsigned char *buf;
int i;

scenario_enter(scenario_hiomap_protocol_read_one_block);
assert(!ipmi_hiomap_init(&bl));
ctx = container_of(bl, struct ipmi_hiomap, bl);
len = 1 << ctx->block_size_shift;
buf = malloc(len);
assert(buf);
assert(!bl->read(bl, 0, buf, len));
assert(len > 64);
for (i = 0; i < 64; i++)
assert(buf[i] == 0xaa);
assert(!memcmp(buf, buf + 64, len - 64));
free(buf);
ipmi_hiomap_exit(bl);
scenario_exit();
}

static const struct scenario_event
scenario_hiomap_protocol_persistent_error[] = {
{ .type = scenario_event_p, .p = &hiomap_ack_call, },
Expand Down Expand Up @@ -685,6 +749,7 @@ struct test_case test_cases[] = {
TEST_CASE(test_hiomap_event_daemon_lost_flash_control),
TEST_CASE(test_hiomap_event_daemon_regained_flash_control_dirty),
TEST_CASE(test_hiomap_protocol_reset_recovery),
TEST_CASE(test_hiomap_protocol_read_one_block),
TEST_CASE(test_hiomap_protocol_persistent_error),
{ NULL, NULL },
};
Expand Down

0 comments on commit bb3f88b

Please sign in to comment.