Newer
Older
mbed-os / features / FEATURE_EXPERIMENTAL_API / FEATURE_PSA / TARGET_MBED_PSA_SRV / TESTS / compliance_its / test_s008 / test_ps_data.h
@Devaraj Ranganna Devaraj Ranganna on 18 Jun 2020 1 KB psa: Replace Mbed PSA with TF-M
/** @file
 * Copyright (c) 2019, Arm Limited or ps affiliates. All rights reserved.
 * SPDX-License-Identifier : Apache-2.0
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *  http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
**/
#ifndef _TEST_S008_PS_DATA_TESTS_H_
#define _TEST_S008_PS_DATA_TESTS_H_

#include "val_protected_storage.h"

#define SST_FUNCTION val->ps_function
#define psa_sst_uid_t psa_ps_uid_t

typedef struct {
    enum ps_function_code  api;
    psa_ps_status_t        status;
} test_data;

static const test_data s008_data[] = {
{
 0, 0 /* This is dummy for index0 */
},
{
 VAL_PS_SET, PSA_PS_SUCCESS /* Create a valid storage entity with zero flag value */
},
{
 VAL_PS_GET, PSA_PS_SUCCESS /* Call get API with offset + data_len = total_size */
},
{
 0, 0 /* This is dummy for index3 */
},
{
 VAL_PS_GET, PSA_PS_SUCCESS /* Call get API with offset + data_len < total_size */
},
{
 0, 0 /* This is dummy for index5 */
},
{
 VAL_PS_GET, PSA_PS_SUCCESS/* Call get API with offset = total data_size + 1 */
},
{
 0, 0 /* This is dummy for index7 */
},
{
 VAL_PS_GET, PSA_PS_ERROR_INCORRECT_SIZE /* Call get API with offset + data_len > total data_size */
},
{
 0, 0 /* This is dummy for index9 */
},
{
 VAL_PS_GET, PSA_PS_ERROR_INCORRECT_SIZE /* Call get API with invalid data len and offset zero */
},
{
 0, 0 /* This is dummy for index11 */
},
{
 VAL_PS_GET, PSA_PS_SUCCESS /* Call get API with offset = MAX_UINT32 */
},
{
 VAL_PS_REMOVE, PSA_PS_SUCCESS /* Remove the storage entity */
},
};
#endif /* _TEST_S008_PS_DATA_TESTS_H_ */