mirror of
https://review.coreboot.org/flashrom.git
synced 2025-04-27 23:22:37 +02:00

The test cases from #16 onwards cover the case when layout region is not aligned with eraseblock region, and therefore either layout start boundary or end boundary needs to be extended to align with eraseblock. Ticket: https://ticket.coreboot.org/issues/494 Change-Id: I726a30b0e47a966e8093ddc19abf4a65fb1d70ce Signed-off-by: Anastasia Klimchuk <aklm@flashrom.org> Reviewed-on: https://review.coreboot.org/c/flashrom/+/78985 Reviewed-by: Peter Marheine <pmarheine@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
848 lines
32 KiB
C
848 lines
32 KiB
C
/*
|
|
* This file is part of the flashrom project.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; version 2 of the License.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*/
|
|
|
|
#include <include/test.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
#include "tests.h"
|
|
#include "chipdrivers.h"
|
|
#include "flash.h"
|
|
#include "io_mock.h"
|
|
#include "libflashrom.h"
|
|
#include "programmer.h"
|
|
|
|
#define LOG_ERASE_FUNC printf("Eraser called with blockaddr=0x%x, blocklen=0x%x\n", blockaddr, blocklen)
|
|
#define LOG_READ_WRITE_FUNC printf("%s called with start=0x%x, len=0x%x\n", __func__, start, len)
|
|
|
|
#define ERASE_VALUE 0xff
|
|
#define MOCK_CHIP_SIZE 16
|
|
#define MIN_BUF_SIZE 1024 /* Minimum buffer size flashrom operates for chip operations. */
|
|
#define MIN_REAL_CHIP_SIZE 1024 /* Minimum chip size that can be defined for real chip in flashchips */
|
|
|
|
struct test_region {
|
|
const size_t start;
|
|
const size_t end;
|
|
const char *name;
|
|
};
|
|
|
|
struct erase_invoke {
|
|
unsigned int blockaddr;
|
|
unsigned int blocklen;
|
|
};
|
|
|
|
struct test_case {
|
|
struct flashchip *chip; /* Chip definition. */
|
|
struct test_region regions[MOCK_CHIP_SIZE]; /* Layout regions. */
|
|
uint8_t initial_buf[MOCK_CHIP_SIZE]; /* Initial state of chip memory. */
|
|
uint8_t erased_buf[MOCK_CHIP_SIZE]; /* Expected content after erase. */
|
|
uint8_t written_buf[MOCK_CHIP_SIZE]; /* Expected content after write. */
|
|
struct erase_invoke eraseblocks_expected[MOCK_CHIP_SIZE]; /* Expected order of eraseblocks invocations. */
|
|
unsigned int eraseblocks_expected_ind; /* Expected number of eraseblocks invocations. */
|
|
char erase_test_name[20]; /* Test case display name for testing erase operation. */
|
|
char write_test_name[20]; /* Test case display name for testing write operation. */
|
|
};
|
|
|
|
struct all_state {
|
|
uint8_t buf[MIN_REAL_CHIP_SIZE]; /* Buffer emulating the memory of the mock chip. */
|
|
struct erase_invoke eraseblocks_actual[MOCK_CHIP_SIZE]; /* The actual order of eraseblocks invocations. */
|
|
unsigned int eraseblocks_actual_ind; /* Actual number of eraseblocks invocations. */
|
|
const struct test_case* current_test_case; /* Currently executed test case. */
|
|
} g_state;
|
|
|
|
static int read_chip(struct flashctx *flash, uint8_t *buf, unsigned int start, unsigned int len)
|
|
{
|
|
if (start + len <= MOCK_CHIP_SIZE)
|
|
LOG_READ_WRITE_FUNC;
|
|
|
|
assert_in_range(start + len, 0, MIN_REAL_CHIP_SIZE);
|
|
|
|
memcpy(buf, &g_state.buf[start], len);
|
|
return 0;
|
|
}
|
|
|
|
static int write_chip(struct flashctx *flash, const uint8_t *buf, unsigned int start, unsigned int len)
|
|
{
|
|
if (start + len <= MOCK_CHIP_SIZE)
|
|
LOG_READ_WRITE_FUNC;
|
|
|
|
assert_in_range(start + len, 0, MIN_REAL_CHIP_SIZE);
|
|
|
|
memcpy(&g_state.buf[start], buf, len);
|
|
return 0;
|
|
}
|
|
|
|
static int block_erase_chip(struct flashctx *flash, unsigned int blockaddr, unsigned int blocklen)
|
|
{
|
|
if (blockaddr + blocklen <= MOCK_CHIP_SIZE) {
|
|
LOG_ERASE_FUNC;
|
|
|
|
/* Register eraseblock invocation. */
|
|
g_state.eraseblocks_actual[g_state.eraseblocks_actual_ind].blocklen
|
|
= blocklen;
|
|
g_state.eraseblocks_actual[g_state.eraseblocks_actual_ind].blockaddr
|
|
= blockaddr;
|
|
g_state.eraseblocks_actual_ind++;
|
|
}
|
|
|
|
assert_in_range(blockaddr + blocklen, 0, MIN_REAL_CHIP_SIZE);
|
|
|
|
memset(&g_state.buf[blockaddr], ERASE_VALUE, blocklen);
|
|
return 0;
|
|
}
|
|
|
|
extern write_func_t *g_test_write_injector;
|
|
extern read_func_t *g_test_read_injector;
|
|
extern erasefunc_t *g_test_erase_injector;
|
|
|
|
static struct flashchip chip_1_2_4_8_16 = {
|
|
.vendor = "aklm",
|
|
/*
|
|
* total_size is supposed to be in Kilobytes and this number is multiplied
|
|
* by 1024 everywhere in flashrom code. With this, we can't have the chip of
|
|
* size MOCK_CHIP_SIZE anyway, because MOCK_CHIP_SIZE is much smaller than
|
|
* 1024.
|
|
*
|
|
* So setting 1 here as this is the smallest possible value of unsigned int.
|
|
* Why aim for the smallest value? Because various places in flashrom code
|
|
* are allocating buffers of size total_size * 1024, however in these unit
|
|
* tests only MOCK_CHIP_SIZE bytes are tracked/logged/asserted.
|
|
*/
|
|
.total_size = 1,
|
|
.tested = TEST_OK_PREW,
|
|
.gran = WRITE_GRAN_1BYTE,
|
|
.read = TEST_READ_INJECTOR,
|
|
.write = TEST_WRITE_INJECTOR,
|
|
.block_erasers =
|
|
{
|
|
{
|
|
.eraseblocks = { {1, MIN_REAL_CHIP_SIZE} },
|
|
.block_erase = TEST_ERASE_INJECTOR,
|
|
}, {
|
|
.eraseblocks = { {2, MIN_REAL_CHIP_SIZE / 2} },
|
|
.block_erase = TEST_ERASE_INJECTOR,
|
|
}, {
|
|
.eraseblocks = { {4, MIN_REAL_CHIP_SIZE / 4} },
|
|
.block_erase = TEST_ERASE_INJECTOR,
|
|
}, {
|
|
.eraseblocks = { {8, MIN_REAL_CHIP_SIZE / 8} },
|
|
.block_erase = TEST_ERASE_INJECTOR,
|
|
}, {
|
|
.eraseblocks = { {16, MIN_REAL_CHIP_SIZE / 16} },
|
|
.block_erase = TEST_ERASE_INJECTOR,
|
|
}
|
|
},
|
|
};
|
|
|
|
static struct flashchip chip_1_8_16 = {
|
|
.vendor = "aklm",
|
|
/* See comment on previous chip. */
|
|
.total_size = 1,
|
|
.tested = TEST_OK_PREW,
|
|
.gran = WRITE_GRAN_1BYTE,
|
|
.read = TEST_READ_INJECTOR,
|
|
.write = TEST_WRITE_INJECTOR,
|
|
.block_erasers =
|
|
{
|
|
{
|
|
.eraseblocks = { {1, MIN_REAL_CHIP_SIZE} },
|
|
.block_erase = TEST_ERASE_INJECTOR,
|
|
}, {
|
|
.eraseblocks = { {8, MIN_REAL_CHIP_SIZE / 8} },
|
|
.block_erase = TEST_ERASE_INJECTOR,
|
|
}, {
|
|
.eraseblocks = { {16, MIN_REAL_CHIP_SIZE / 16} },
|
|
.block_erase = TEST_ERASE_INJECTOR,
|
|
}
|
|
},
|
|
};
|
|
|
|
static struct flashchip chip_8_16 = {
|
|
.vendor = "aklm",
|
|
/* See comment on previous chip. */
|
|
.total_size = 1,
|
|
.tested = TEST_OK_PREW,
|
|
.gran = WRITE_GRAN_1BYTE,
|
|
.read = TEST_READ_INJECTOR,
|
|
.write = TEST_WRITE_INJECTOR,
|
|
.block_erasers =
|
|
{
|
|
{
|
|
.eraseblocks = { {8, MIN_REAL_CHIP_SIZE / 8} },
|
|
.block_erase = TEST_ERASE_INJECTOR,
|
|
}, {
|
|
.eraseblocks = { {16, MIN_REAL_CHIP_SIZE / 16} },
|
|
.block_erase = TEST_ERASE_INJECTOR,
|
|
}
|
|
},
|
|
};
|
|
|
|
static void setup_chip(struct flashrom_flashctx *flashctx, struct flashrom_layout **layout,
|
|
const char *programmer_param, struct test_case *current_test_case)
|
|
{
|
|
g_test_write_injector = write_chip;
|
|
g_test_read_injector = read_chip;
|
|
g_test_erase_injector = block_erase_chip;
|
|
|
|
/* First MOCK_CHIP_SIZE bytes have a meaning and set with given values for this test case. */
|
|
memcpy(g_state.buf, current_test_case->initial_buf, MOCK_CHIP_SIZE);
|
|
/* The rest of mock chip memory does not matter. */
|
|
memset(g_state.buf + MOCK_CHIP_SIZE, ERASE_VALUE, MIN_REAL_CHIP_SIZE - MOCK_CHIP_SIZE);
|
|
|
|
/* Clear eraseblock invocation records. */
|
|
memset(g_state.eraseblocks_actual, 0, MOCK_CHIP_SIZE * sizeof(struct erase_invoke));
|
|
g_state.eraseblocks_actual_ind = 0;
|
|
|
|
flashctx->chip = current_test_case->chip;
|
|
|
|
printf("Creating layout ... ");
|
|
assert_int_equal(0, flashrom_layout_new(layout));
|
|
|
|
/* Adding regions from test case. */
|
|
int i = 0;
|
|
while (current_test_case->regions[i].name != NULL) {
|
|
assert_int_equal(0, flashrom_layout_add_region(*layout,
|
|
current_test_case->regions[i].start,
|
|
current_test_case->regions[i].end,
|
|
current_test_case->regions[i].name));
|
|
assert_int_equal(0, flashrom_layout_include_region(*layout, current_test_case->regions[i].name));
|
|
i++;
|
|
}
|
|
|
|
flashrom_layout_set(flashctx, *layout);
|
|
printf("done\n");
|
|
|
|
/*
|
|
* We need some programmer (any), and dummy is a very good one,
|
|
* because it doesn't need any mocking. So no extra complexity
|
|
* from a programmer side, and test can focus on working with the chip.
|
|
*/
|
|
printf("Dummyflasher initialising with param=\"%s\"... ", programmer_param);
|
|
assert_int_equal(0, programmer_init(&programmer_dummy, programmer_param));
|
|
/* Assignment below normally happens while probing, but this test is not probing. */
|
|
flashctx->mst = ®istered_masters[0];
|
|
printf("done\n");
|
|
}
|
|
|
|
static void teardown_chip(struct flashrom_layout **layout)
|
|
{
|
|
printf("Dummyflasher shutdown... ");
|
|
assert_int_equal(0, programmer_shutdown());
|
|
printf("done\n");
|
|
|
|
printf("Releasing layout... ");
|
|
flashrom_layout_release(*layout);
|
|
printf("done\n");
|
|
}
|
|
|
|
/*
|
|
* Setup all test cases.
|
|
*
|
|
* First half of test cases is set up for a chip with erasers: 1, 2, 4, 8, 16 bytes.
|
|
* Second half repeates the same test cases for a chip with erasers: 1, 8, 16 bytes.
|
|
* Tests from #16 onwards use the chip with erasers: 8, 16 bytes, to test unaligned layout regions.
|
|
*/
|
|
static struct test_case test_cases[] = {
|
|
{
|
|
/*
|
|
* Test case #0
|
|
*
|
|
* Initial vs written: all 16 bytes are different.
|
|
* One layout region for the whole chip.
|
|
* Chip with eraseblocks 1, 2, 4, 8, 16.
|
|
*/
|
|
.chip = &chip_1_2_4_8_16,
|
|
.regions = {{0, MIN_REAL_CHIP_SIZE - 1, "whole chip"}},
|
|
.initial_buf = {0x0, 0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8,
|
|
0x9, 0xa, 0xb, 0xc, 0xd, 0xe, 0xf},
|
|
.erased_buf = {ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE},
|
|
.written_buf = {0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18,
|
|
0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f},
|
|
.eraseblocks_expected = {{0x0, 0x10}},
|
|
.eraseblocks_expected_ind = 1,
|
|
.erase_test_name = "Erase test case #0",
|
|
.write_test_name = "Write test case #0",
|
|
}, {
|
|
/*
|
|
* Test case #1
|
|
*
|
|
* Initial vs written: 9 bytes the same, 7 bytes different.
|
|
* Two layout regions each one 8 bytes, which is 1/2 size of chip.
|
|
* Chip with eraseblocks 1, 2, 4, 8, 16.
|
|
*/
|
|
.chip = &chip_1_2_4_8_16,
|
|
.regions = {{0, MOCK_CHIP_SIZE/2 - 1, "part1"}, {MOCK_CHIP_SIZE/2, MIN_REAL_CHIP_SIZE - 1, "part2"}},
|
|
.initial_buf = {0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7,
|
|
0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0xff},
|
|
.erased_buf = {ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE},
|
|
.written_buf = {0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8,
|
|
0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f},
|
|
.eraseblocks_expected = {{0x8, 0x8}, {0x0, 0x8}},
|
|
.eraseblocks_expected_ind = 2,
|
|
.erase_test_name = "Erase test case #1",
|
|
.write_test_name = "Write test case #1",
|
|
}, {
|
|
/*
|
|
* Test case #2
|
|
*
|
|
* Initial vs written: 6 bytes the same, 4 bytes different, 4 bytes the same, 2 bytes different.
|
|
* Two layout regions 11 and 5 bytes each.
|
|
* Chip with eraseblocks 1, 2, 4, 8, 16.
|
|
*/
|
|
.chip = &chip_1_2_4_8_16,
|
|
.regions = {{0, 10, "odd1"}, {11, 15, "odd2"}, {MOCK_CHIP_SIZE, MIN_REAL_CHIP_SIZE - 1, "longtail"}},
|
|
.initial_buf = {0xff, 0xff, 0x0, 0xff, 0x0, 0xff, 0x0, 0xff,
|
|
0x0, 0xff, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff},
|
|
.erased_buf = {ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE},
|
|
.written_buf = {0xff, 0xff, 0x0, 0xff, 0x0, 0xff, 0x20, 0x2f,
|
|
0x20, 0x2f, 0x0, 0xff, 0xff, 0xff, 0x2f, 0x2f},
|
|
.eraseblocks_expected = {{0xb, 0x1}, {0xc, 0x4}, {0xa, 0x1}, {0x8, 0x2}, {0x0, 0x8}},
|
|
.eraseblocks_expected_ind = 5,
|
|
.erase_test_name = "Erase test case #2",
|
|
.write_test_name = "Write test case #2",
|
|
}, {
|
|
/*
|
|
* Test case #3
|
|
*
|
|
* Initial vs written: 4 bytes the same, 4 bytes different, 8 bytes the same.
|
|
* One layout region covering the whole chip.
|
|
* Chip with eraseblocks 1, 2, 4, 8, 16.
|
|
*/
|
|
.chip = &chip_1_2_4_8_16,
|
|
.regions = {{0, MIN_REAL_CHIP_SIZE - 1, "whole chip"}},
|
|
.initial_buf = {0xff, 0xff, 0xff, 0xff, 0x11, 0x22, 0x33, 0x44,
|
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff},
|
|
.erased_buf = {ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE},
|
|
.written_buf = {0xff, 0xff, 0xff, 0xff, 0x1, 0x2, 0x3, 0x4,
|
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff},
|
|
.eraseblocks_expected = {{0x0, 0x10}},
|
|
.eraseblocks_expected_ind = 1,
|
|
.erase_test_name = "Erase test case #3",
|
|
.write_test_name = "Write test case #3",
|
|
}, {
|
|
/*
|
|
* Test case #4
|
|
*
|
|
* Initial vs written: 4 bytes different, 4 bytes the same, 8 bytes different.
|
|
* One layout region covering the whole chip.
|
|
* Chip with eraseblocks 1, 2, 4, 8, 16.
|
|
*/
|
|
.chip = &chip_1_2_4_8_16,
|
|
.regions = {{0, MIN_REAL_CHIP_SIZE - 1, "whole chip"}},
|
|
.initial_buf = {0x1, 0x2, 0x3, 0x4, 0xff, 0xff, 0xff, 0xff,
|
|
0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18},
|
|
.erased_buf = {ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE},
|
|
.written_buf = {0x11, 0x22, 0x33, 0x44, 0xff, 0xff, 0xff, 0xff,
|
|
0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8},
|
|
.eraseblocks_expected = {{0x0, 0x10}},
|
|
.eraseblocks_expected_ind = 1,
|
|
.erase_test_name = "Erase test case #4",
|
|
.write_test_name = "Write test case #4",
|
|
}, {
|
|
/*
|
|
* Test case #5
|
|
*
|
|
* Initial vs written: 7 bytes different, 1 bytes the same, 8 bytes different.
|
|
* One layout region covering the whole chip.
|
|
* Chip with eraseblocks 1, 2, 4, 8, 16.
|
|
*/
|
|
.chip = &chip_1_2_4_8_16,
|
|
.regions = {{0, MIN_REAL_CHIP_SIZE - 1, "whole chip"}},
|
|
.initial_buf = {0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0xff,
|
|
0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18},
|
|
.erased_buf = {ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE},
|
|
.written_buf = {0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0xff,
|
|
0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8},
|
|
.eraseblocks_expected = {{0x0, 0x10}},
|
|
.eraseblocks_expected_ind = 1,
|
|
.erase_test_name = "Erase test case #5",
|
|
.write_test_name = "Write test case #5",
|
|
}, {
|
|
/*
|
|
* Test case #6
|
|
*
|
|
* Initial vs written: 7 bytes the same, 1 bytes different, 8 bytes the same.
|
|
* One layout region covering the whole chip.
|
|
* Chip with eraseblocks 1, 2, 4, 8, 16.
|
|
*/
|
|
.chip = &chip_1_2_4_8_16,
|
|
.regions = {{0, MIN_REAL_CHIP_SIZE - 1, "whole chip"}},
|
|
.initial_buf = {0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x1d,
|
|
0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8},
|
|
.erased_buf = {ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE},
|
|
.written_buf = {0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0xdd,
|
|
0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8},
|
|
.eraseblocks_expected = {{0x0, 0x10}},
|
|
.eraseblocks_expected_ind = 1,
|
|
.erase_test_name = "Erase test case #6",
|
|
.write_test_name = "Write test case #6",
|
|
}, {
|
|
/*
|
|
* Test case #7
|
|
*
|
|
* Initial vs written: all 16 bytes are different.
|
|
* Layout with irregular regions unaligned with eraseblocks.
|
|
* Chip with eraseblocks 1, 2, 4, 8, 16.
|
|
*/
|
|
.chip = &chip_1_2_4_8_16,
|
|
.regions = {{0, 2, "reg3"}, {3, 7, "reg5"}, {8, 14, "reg7"}, {15, MIN_REAL_CHIP_SIZE - 1, "reg1"}},
|
|
.initial_buf = {0x0, 0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7,
|
|
0x8, 0x9, 0xa, 0xb, 0xc, 0xd, 0xe, 0xf},
|
|
.erased_buf = {ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE},
|
|
.written_buf = {0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,
|
|
0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f},
|
|
.eraseblocks_expected = {{0xf, 0x1}, {0xe, 0x1}, {0xc, 0x2}, {0x8, 0x4},
|
|
{0x3, 0x1}, {0x4, 0x4}, {0x2, 0x1}, {0x0, 0x2}},
|
|
.eraseblocks_expected_ind = 8,
|
|
.erase_test_name = "Erase test case #7",
|
|
.write_test_name = "Write test case #7",
|
|
}, {
|
|
/*
|
|
* Test case #8
|
|
*
|
|
* Initial vs written: all 16 bytes are different.
|
|
* One layout region for the whole chip.
|
|
* Chip with eraseblocks 1, 8, 16.
|
|
*/
|
|
.chip = &chip_1_8_16,
|
|
.regions = {{0, MIN_REAL_CHIP_SIZE - 1, "whole chip"}},
|
|
.initial_buf = {0x0, 0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7,
|
|
0x8, 0x9, 0xa, 0xb, 0xc, 0xd, 0xe, 0xf},
|
|
.erased_buf = {ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE},
|
|
.written_buf = {0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,
|
|
0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f},
|
|
.eraseblocks_expected = {{0x0, 0x10}},
|
|
.eraseblocks_expected_ind = 1,
|
|
.erase_test_name = "Erase test case #8",
|
|
.write_test_name = "Write test case #8",
|
|
}, {
|
|
/*
|
|
* Test case #9
|
|
*
|
|
* Initial vs written: 9 bytes the same, 7 bytes different.
|
|
* Two layout regions each one 8 bytes, which is 1/2 size of chip.
|
|
* Chip with eraseblocks 1, 8, 16.
|
|
*/
|
|
.chip = &chip_1_8_16,
|
|
.regions = {{0, MOCK_CHIP_SIZE/2 - 1, "part1"}, {MOCK_CHIP_SIZE/2, MOCK_CHIP_SIZE - 1, "part2"},
|
|
{MOCK_CHIP_SIZE, MIN_REAL_CHIP_SIZE - 1, "longtail"}},
|
|
.initial_buf = {0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7,
|
|
0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0xff},
|
|
.erased_buf = {ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE},
|
|
.written_buf = {0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7,
|
|
0xf8, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f},
|
|
.eraseblocks_expected = {{0x8, 0x8}, {0x0, 0x8}},
|
|
.eraseblocks_expected_ind = 2,
|
|
.erase_test_name = "Erase test case #9",
|
|
.write_test_name = "Write test case #9",
|
|
}, {
|
|
/*
|
|
* Test case #10
|
|
*
|
|
* Initial vs written: 6 bytes the same, 4 bytes different, 4 bytes the same, 2 bytes different.
|
|
* Two layout regions 11 and 5 bytes each.
|
|
* Chip with eraseblocks 1, 8, 16.
|
|
*/
|
|
.chip = &chip_1_8_16,
|
|
.regions = {{0, 10, "odd1"}, {11, 15, "odd2"}, {MOCK_CHIP_SIZE, MIN_REAL_CHIP_SIZE - 1, "longtail"}},
|
|
.initial_buf = {0xff, 0xff, 0x0, 0xff, 0x0, 0xff, 0x0, 0xff,
|
|
0x0, 0xff, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff},
|
|
.erased_buf = {ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE},
|
|
.written_buf = {0xff, 0xff, 0x0, 0xff, 0x0, 0xff, 0x20, 0x2f,
|
|
0x20, 0x2f, 0x0, 0xff, 0xff, 0xff, 0x2f, 0x2f},
|
|
.eraseblocks_expected = {{0xb, 0x1}, {0xc, 0x1}, {0xd, 0x1}, {0xe, 0x1},
|
|
{0xf, 0x1}, {0x8, 0x1}, {0x9, 0x1}, {0xa, 0x1}, {0x0, 0x8}},
|
|
.eraseblocks_expected_ind = 9,
|
|
.erase_test_name = "Erase test case #10",
|
|
.write_test_name = "Write test case #10",
|
|
}, {
|
|
/*
|
|
* Test case #11
|
|
*
|
|
* Initial vs written: 4 bytes the same, 4 bytes different, 8 bytes the same.
|
|
* One layout region covering the whole chip.
|
|
* Chip with eraseblocks 1, 8, 16.
|
|
*/
|
|
.chip = &chip_1_8_16,
|
|
.regions = {{0, MIN_REAL_CHIP_SIZE - 1, "whole chip"}},
|
|
.initial_buf = {0xff, 0xff, 0xff, 0xff, 0x11, 0x22, 0x33, 0x44,
|
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff},
|
|
.erased_buf = {ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE},
|
|
.written_buf = {0xff, 0xff, 0xff, 0xff, 0x1, 0x2, 0x3, 0x4,
|
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff},
|
|
.eraseblocks_expected = {{0x0, 0x10}},
|
|
.eraseblocks_expected_ind = 1,
|
|
.erase_test_name = "Erase test case #11",
|
|
.write_test_name = "Write test case #11",
|
|
}, {
|
|
/*
|
|
* Test case #12
|
|
*
|
|
* Initial vs written: 4 bytes different, 4 bytes the same, 8 bytes different.
|
|
* One layout region covering the whole chip.
|
|
* Chip with eraseblocks 1, 8, 16.
|
|
*/
|
|
.chip = &chip_1_8_16,
|
|
.regions = {{0, MIN_REAL_CHIP_SIZE - 1, "whole chip"}},
|
|
.initial_buf = {0x1, 0x2, 0x3, 0x4, 0xff, 0xff, 0xff, 0xff,
|
|
0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18},
|
|
.erased_buf = {ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE},
|
|
.written_buf = {0x11, 0x22, 0x33, 0x44, 0xff, 0xff, 0xff, 0xff,
|
|
0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8},
|
|
.eraseblocks_expected = {{0x0, 0x10}},
|
|
.eraseblocks_expected_ind = 1,
|
|
.erase_test_name = "Erase test case #12",
|
|
.write_test_name = "Write test case #12",
|
|
}, {
|
|
/*
|
|
* Test case #13
|
|
*
|
|
* Initial vs written: 7 bytes different, 1 bytes the same, 8 bytes different.
|
|
* One layout region covering the whole chip.
|
|
* Chip with eraseblocks 1, 8, 16.
|
|
*/
|
|
.chip = &chip_1_8_16,
|
|
.regions = {{0, MIN_REAL_CHIP_SIZE - 1, "whole chip"}},
|
|
.initial_buf = {0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0xff,
|
|
0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18},
|
|
.erased_buf = {ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE},
|
|
.written_buf = {0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0xff,
|
|
0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8},
|
|
.eraseblocks_expected = {{0x0, 0x10}},
|
|
.eraseblocks_expected_ind = 1,
|
|
.erase_test_name = "Erase test case #13",
|
|
.write_test_name = "Write test case #13",
|
|
}, {
|
|
/*
|
|
* Test case #14
|
|
*
|
|
* Initial vs written: 7 bytes the same, 1 bytes different, 8 bytes the same.
|
|
* One layout region covering the whole chip.
|
|
* Chip with eraseblocks 1, 8, 16.
|
|
*/
|
|
.chip = &chip_1_8_16,
|
|
.regions = {{0, MIN_REAL_CHIP_SIZE - 1, "whole chip"}},
|
|
.initial_buf = {0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x1d,
|
|
0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8},
|
|
.erased_buf = {ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE},
|
|
.written_buf = {0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0xdd,
|
|
0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8},
|
|
.eraseblocks_expected = {{0x0, 0x10}},
|
|
.eraseblocks_expected_ind = 1,
|
|
.erase_test_name = "Erase test case #14",
|
|
.write_test_name = "Write test case #14",
|
|
}, {
|
|
/*
|
|
* Test case #15
|
|
*
|
|
* Initial vs written: all 16 bytes are different.
|
|
* Layout with irregular regions unaligned with eraseblocks.
|
|
* Chip with eraseblocks 1, 8, 16.
|
|
*/
|
|
.chip = &chip_1_8_16,
|
|
.regions = {{0, 2, "reg3"}, {3, 7, "reg5"}, {8, 14, "reg7"},
|
|
{15, MIN_REAL_CHIP_SIZE - 1, "reg1"}},
|
|
.initial_buf = {0x0, 0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7,
|
|
0x8, 0x9, 0xa, 0xb, 0xc, 0xd, 0xe, 0xf},
|
|
.erased_buf = {ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE},
|
|
.written_buf = {0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,
|
|
0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f},
|
|
.eraseblocks_expected = {{0xf, 0x1}, {0x8, 0x1}, {0x9, 0x1}, {0xa, 0x1},
|
|
{0xb, 0x1}, {0xc, 0x1}, {0xd, 0x1}, {0xe, 0x1},
|
|
{0x3, 0x1}, {0x4, 0x1}, {0x5, 0x1}, {0x6, 0x1},
|
|
{0x7, 0x1}, {0x0, 0x1}, {0x1, 0x1}, {0x2, 0x1}},
|
|
.eraseblocks_expected_ind = 16,
|
|
.erase_test_name = "Erase test case #15",
|
|
.write_test_name = "Write test case #15",
|
|
}, {
|
|
/*
|
|
* Test case #16
|
|
*
|
|
* Initial vs written: all 16 bytes are different.
|
|
* Layout with unaligned regions 2+4+9+1b which are smaller than the smallest eraseblock.
|
|
* Chip with eraseblocks 8, 16.
|
|
*/
|
|
.chip = &chip_8_16,
|
|
.regions = {{0, 1, "reg2"}, {2, 5, "reg4"}, {6, 14, "reg9"},
|
|
{15, MIN_REAL_CHIP_SIZE - 1, "reg1"}},
|
|
.initial_buf = {0x4, 0x4, 0x5, 0x5, 0x5, 0x5, 0x6, 0x6,
|
|
0x6, 0x6, 0x6, 0x6, 0x6, 0x6, 0x6, 0x7},
|
|
.erased_buf = {ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE},
|
|
.written_buf = {0x14, 0x14, 0x15, 0x15, 0x15, 0x15, 0x16, 0x16,
|
|
0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x17},
|
|
.eraseblocks_expected = {{0x8, 0x8}, {0x0, 0x10}, {0x0, 0x8}, {0x0, 0x8}},
|
|
.eraseblocks_expected_ind = 4,
|
|
.erase_test_name = "Erase test case #16",
|
|
.write_test_name = "Write test case #16",
|
|
}, {
|
|
/*
|
|
* Test case #17
|
|
*
|
|
* Initial vs written: all 16 bytes are different.
|
|
* Layout with unaligned region 3+13b which are smaller than the smallest eraseblock.
|
|
* Chip with eraseblocks 8, 16.
|
|
*/
|
|
.chip = &chip_8_16,
|
|
.regions = {{0, 2, "reg3"}, {3, MIN_REAL_CHIP_SIZE - 1, "tail"}},
|
|
.initial_buf = {0x4, 0x4, 0x4, 0x6, 0x6, 0x6, 0x6, 0x6,
|
|
0x6, 0x6, 0x6, 0x6, 0x6, 0x6, 0x6, 0x6},
|
|
.erased_buf = {ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE},
|
|
.written_buf = {0x14, 0x14, 0x14, 0x16, 0x16, 0x16, 0x16, 0x16,
|
|
0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16},
|
|
.eraseblocks_expected = {{0x0, 0x10}, {0x0, 0x8}},
|
|
.eraseblocks_expected_ind = 2,
|
|
.erase_test_name = "Erase test case #17",
|
|
.write_test_name = "Write test case #17",
|
|
}, {
|
|
/*
|
|
* Test case #18
|
|
*
|
|
* Initial vs written: all 16 bytes are different.
|
|
* Layout with unaligned region 9+7b.
|
|
* Chip with eraseblocks 8, 16.
|
|
*/
|
|
.chip = &chip_8_16,
|
|
.regions = {{0, 8, "reg9"}, {9, MIN_REAL_CHIP_SIZE - 1, "tail"}},
|
|
.initial_buf = {0x4, 0x4, 0x4, 0x4, 0x4, 0x4, 0x4, 0x4,
|
|
0x4, 0x6, 0x6, 0x6, 0x6, 0x6, 0x6, 0x6},
|
|
.erased_buf = {ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE,
|
|
ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, ERASE_VALUE},
|
|
.written_buf = {0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14,
|
|
0x14, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16},
|
|
.eraseblocks_expected = {{0x8, 0x8}, {0x0, 0x10}},
|
|
.eraseblocks_expected_ind = 2,
|
|
.erase_test_name = "Erase test case #18",
|
|
.write_test_name = "Write test case #18",
|
|
}, {
|
|
/*
|
|
* Test case #19
|
|
*
|
|
* Initial vs written: 3 bytes of the logical layout are different, rest is the same.
|
|
* Layout with unaligned region 3 bytes. Layout does not cover the whole chip memory.
|
|
* Chip memory outside of logical layout is skipped by both erase and write ops.
|
|
* Chip with eraseblocks 8, 16.
|
|
*/
|
|
.chip = &chip_8_16,
|
|
.regions = {{0, 2, "reg3"}},
|
|
.initial_buf = {0x4, 0x4, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0,
|
|
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0},
|
|
.erased_buf = {ERASE_VALUE, ERASE_VALUE, ERASE_VALUE, 0x0,
|
|
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0},
|
|
.written_buf = {0x14, 0x14, 0x14, 0x0, 0x0, 0x0, 0x0, 0x0,
|
|
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0},
|
|
.eraseblocks_expected = {{0x0, 0x8}},
|
|
.eraseblocks_expected_ind = 1,
|
|
.erase_test_name = "Erase test case #19",
|
|
.write_test_name = "Write test case #19",
|
|
},
|
|
};
|
|
|
|
static int setup(void **state) {
|
|
struct test_case *current_test_case = *state;
|
|
g_state.current_test_case = current_test_case;
|
|
return 0;
|
|
}
|
|
|
|
static int teardown(void **state) {
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* Creates the array of tests for each test case in test_cases[].
|
|
* Each test_case produces two tests: one for erase and one for write operation.
|
|
* The caller needs to free the allocated memory.
|
|
*/
|
|
struct CMUnitTest *get_erase_func_algo_tests(size_t *num_tests) {
|
|
const size_t test_cases_num = ARRAY_SIZE(test_cases);
|
|
|
|
// Twice the number of test cases, because each test case is run twice: for erase and write.
|
|
struct CMUnitTest *all_cases = calloc(test_cases_num * 2, sizeof(struct CMUnitTest));
|
|
*num_tests = test_cases_num * 2;
|
|
|
|
for (size_t i = 0; i < test_cases_num; i++) {
|
|
all_cases[i] = (struct CMUnitTest) {
|
|
.name = test_cases[i].erase_test_name,
|
|
.setup_func = setup,
|
|
.teardown_func = teardown,
|
|
.initial_state = &test_cases[i],
|
|
.test_func = erase_function_algo_test_success,
|
|
};
|
|
all_cases[i + test_cases_num] = (struct CMUnitTest) {
|
|
.name = test_cases[i].write_test_name,
|
|
.setup_func = setup,
|
|
.teardown_func = teardown,
|
|
.initial_state = &test_cases[i],
|
|
.test_func = write_function_algo_test_success,
|
|
};
|
|
}
|
|
|
|
return all_cases;
|
|
}
|
|
|
|
/*
|
|
* This function is invoked for every test case in test_cases[],
|
|
* current test case is passed as an argument.
|
|
*/
|
|
void erase_function_algo_test_success(void **state)
|
|
{
|
|
struct test_case* current_test_case = *state;
|
|
|
|
int all_erase_tests_result = 0;
|
|
struct flashrom_flashctx flashctx = { 0 };
|
|
const char *param = ""; /* Default values for all params. */
|
|
|
|
struct flashrom_layout *layout;
|
|
|
|
setup_chip(&flashctx, &layout, param, current_test_case);
|
|
|
|
printf("%s started.\n", current_test_case->erase_test_name);
|
|
int ret = flashrom_flash_erase(&flashctx);
|
|
printf("%s returned %d.\n", current_test_case->erase_test_name, ret);
|
|
|
|
int chip_erased = !memcmp(g_state.buf, current_test_case->erased_buf, MOCK_CHIP_SIZE);
|
|
|
|
int eraseblocks_in_order = !memcmp(g_state.eraseblocks_actual,
|
|
current_test_case->eraseblocks_expected,
|
|
current_test_case->eraseblocks_expected_ind * sizeof(struct erase_invoke));
|
|
|
|
int eraseblocks_invocations = (g_state.eraseblocks_actual_ind ==
|
|
current_test_case->eraseblocks_expected_ind);
|
|
|
|
if (chip_erased)
|
|
printf("Erased chip memory state for %s is CORRECT\n",
|
|
current_test_case->erase_test_name);
|
|
else
|
|
printf("Erased chip memory state for %s is WRONG\n",
|
|
current_test_case->erase_test_name);
|
|
|
|
if (eraseblocks_in_order)
|
|
printf("Eraseblocks order of invocation for %s is CORRECT\n",
|
|
current_test_case->erase_test_name);
|
|
else
|
|
printf("Eraseblocks order of invocation for %s is WRONG\n",
|
|
current_test_case->erase_test_name);
|
|
|
|
if (eraseblocks_invocations)
|
|
printf("Eraseblocks number of invocations for %s is CORRECT\n",
|
|
current_test_case->erase_test_name);
|
|
else
|
|
printf("Eraseblocks number of invocations for %s is WRONG, expected %d actual %d\n",
|
|
current_test_case->erase_test_name,
|
|
current_test_case->eraseblocks_expected_ind,
|
|
g_state.eraseblocks_actual_ind);
|
|
|
|
all_erase_tests_result |= ret;
|
|
all_erase_tests_result |= !chip_erased;
|
|
all_erase_tests_result |= !eraseblocks_in_order;
|
|
all_erase_tests_result |= !eraseblocks_invocations;
|
|
|
|
teardown_chip(&layout);
|
|
|
|
assert_int_equal(0, all_erase_tests_result);
|
|
}
|
|
|
|
/*
|
|
* This function is invoked for every test case in test_cases[],
|
|
* current test case is passed as an argument.
|
|
*/
|
|
void write_function_algo_test_success(void **state)
|
|
{
|
|
struct test_case* current_test_case = *state;
|
|
|
|
int all_write_test_result = 0;
|
|
struct flashrom_flashctx flashctx = { 0 };
|
|
uint8_t newcontents[MIN_BUF_SIZE];
|
|
const char *param = ""; /* Default values for all params. */
|
|
|
|
struct flashrom_layout *layout;
|
|
|
|
setup_chip(&flashctx, &layout, param, current_test_case);
|
|
memcpy(&newcontents, current_test_case->written_buf, MOCK_CHIP_SIZE);
|
|
|
|
printf("%s started.\n", current_test_case->write_test_name);
|
|
int ret = flashrom_image_write(&flashctx, &newcontents, MIN_BUF_SIZE, NULL);
|
|
printf("%s returned %d.\n", current_test_case->write_test_name, ret);
|
|
|
|
int chip_written = !memcmp(g_state.buf, current_test_case->written_buf, MOCK_CHIP_SIZE);
|
|
|
|
if (chip_written)
|
|
printf("Written chip memory state for %s is CORRECT\n",
|
|
current_test_case->write_test_name);
|
|
else
|
|
printf("Written chip memory state for %s is WRONG\n",
|
|
current_test_case->write_test_name);
|
|
|
|
all_write_test_result |= ret;
|
|
all_write_test_result |= !chip_written;
|
|
|
|
teardown_chip(&layout);
|
|
|
|
assert_int_equal(0, all_write_test_result);
|
|
}
|