blob: 80ee9e2af6ff6f1a9cee1cb12cfeb60564bb12f1 [file] [log] [blame]
Andrew Jeffery9d4b8882017-04-13 15:39:45 +09301/*
2 * MBox Daemon Test File
3 *
4 * Copyright 2017 IBM
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 *
18 */
19
20#include <assert.h>
21
22#include "mbox.h"
23#include "mboxd_msg.h"
24
25#include "test/mbox.h"
26#include "test/system.h"
27
28static const uint8_t get_mbox_info[] = {
29 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00,
30 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
31};
32
33static const uint8_t invalid[] = {
34 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
35 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
36};
37
38static const uint8_t response[] = {
39 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
40 0x00, 0x00, 0x00, 0x00, 0x00, 0x02,
41};
42
43#define MEM_SIZE 3
44#define ERASE_SIZE 1
45#define N_WINDOWS 1
46#define WINDOW_SIZE 1
47
48int invalid_uninitialised(struct mbox_context *ctx)
49{
50 int rc;
51
52 rc = mbox_command_dispatch(ctx, invalid, sizeof(invalid));
53 assert(rc == 2);
54
55 rc = mbox_cmp(ctx, response, sizeof(response));
56 assert(rc == 0);
57
58 return rc;
59}
60
61int invalid_initialised(struct mbox_context *ctx)
62{
63 int rc;
64
65 rc = mbox_command_dispatch(ctx, get_mbox_info, sizeof(get_mbox_info));
66 assert(rc == 1);
67
68 rc = mbox_command_dispatch(ctx, invalid, sizeof(invalid));
69 assert(rc == 2);
70
71 rc = mbox_cmp(ctx, response, sizeof(response));
72 assert(rc == 0);
73
74 return rc;
75}
76
77int main(void)
78{
79 struct mbox_context *ctx;
80
81 system_set_reserved_size(MEM_SIZE);
82 system_set_mtd_sizes(MEM_SIZE, ERASE_SIZE);
83
84 ctx = mbox_create_test_context(N_WINDOWS, WINDOW_SIZE);
85
86 invalid_uninitialised(ctx);
87
88 invalid_initialised(ctx);
89
90 return 0;
91}