738c56e84a
Closes idf/esp-idf#44
269 lines
9.1 KiB
C
269 lines
9.1 KiB
C
// Copyright 2015-2017 Espressif Systems (Shanghai) PTE LTD
|
|
//
|
|
// 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.
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
#include <errno.h>
|
|
#include <sys/fcntl.h>
|
|
#include "freertos/FreeRTOS.h"
|
|
#include "freertos/task.h"
|
|
#include "freertos/semphr.h"
|
|
#include "esp_vfs.h"
|
|
#include "unity.h"
|
|
#include "esp_log.h"
|
|
#include "test_utils.h"
|
|
|
|
#define VFS_PREF1 "/vfs1"
|
|
#define VFS_PREF2 "/vfs2"
|
|
#define FILE1 "/file1"
|
|
|
|
typedef struct {
|
|
const char *path;
|
|
int fd;
|
|
} collision_test_vfs_param_t;
|
|
|
|
static int collision_test_vfs_open(void* ctx, const char * path, int flags, int mode)
|
|
{
|
|
const collision_test_vfs_param_t *param = (collision_test_vfs_param_t *) ctx;
|
|
if (strcmp(param->path, path) == 0) {
|
|
return param->fd;
|
|
}
|
|
errno = ENOENT;
|
|
return -1;
|
|
}
|
|
|
|
static int collision_test_vfs_close(void* ctx, int fd)
|
|
{
|
|
const collision_test_vfs_param_t *param = (collision_test_vfs_param_t *) ctx;
|
|
if (fd == param->fd) {
|
|
return 0;
|
|
}
|
|
errno = EBADF;
|
|
return -1;
|
|
}
|
|
|
|
TEST_CASE("FDs from different VFSs don't collide", "[vfs]")
|
|
{
|
|
collision_test_vfs_param_t param = {
|
|
.path = FILE1,
|
|
.fd = 1,
|
|
};
|
|
|
|
esp_vfs_t desc = {
|
|
.flags = ESP_VFS_FLAG_CONTEXT_PTR,
|
|
.open_p = collision_test_vfs_open,
|
|
.close_p = collision_test_vfs_close,
|
|
};
|
|
TEST_ESP_OK( esp_vfs_register(VFS_PREF1, &desc, ¶m) );
|
|
TEST_ESP_OK( esp_vfs_register(VFS_PREF2, &desc, ¶m) );
|
|
|
|
const int fd1 = open(VFS_PREF1 FILE1, 0, 0);
|
|
const int fd2 = open(VFS_PREF2 FILE1, 0, 0);
|
|
|
|
TEST_ASSERT_NOT_EQUAL(fd1, -1);
|
|
TEST_ASSERT_NOT_EQUAL(fd2, -1);
|
|
// Both VFS drivers return local FD 1 but the global FDs returned by
|
|
// open() should not be the same
|
|
TEST_ASSERT_NOT_EQUAL(fd1, fd2);
|
|
|
|
TEST_ASSERT_NOT_EQUAL(close(fd1), -1);
|
|
TEST_ASSERT_NOT_EQUAL(close(fd2), -1);
|
|
|
|
TEST_ESP_OK( esp_vfs_unregister(VFS_PREF1) );
|
|
TEST_ESP_OK( esp_vfs_unregister(VFS_PREF2) );
|
|
}
|
|
|
|
#define FILE2 "/file2"
|
|
#define FILE3 "/file3"
|
|
#define FILE4 "/file4"
|
|
#define CONCURRENT_TEST_STACK_SIZE (2*1024)
|
|
#define CONCURRENT_TEST_MAX_WAIT (1000 / portTICK_PERIOD_MS)
|
|
|
|
typedef struct {
|
|
const char *path;
|
|
SemaphoreHandle_t done;
|
|
} concurrent_test_task_param_t;
|
|
|
|
typedef struct {
|
|
const char *path;
|
|
int local_fd;
|
|
} concurrent_test_path_to_fd_t;
|
|
|
|
static concurrent_test_path_to_fd_t concurrent_test_path_to_fd[] = {
|
|
{ .path = FILE1, .local_fd = 1 },
|
|
{ .path = FILE2, .local_fd = 2 },
|
|
{ .path = FILE3, .local_fd = 3 },
|
|
{ .path = FILE4, .local_fd = 4 },
|
|
};
|
|
|
|
static int concurrent_test_vfs_open(const char * path, int flags, int mode)
|
|
{
|
|
for (int i = 0; i < sizeof(concurrent_test_path_to_fd)/sizeof(concurrent_test_path_to_fd[0]); ++i) {
|
|
if (strcmp(concurrent_test_path_to_fd[i].path, path) == 0) {
|
|
// This behaves like UART: opening the same file gives always the
|
|
// same local FD (even when opening at the same time multiple FDs)
|
|
return concurrent_test_path_to_fd[i].local_fd;
|
|
}
|
|
}
|
|
|
|
errno = ENOENT;
|
|
return -1;
|
|
}
|
|
|
|
static int concurrent_test_vfs_close(int fd)
|
|
{
|
|
for (int i = 0; i < sizeof(concurrent_test_path_to_fd)/sizeof(concurrent_test_path_to_fd[0]); ++i) {
|
|
if (concurrent_test_path_to_fd[i].local_fd == fd) {
|
|
return 0;
|
|
}
|
|
}
|
|
errno = EBADF;
|
|
return -1;
|
|
}
|
|
|
|
static inline void test_delay_rand_ms(int ms)
|
|
{
|
|
vTaskDelay((rand() % ms) / portTICK_PERIOD_MS);
|
|
}
|
|
|
|
static void concurrent_task(void *param)
|
|
{
|
|
concurrent_test_task_param_t *task_param = (concurrent_test_task_param_t *) param;
|
|
|
|
test_delay_rand_ms(10);
|
|
for (int i = 0; i < 10; ++i) {
|
|
const int global_fd = open(task_param->path, 0, 0);
|
|
TEST_ASSERT_NOT_EQUAL(global_fd, -1);
|
|
test_delay_rand_ms(10);
|
|
TEST_ASSERT_NOT_EQUAL(close(global_fd), -1);
|
|
test_delay_rand_ms(10);
|
|
}
|
|
xSemaphoreGive(task_param->done);
|
|
vTaskDelete(NULL);
|
|
}
|
|
|
|
TEST_CASE("VFS can handle concurrent open/close requests", "[vfs]")
|
|
{
|
|
esp_vfs_t desc = {
|
|
.flags = ESP_VFS_FLAG_DEFAULT,
|
|
.open = concurrent_test_vfs_open,
|
|
.close = concurrent_test_vfs_close,
|
|
};
|
|
|
|
TEST_ESP_OK( esp_vfs_register(VFS_PREF1, &desc, NULL) );
|
|
|
|
concurrent_test_task_param_t param1 = { .path = VFS_PREF1 FILE1, .done = xSemaphoreCreateBinary() };
|
|
concurrent_test_task_param_t param2 = { .path = VFS_PREF1 FILE1, .done = xSemaphoreCreateBinary() };
|
|
concurrent_test_task_param_t param3 = { .path = VFS_PREF1 FILE2, .done = xSemaphoreCreateBinary() };
|
|
concurrent_test_task_param_t param4 = { .path = VFS_PREF1 FILE2, .done = xSemaphoreCreateBinary() };
|
|
concurrent_test_task_param_t param5 = { .path = VFS_PREF1 FILE3, .done = xSemaphoreCreateBinary() };
|
|
concurrent_test_task_param_t param6 = { .path = VFS_PREF1 FILE3, .done = xSemaphoreCreateBinary() };
|
|
concurrent_test_task_param_t param7 = { .path = VFS_PREF1 FILE4, .done = xSemaphoreCreateBinary() };
|
|
concurrent_test_task_param_t param8 = { .path = VFS_PREF1 FILE4, .done = xSemaphoreCreateBinary() };
|
|
|
|
TEST_ASSERT_NOT_NULL(param1.done);
|
|
TEST_ASSERT_NOT_NULL(param2.done);
|
|
TEST_ASSERT_NOT_NULL(param3.done);
|
|
TEST_ASSERT_NOT_NULL(param4.done);
|
|
TEST_ASSERT_NOT_NULL(param5.done);
|
|
TEST_ASSERT_NOT_NULL(param6.done);
|
|
TEST_ASSERT_NOT_NULL(param7.done);
|
|
TEST_ASSERT_NOT_NULL(param8.done);
|
|
|
|
const int cpuid0 = 0;
|
|
const int cpuid1 = portNUM_PROCESSORS - 1;
|
|
|
|
srand(time(NULL));
|
|
|
|
xTaskCreatePinnedToCore(concurrent_task, "t1", CONCURRENT_TEST_STACK_SIZE, ¶m1, 3, NULL, cpuid0);
|
|
xTaskCreatePinnedToCore(concurrent_task, "t2", CONCURRENT_TEST_STACK_SIZE, ¶m2, 3, NULL, cpuid1);
|
|
xTaskCreatePinnedToCore(concurrent_task, "t3", CONCURRENT_TEST_STACK_SIZE, ¶m3, 3, NULL, cpuid0);
|
|
xTaskCreatePinnedToCore(concurrent_task, "t4", CONCURRENT_TEST_STACK_SIZE, ¶m4, 3, NULL, cpuid1);
|
|
xTaskCreatePinnedToCore(concurrent_task, "t5", CONCURRENT_TEST_STACK_SIZE, ¶m5, 3, NULL, cpuid0);
|
|
xTaskCreatePinnedToCore(concurrent_task, "t6", CONCURRENT_TEST_STACK_SIZE, ¶m6, 3, NULL, cpuid1);
|
|
xTaskCreatePinnedToCore(concurrent_task, "t7", CONCURRENT_TEST_STACK_SIZE, ¶m7, 3, NULL, cpuid0);
|
|
xTaskCreatePinnedToCore(concurrent_task, "t8", CONCURRENT_TEST_STACK_SIZE, ¶m8, 3, NULL, cpuid1);
|
|
|
|
TEST_ASSERT_EQUAL(xSemaphoreTake(param1.done, CONCURRENT_TEST_MAX_WAIT), pdTRUE);
|
|
TEST_ASSERT_EQUAL(xSemaphoreTake(param2.done, CONCURRENT_TEST_MAX_WAIT), pdTRUE);
|
|
TEST_ASSERT_EQUAL(xSemaphoreTake(param3.done, CONCURRENT_TEST_MAX_WAIT), pdTRUE);
|
|
TEST_ASSERT_EQUAL(xSemaphoreTake(param4.done, CONCURRENT_TEST_MAX_WAIT), pdTRUE);
|
|
TEST_ASSERT_EQUAL(xSemaphoreTake(param5.done, CONCURRENT_TEST_MAX_WAIT), pdTRUE);
|
|
TEST_ASSERT_EQUAL(xSemaphoreTake(param6.done, CONCURRENT_TEST_MAX_WAIT), pdTRUE);
|
|
TEST_ASSERT_EQUAL(xSemaphoreTake(param7.done, CONCURRENT_TEST_MAX_WAIT), pdTRUE);
|
|
TEST_ASSERT_EQUAL(xSemaphoreTake(param8.done, CONCURRENT_TEST_MAX_WAIT), pdTRUE);
|
|
|
|
vSemaphoreDelete(param1.done);
|
|
vSemaphoreDelete(param2.done);
|
|
vSemaphoreDelete(param3.done);
|
|
vSemaphoreDelete(param4.done);
|
|
vSemaphoreDelete(param5.done);
|
|
vSemaphoreDelete(param6.done);
|
|
vSemaphoreDelete(param7.done);
|
|
vSemaphoreDelete(param8.done);
|
|
|
|
TEST_ESP_OK( esp_vfs_unregister(VFS_PREF1) );
|
|
}
|
|
|
|
static int time_test_vfs_open(const char *path, int flags, int mode)
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
static int time_test_vfs_close(int fd)
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
static int time_test_vfs_write(int fd, const void *data, size_t size)
|
|
{
|
|
return size;
|
|
}
|
|
|
|
TEST_CASE("Open & write & close through VFS passes performance test", "[vfs]")
|
|
{
|
|
esp_vfs_t desc = {
|
|
.flags = ESP_VFS_FLAG_DEFAULT,
|
|
.open = time_test_vfs_open,
|
|
.close = time_test_vfs_close,
|
|
.write = time_test_vfs_write,
|
|
};
|
|
|
|
TEST_ESP_OK( esp_vfs_register(VFS_PREF1, &desc, NULL) );
|
|
|
|
const int64_t begin = esp_timer_get_time();
|
|
const int iter_count = 5000;
|
|
|
|
for (int i = 0; i < iter_count; ++i) {
|
|
const int fd = open(VFS_PREF1 FILE1, 0, 0);
|
|
TEST_ASSERT_NOT_EQUAL(fd, -1);
|
|
|
|
write(fd, "a", 1);
|
|
|
|
TEST_ASSERT_NOT_EQUAL(close(fd), -1);
|
|
}
|
|
|
|
// esp_vfs_open, esp_vfs_write and esp_vfs_close need to be in IRAM for performance test to pass
|
|
|
|
const int64_t time_diff_us = esp_timer_get_time() - begin;
|
|
const int ns_per_iter = (int) (time_diff_us * 1000 / iter_count);
|
|
TEST_ESP_OK( esp_vfs_unregister(VFS_PREF1) );
|
|
#ifdef CONFIG_SPIRAM_SUPPORT
|
|
TEST_PERFORMANCE_LESS_THAN(VFS_OPEN_WRITE_CLOSE_TIME_PSRAM, "%dns", ns_per_iter);
|
|
#else
|
|
TEST_PERFORMANCE_LESS_THAN(VFS_OPEN_WRITE_CLOSE_TIME, "%dns", ns_per_iter);
|
|
#endif
|
|
|
|
}
|