aboutsummaryrefslogtreecommitdiff
path: root/tools/tf_fuzz/regression/add_these_tests/000015_set_sst_multi_name_remove_rand_active/exp_test.c
blob: 2d6e9e8c501e7830e0ddec6516b9b7e3ff154f27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/*
 * Copyright (c) 2019-2020, Arm Limited. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 *
 */

/*
 * Test purpose:
 *     to show a more-interesting removal case
 *
 */

#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <string.h>
#include <stdint.h>

#include "../sst/non_secure/ns_test_helpers.h"
#include "psa/protected_storage.h"
#include "test/framework/test_framework_helpers.h"
#include "crypto_tests_common.h"
#include "tfm_memory_utils.h"
/* For now, just a single test_result_t struct is sufficient.*/
static struct test_result_t ret;

/* This is not yet right for how to run a test;  need to register tests, etc. */

void test_thread (struct test_result_t *ret) {
    psa_status_t crypto_status;  // result from Crypto calls
    psa_ps_status_t sst_status;

    crypto_status = psa_crypto_init();
    if (crypto_status != PSA_SUCCESS) {
        TEST_FAIL("Could not initialize Crypto.");
        return;
    }

    TEST_LOG("Test to show a more-interesting removal case");


    /* Variables (etc.) to initialize and check PSA assets: */
    static uint8_t president_data[] = "read my lips";
    int president_data_size = 12;
    static uint8_t george_data[] = "read my lips";
    int george_data_size = 12;
    static uint8_t herbert_data[] = "read my lips";
    int herbert_data_size = 12;
    static uint8_t walker_data[] = "read my lips";
    int walker_data_size = 12;
    static uint8_t bush_data[] = "read my lips";
    int bush_data_size = 12;


    /* PSA calls to test: */

    /* Creating SST asset "president," with data "read my li...". */
    sst_status = psa_ps_set(@@@001@@@, president_data_size, president_data, PSA_PS_FLAG_WRITE_ONCE);
    if (sst_status != PSA_PS_SUCCESS) {
        TEST_FAIL("psa_ps_set() expected PSA_PS_SUCCESS, got #%d, (int) sst_status);
        return;
    }

    /* Creating SST asset "george," with data "read my li...". */
    sst_status = psa_ps_set(5517, george_data_size, george_data, PSA_PS_FLAG_WRITE_ONCE);
    if (sst_status != PSA_PS_SUCCESS) {
        TEST_FAIL("psa_ps_set() expected PSA_PS_SUCCESS, got #%d, (int) sst_status);
        return;
    }

    /* Creating SST asset "herbert," with data "read my li...". */
    sst_status = psa_ps_set(4661, herbert_data_size, herbert_data, PSA_PS_FLAG_WRITE_ONCE);
    if (sst_status != PSA_PS_SUCCESS) {
        TEST_FAIL("psa_ps_set() expected PSA_PS_SUCCESS, got #%d, (int) sst_status);
        return;
    }

    /* Creating SST asset "walker," with data "read my li...". */
    sst_status = psa_ps_set(3441, walker_data_size, walker_data, PSA_PS_FLAG_WRITE_ONCE);
    if (sst_status != PSA_PS_SUCCESS) {
        TEST_FAIL("psa_ps_set() expected PSA_PS_SUCCESS, got #%d, (int) sst_status);
        return;
    }

    /* Creating SST asset "bush," with data "read my li...". */
    sst_status = psa_ps_set(5446, bush_data_size, bush_data, PSA_PS_FLAG_WRITE_ONCE);
    if (sst_status != PSA_PS_SUCCESS) {
        TEST_FAIL("psa_ps_set() expected PSA_PS_SUCCESS, got #%d, (int) sst_status);
        return;
    }

    sst_status = psa_ps_remove(5517);
    if (sst_status != PSA_PS_SUCCESS) {
        TEST_FAIL("psa_ps_remove() expected PSA_PS_SUCCESS, got #%d", (int) sst_status);
    }


    /* Removing assets left over from testing: */
    psa_ps_remove(@@@001@@@);
    if (sst_status != PSA_PS_SUCCESS) {
        TEST_FAIL("Failed to tear down an SST asset upon test completion!");
        return;
    }
    psa_ps_remove(4661);
    if (sst_status != PSA_PS_SUCCESS) {
        TEST_FAIL("Failed to tear down an SST asset upon test completion!");
        return;
    }
    psa_ps_remove(3441);
    if (sst_status != PSA_PS_SUCCESS) {
        TEST_FAIL("Failed to tear down an SST asset upon test completion!");
        return;
    }
    psa_ps_remove(5446);
    if (sst_status != PSA_PS_SUCCESS) {
        TEST_FAIL("Failed to tear down an SST asset upon test completion!");
        return;
    }

    /* Test completed */
    ret->val = TEST_PASSED;
}