* apps/testing/testsuites/kernel/kv/cases/kv_test_019.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you 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.
*
****************************************************************************/
* Included Files
****************************************************************************/
#include <nuttx/config.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <pthread.h>
#include <inttypes.h>
#include <syslog.h>
#include <stdint.h>
#include <stdarg.h>
#include <stddef.h>
#include <setjmp.h>
#include <cmocka.h>
#include <time.h>
#include "KvTest.h"
#include "kvdb.h"
* Private Functions
****************************************************************************/
* Name: store_data
****************************************************************************/
static void *store_data(void *arg)
{
char key[TEST_KEY_LENGTH] =
{
0
};
char data[TEST_VALUE_LENGTH] =
{
0
};
int ret;
for (int k = 0; k < 30; k++)
{
sprintf(key, "test_nuttx_kv19-%d-%d", gettid(), k);
sprintf(data, "test_data_%s_%d_%d", __func__, gettid(), k);
ret = property_set(key, data);
if (ret != 0)
{
syslog(LOG_ERR,
"Failed to insert data. The test thread number:%d "
"Key:%s value:%s\n",
gettid(), key, data);
(*((int *)arg)) = -1;
return NULL;
}
ret = property_delete(key);
if (ret != 0)
{
syslog(LOG_ERR,
"Failed to delete data. The test thread number:%d "
"Key:%s value:%s\n",
gettid(), key, data);
(*((int *)arg)) = -1;
return NULL;
}
}
return NULL;
}
* Public Functions
****************************************************************************/
* Name: test_nuttx_kv19
****************************************************************************/
void test_nuttx_kv19(FAR void **state)
{
pthread_t nthread[10];
pthread_attr_t attr;
int status;
int num_thread = 3;
int test_flag = 0;
status = pthread_attr_init(&attr);
assert_int_equal(status, 0);
status = pthread_attr_setstacksize(&attr, 8192);
assert_int_equal(status, 0);
for (int i = 0; i < num_thread; i++)
{
status = pthread_create(&nthread[i], &attr, store_data, &test_flag);
assert_int_equal(status, 0);
}
for (int j = 0; j < num_thread; j++)
pthread_join(nthread[j], NULL);
assert_int_equal(test_flag, 0);
}