Skip to content

Commit

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

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 4, 2019
1 parent e4e76c8 commit e349746
Showing 1 changed file with 92 additions and 0 deletions.
92 changes: 92 additions & 0 deletions libflash/test/test-ipmi-hiomap.c
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,64 @@ hiomap_create_read_window_qs0l2_rs0l1_call = {
},
};

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

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

static const struct scenario_event hiomap_flush_call = {
.type = scenario_cmd,
.c = {
.req = {
.cmd = HIOMAP_C_FLUSH,
.seq = 6,
},
.resp = {
.cmd = HIOMAP_C_FLUSH,
.seq = 6,
},
},
};

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 @@ -865,6 +923,39 @@ static void test_hiomap_protocol_event_during_read(void)
scenario_exit();
}

static const struct scenario_event
scenario_hiomap_protocol_write_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_write_window_qs0l1_rs0l1_call,
},
{ .type = scenario_event_p, .p = &hiomap_mark_dirty_qs0l1_call, },
{ .type = scenario_event_p, .p = &hiomap_flush_call, },
SCENARIO_SENTINEL,
};

static void test_hiomap_protocol_write_one_block(void)
{
struct blocklevel_device *bl;
struct ipmi_hiomap *ctx;
uint8_t *buf;
size_t len;

scenario_enter(scenario_hiomap_protocol_write_one_block);
assert(!ipmi_hiomap_init(&bl));
ctx = container_of(bl, struct ipmi_hiomap, bl);
len = 1 << ctx->block_size_shift;
buf = calloc(1, len);
assert(buf);
assert(!bl->write(bl, 0, buf, len));
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 @@ -912,6 +1003,7 @@ struct test_case test_cases[] = {
TEST_CASE(test_hiomap_protocol_read_two_blocks),
TEST_CASE(test_hiomap_protocol_event_before_read),
TEST_CASE(test_hiomap_protocol_event_during_read),
TEST_CASE(test_hiomap_protocol_write_one_block),
TEST_CASE(test_hiomap_protocol_persistent_error),
{ NULL, NULL },
};
Expand Down

0 comments on commit e349746

Please sign in to comment.