blob: 199a00b5f1751de0e1797d65631b2f45f37a3fc1 [file] [log] [blame]
Andrew Jeffery3376dac2018-02-27 17:03:08 +10301// SPDX-License-Identifier: Apache-2.0
2// Copyright (C) 2018 IBM Corp.
3#include <assert.h>
4#include <string.h>
5
6#include "config.h"
Andrew Jeffery53c21aa2018-03-26 11:56:16 +10307#include "vpnor/pnor_partition_table.hpp"
Andrew Jeffery3376dac2018-02-27 17:03:08 +10308#include "xyz/openbmc_project/Common/error.hpp"
9
10extern "C" {
11#include "test/mbox.h"
12#include "test/system.h"
13}
14
Andrew Jeffery30bcf842018-03-26 12:13:20 +103015#include "vpnor/test/tmpd.hpp"
Andrew Jeffery3376dac2018-02-27 17:03:08 +103016
17static constexpr auto BLOCK_SIZE = 0x1000;
18static constexpr auto ERASE_SIZE = BLOCK_SIZE;
19static constexpr auto PNOR_SIZE = 64 * 1024 * 1024;
20static constexpr auto MEM_SIZE = 32 * 1024 * 1024;
21static constexpr auto N_WINDOWS = 1;
22static constexpr auto WINDOW_SIZE = BLOCK_SIZE * 2;
23
24const std::string toc[] = {
25 "partition01=ONE,00001000,00002000,80,",
26};
27
28int main()
29{
30 namespace err = sdbusplus::xyz::openbmc_project::Common::Error;
31 namespace test = openpower::virtual_pnor::test;
32 namespace vpnor = openpower::virtual_pnor;
33
34 struct mbox_context* ctx;
35
36 system_set_reserved_size(MEM_SIZE);
37 system_set_mtd_sizes(MEM_SIZE, ERASE_SIZE);
38
39 ctx = mbox_create_test_context(N_WINDOWS, WINDOW_SIZE);
40
41 test::VpnorRoot root(ctx, toc, BLOCK_SIZE);
Andrew Jeffery742a1f62018-03-02 09:26:03 +103042 vpnor::partition::Table table(ctx);
Andrew Jeffery3376dac2018-02-27 17:03:08 +103043
44 try
45 {
46 table.partition("TWO");
47 }
Andrew Jefferyae1edb92018-02-28 23:16:48 +103048 catch (vpnor::UnknownPartition& e)
Andrew Jeffery3376dac2018-02-27 17:03:08 +103049 {
50 return 0;
51 }
52
53 assert(false);
54}