Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 1 | #include "pnor_partition_table.hpp" |
| 2 | #include "config.h" |
| 3 | #include <assert.h> |
| 4 | #include <string.h> |
| 5 | #include <vector> |
| 6 | #include <fstream> |
| 7 | #include <experimental/filesystem> |
| 8 | |
Deepak Kodihalli | e8b0e8a | 2017-07-12 10:01:31 -0500 | [diff] [blame] | 9 | constexpr auto line = "partition01=HBB,00000000,00000400,80,ECC,PRESERVED"; |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 10 | constexpr auto partitionName = "HBB"; |
| 11 | char tmplt[] = "/tmp/vpnor_partitions.XXXXXX"; |
| 12 | |
| 13 | int main() |
| 14 | { |
| 15 | namespace fs = std::experimental::filesystem; |
| 16 | |
| 17 | char* tmpdir = mkdtemp(tmplt); |
| 18 | assert(tmpdir != nullptr); |
| 19 | |
| 20 | fs::path tocFilePath{tmpdir}; |
| 21 | tocFilePath /= PARTITION_TOC_FILE; |
| 22 | std::ofstream tocFile(tocFilePath.c_str()); |
| 23 | tocFile.write(line, strlen(line)); |
| 24 | tocFile.close(); |
| 25 | |
| 26 | fs::path partitionFilePath{tmpdir}; |
| 27 | partitionFilePath /= partitionName; |
| 28 | std::ofstream partitionFile(partitionFilePath.c_str()); |
| 29 | std::vector<char> empty(1, 0); // 1 byte file |
| 30 | partitionFile.write(empty.data(), empty.size()); |
| 31 | partitionFile.close(); |
| 32 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 33 | const openpower::virtual_pnor::partition::Table table( |
| 34 | fs::path{tmpdir}, 4 * 1024, 64 * 1024 * 1024); |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 35 | |
| 36 | pnor_partition_table expectedTable{}; |
| 37 | expectedTable.data.magic = PARTITION_HEADER_MAGIC; |
| 38 | expectedTable.data.version = PARTITION_VERSION_1; |
| 39 | expectedTable.data.size = 1; // 1 block |
| 40 | expectedTable.data.entry_size = sizeof(pnor_partition); |
| 41 | expectedTable.data.entry_count = 1; // 1 partition |
| 42 | expectedTable.data.block_size = 4096; |
Deepak Kodihalli | d1d7930 | 2017-07-11 23:01:39 -0500 | [diff] [blame] | 43 | expectedTable.data.block_count = |
| 44 | (64 * 1024 * 1024) / expectedTable.data.block_size; |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 45 | expectedTable.checksum = |
| 46 | openpower::virtual_pnor::details::checksum(expectedTable.data); |
| 47 | |
| 48 | pnor_partition expectedPartition{}; |
| 49 | strcpy(expectedPartition.data.name, partitionName); |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 50 | expectedPartition.data.base = 0; // starts at offset 0 |
| 51 | expectedPartition.data.size = 1; // 1 block |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 52 | expectedPartition.data.actual = 0x400; // 1024 bytes |
| 53 | expectedPartition.data.id = 1; |
| 54 | expectedPartition.data.pid = PARENT_PATITION_ID; |
| 55 | expectedPartition.data.type = PARTITION_TYPE_DATA; |
| 56 | expectedPartition.data.flags = 0; |
| 57 | expectedPartition.data.user.data[0] = PARTITION_ECC_PROTECTED; |
| 58 | expectedPartition.data.user.data[1] |= PARTITION_PRESERVED; |
Deepak Kodihalli | e8b0e8a | 2017-07-12 10:01:31 -0500 | [diff] [blame] | 59 | expectedPartition.data.user.data[1] |= PARTITION_VERSION_CHECK_SHA512; |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 60 | expectedPartition.checksum = |
| 61 | openpower::virtual_pnor::details::checksum(expectedPartition.data); |
| 62 | |
| 63 | const pnor_partition_table& result = table.getNativeTable(); |
| 64 | |
| 65 | fs::remove_all(fs::path{tmpdir}); |
| 66 | |
| 67 | auto rc = memcmp(&expectedTable, &result, sizeof(pnor_partition_table)); |
| 68 | assert(rc == 0); |
| 69 | |
| 70 | rc = memcmp(&expectedPartition, &result.partitions[0], |
| 71 | sizeof(pnor_partition)); |
| 72 | assert(rc == 0); |
| 73 | |
Adriana Kobylak | 2ad2132 | 2017-11-28 14:59:19 -0600 | [diff] [blame] | 74 | const pnor_partition& first = table.partition(0); // Partition at offset 0 |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 75 | rc = memcmp(&first, &result.partitions[0], sizeof(pnor_partition)); |
| 76 | assert(rc == 0); |
| 77 | |
| 78 | return 0; |
| 79 | } |