mirror of https://github.com/ARMmbed/mbed-os.git
142 lines
3.7 KiB
C++
142 lines
3.7 KiB
C++
/*
|
|
* mbed Microcontroller Library
|
|
* Copyright (c) 2006-2019 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.
|
|
*/
|
|
|
|
/*
|
|
* Based on mbed-stress-test by Marcus Chang @ Arm Mbed - http://github.com/ARMmbed/mbed-stress-test
|
|
*/
|
|
|
|
#include "mbed.h"
|
|
#include "utest/utest.h"
|
|
#include "unity/unity.h"
|
|
#include "greentea-client/test_env.h"
|
|
#include "common_defines_test.h"
|
|
#include "download_test.h"
|
|
#include <string>
|
|
|
|
#if !INTEGRATION_TESTS
|
|
#error [NOT_SUPPORTED] integration tests not enabled for this target
|
|
#endif
|
|
|
|
#ifdef MBED_CONF_APP_BASICS_TEST_FILENAME
|
|
#include MBED_CONF_APP_BASICS_TEST_FILENAME
|
|
#else
|
|
#include "sample.h"
|
|
#endif
|
|
|
|
#ifndef MBED_CONF_APP_TESTS_FS_SIZE
|
|
#define MBED_CONF_APP_TESTS_FS_SIZE (2*1024*1024)
|
|
#endif
|
|
|
|
using namespace utest::v1;
|
|
|
|
#if !defined(MBED_CONF_APP_NO_LED)
|
|
DigitalOut led1(LED1);
|
|
DigitalOut led2(LED2);
|
|
void led_thread()
|
|
{
|
|
led1 = !led1;
|
|
led2 = !led1;
|
|
}
|
|
#endif
|
|
|
|
#define MAX_RETRIES 3
|
|
NetworkInterface *interface = NULL;
|
|
static control_t setup_network(const size_t call_count)
|
|
{
|
|
interface = NetworkInterface::get_default_instance();
|
|
TEST_ASSERT_NOT_NULL_MESSAGE(interface, "failed to initialize network");
|
|
|
|
nsapi_error_t err = -1;
|
|
for (int tries = 0; tries < MAX_RETRIES; tries++) {
|
|
err = interface->connect();
|
|
if (err == NSAPI_ERROR_OK) {
|
|
break;
|
|
} else {
|
|
tr_error("[ERROR] Connecting to network. Retrying %d of %d.", tries, MAX_RETRIES);
|
|
}
|
|
}
|
|
TEST_ASSERT_EQUAL(NSAPI_ERROR_OK, err);
|
|
tr_info("[NET] IP address is '%s'", interface->get_ip_address());
|
|
tr_info("[NET] MAC address is '%s'", interface->get_mac_address());
|
|
return CaseNext;
|
|
}
|
|
|
|
static control_t download_128(const size_t call_count)
|
|
{
|
|
download_test(interface, story, sizeof(story), 128);
|
|
|
|
return CaseNext;
|
|
}
|
|
static control_t download_256(const size_t call_count)
|
|
{
|
|
download_test(interface, story, sizeof(story), 256);
|
|
|
|
return CaseNext;
|
|
}
|
|
|
|
static control_t download_1k(const size_t call_count)
|
|
{
|
|
download_test(interface, story, sizeof(story), 1024);
|
|
|
|
return CaseNext;
|
|
}
|
|
|
|
static control_t download_2k(const size_t call_count)
|
|
{
|
|
download_test(interface, story, sizeof(story), 2 * 1024);
|
|
|
|
return CaseNext;
|
|
}
|
|
|
|
static control_t download_4k(const size_t call_count)
|
|
{
|
|
download_test(interface, story, sizeof(story), 4 * 1024);
|
|
|
|
return CaseNext;
|
|
}
|
|
|
|
utest::v1::status_t greentea_setup(const size_t number_of_cases)
|
|
{
|
|
GREENTEA_SETUP(8 * 60, "default_auto");
|
|
return greentea_test_setup_handler(number_of_cases);
|
|
}
|
|
|
|
Case cases[] = {
|
|
Case(TEST_NETWORK_TYPE " network setup", setup_network),
|
|
Case(TEST_NETWORK_TYPE " 128 buffer", download_128),
|
|
#if MBED_CONF_TARGET_NETWORK_DEFAULT_INTERFACE_TYPE != CELLULAR
|
|
Case(TEST_NETWORK_TYPE " 256 buffer", download_256),
|
|
Case(TEST_NETWORK_TYPE " 1024 buffer", download_1k),
|
|
Case(TEST_NETWORK_TYPE " 4096 buffer", download_4k),
|
|
#endif
|
|
};
|
|
|
|
Specification specification(greentea_setup, cases);
|
|
|
|
int main()
|
|
{
|
|
//Create a thread to blink an LED and signal that the device is alive
|
|
#if !defined(MBED_CONF_APP_NO_LED)
|
|
Ticker t;
|
|
t.attach(led_thread, 0.5);
|
|
#endif
|
|
|
|
return !Harness::run(specification);
|
|
}
|