mirror of https://github.com/ARMmbed/mbed-os.git
97 lines
2.8 KiB
C++
97 lines
2.8 KiB
C++
/* Copyright (c) 2017-2018 ARM Limited
|
|
*
|
|
* 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 COMPONENT_PSA_SRV_IPC
|
|
#error [NOT_SUPPORTED] SPM tests can run only on SPM-enabled targets
|
|
#else
|
|
|
|
/* -------------------------------------- Includes ----------------------------------- */
|
|
|
|
#include "greentea-client/test_env.h"
|
|
#include "unity.h"
|
|
#include "utest.h"
|
|
#include "psa/client.h"
|
|
#include "psa_manifest/sid.h"
|
|
#include <string.h>
|
|
|
|
#if defined(TARGET_TFM)
|
|
#define PSA_MAX_IOVEC 4
|
|
#endif
|
|
|
|
using namespace utest::v1;
|
|
|
|
/* ------------------------------------ Definitions ---------------------------------- */
|
|
|
|
#define CLIENT_MINOR_VERSION 0
|
|
#define CLIENT_RSP_BUF_SIZE 20
|
|
|
|
#define CLIENT_TX_MSG "Hello and welcome SPM"
|
|
#define CLIENT_EXPECTED_RESPONSE "Response1"
|
|
|
|
/* ------------------------------------ Client Code ---------------------------------- */
|
|
|
|
char msg_buf[] = CLIENT_TX_MSG;
|
|
|
|
void example_main(void)
|
|
{
|
|
psa_handle_t conn_handle = psa_connect(SMOKE_TESTS_PART1_ROT_SRV1, CLIENT_MINOR_VERSION);
|
|
TEST_ASSERT_MESSAGE(conn_handle > 0, "psa_connect() failed");
|
|
|
|
|
|
psa_invec iovec[PSA_MAX_IOVEC - 1] = {
|
|
{ msg_buf, 6 },
|
|
{ msg_buf + 6, 12 },
|
|
{ msg_buf + 18, 4 }
|
|
};
|
|
|
|
uint8_t *response_buf = (uint8_t *)malloc(sizeof(uint8_t) * CLIENT_RSP_BUF_SIZE);
|
|
memset(response_buf, 0, CLIENT_RSP_BUF_SIZE);
|
|
psa_outvec outvec = {response_buf, CLIENT_RSP_BUF_SIZE};
|
|
|
|
psa_status_t status = psa_call(conn_handle, iovec, PSA_MAX_IOVEC - 1, &outvec, 1);
|
|
TEST_ASSERT_MESSAGE(PSA_SUCCESS == status, "psa_call() failed");
|
|
TEST_ASSERT_EQUAL_STRING(CLIENT_EXPECTED_RESPONSE, response_buf);
|
|
|
|
free(response_buf);
|
|
psa_close(conn_handle);
|
|
}
|
|
|
|
// --------------------------------- Test Framework ---------------------------------- */
|
|
|
|
utest::v1::status_t greentea_setup(const size_t number_of_cases)
|
|
{
|
|
GREENTEA_SETUP(20, "default_auto");
|
|
return greentea_test_setup_handler(number_of_cases);
|
|
}
|
|
|
|
Case cases[] = {
|
|
Case("example", example_main)
|
|
};
|
|
|
|
// Declare your test specification with a custom setup handler
|
|
Specification specification(greentea_setup, cases);
|
|
|
|
int main(int, char **)
|
|
{
|
|
// Run the test specification
|
|
Harness::run(specification);
|
|
return 0;
|
|
}
|
|
|
|
#endif // COMPONENT_PSA_SRV_IPC
|