Morse Micro IoT SDK  2.10.4
test_os.c
1/*
2 * Copyright 2023 Morse Micro
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#include "porting_assistant.h"
8
9TEST_STEP(test_step_os_malloc, "Memory allocation")
10{
11 void *buf = mmosal_malloc(1560);
12 if (buf == NULL)
13 {
14 TEST_LOG_APPEND(
15 "Failed to allocate 1560 bytes. Check that your heap is configured correctly\n\n");
16 return TEST_FAILED;
17 }
19 return TEST_PASSED;
20}
21
22TEST_STEP(test_step_os_realloc, "Memory reallocation")
23{
24 enum constants
25 {
26 FIRST_ALLOCATION_SIZE = 100,
27 REALLOCATION_SIZE = 200,
28 };
29
30 uint8_t *buf = (uint8_t *)mmosal_malloc(FIRST_ALLOCATION_SIZE);
31 if (buf == NULL)
32 {
33 TEST_LOG_APPEND(
34 "Failed to allocate %d bytes. Check that your heap is configured correctly\n\n",
35 FIRST_ALLOCATION_SIZE);
36 return TEST_FAILED_NON_CRITICAL;
37 }
38 memset(buf, 0xc0, FIRST_ALLOCATION_SIZE);
39
40 uint8_t *buf1 = (uint8_t *)mmosal_realloc(buf, REALLOCATION_SIZE);
41 if (buf1 == NULL)
42 {
43 TEST_LOG_APPEND("Failed to reallocate %d bytes. Check that your heap supports realloc\n\n",
44 REALLOCATION_SIZE);
45 return TEST_FAILED_NON_CRITICAL;
46 }
47
48 /* Verify the reallocated memory contains the contents of the original block. */
49 unsigned ii;
50 for (ii = 0; ii < FIRST_ALLOCATION_SIZE; ii++)
51 {
52 if (buf1[ii] != 0xc0)
53 {
54 TEST_LOG_APPEND("Reallocated block contents mismatch at offset %u\n\n", ii);
55 return TEST_FAILED_NON_CRITICAL;
56 }
57 }
58
59 mmosal_free(buf1);
60 return TEST_PASSED;
61}
62
63TEST_STEP(test_step_os_time, "Passage of time")
64{
65 uint32_t start_time = mmosal_get_time_ms();
67 uint32_t end_time = mmosal_get_time_ms();
68
69 int32_t delta = (int32_t)(end_time - start_time);
70 if (delta < 49 || delta > 51)
71 {
72 TEST_LOG_APPEND("Time delta (%ld ms) did not match sleep time (50 ms)\n\n", delta);
73 return TEST_FAILED;
74 }
75
76 return TEST_PASSED;
77}
78
81enum task_state
82{
83 TASK_NOT_STARTED,
84 TASK_STARTED,
85 TASK_TERMINATING,
86 TASK_ERROR_GET_ACTIVE_INVALID,
87};
88
90static volatile enum task_state task_state = TASK_NOT_STARTED;
92static struct mmosal_task *volatile task_handle;
93
95static void new_task_main(void *arg)
96{
97 (void)arg;
98
99 task_state = TASK_STARTED;
100
101 /* Sleep for 10 ms; this should yield the task. */
103
104 /* Verify mmosal_task_get_active() returns the correct task handle. */
105 if (mmosal_task_get_active() != task_handle)
106 {
107 task_state = TASK_ERROR_GET_ACTIVE_INVALID;
108 return;
109 }
110
111 task_state = TASK_TERMINATING;
112
113 /* Delete self */
114 mmosal_task_delete(NULL);
115}
116
117TEST_STEP(test_step_os_task_creation, "Task creation and preemption")
118{
119 task_handle = mmosal_task_create(new_task_main, NULL, MMOSAL_TASK_PRI_HIGH, 512, "Test Task");
120 if (task_handle == NULL)
121 {
122 TEST_LOG_APPEND("mmosal_task_create() returned NULL; expected a task handle.\n\n");
123 return TEST_FAILED_NON_CRITICAL;
124 }
125
126 /*
127 * The newly created task should be higher priority. Therefore the following code should
128 * not run until after the task yields.
129 */
130 if (task_state != TASK_STARTED)
131 {
132 TEST_LOG_APPEND("The task created with mmosal_task_create() did not run.\n\n");
133 return TEST_FAILED_NON_CRITICAL;
134 }
135
136 /* Allow some time for the task to wake up. */
138
139 switch (task_state)
140 {
141 case TASK_TERMINATING:
142 break;
143
144 case TASK_ERROR_GET_ACTIVE_INVALID:
145 TEST_LOG_APPEND("mmosal_task_get_active() did not return the correct task handle.\n\n");
146 return TEST_FAILED_NON_CRITICAL;
147
148 default:
149 TEST_LOG_APPEND("Task in unexpected state %d.\n\n", task_state);
150 return TEST_FAILED_NON_CRITICAL;
151 }
152
153 return TEST_PASSED;
154}
#define mmosal_malloc(size)
Allocate memory of the given size and return a pointer to it (malloc).
Definition: mmosal.h:138
void mmosal_free(void *p)
Free the given memory allocation.
void * mmosal_realloc(void *ptr, size_t size)
Equivalent of standard library realloc().
struct mmosal_task * mmosal_task_create(mmosal_task_fn_t task_fn, void *argument, enum mmosal_task_priority priority, unsigned stack_size_u32, const char *name)
Create a new task.
struct mmosal_task * mmosal_task_get_active(void)
Get the handle of the active task.
void mmosal_task_sleep(uint32_t duration_ms)
Sleep for a period of time, yielding during that time.
void mmosal_task_delete(struct mmosal_task *task)
Delete the given task.
@ MMOSAL_TASK_PRI_HIGH
High priority.
Definition: mmosal.h:188
uint32_t mmosal_get_time_ms(void)
Get the system time in milliseconds.
const struct test_step test_step_os_malloc
Test definition.
const struct test_step test_step_os_realloc
Test definition.
const struct test_step test_step_os_time
Test definition.
const struct test_step test_step_os_task_creation
Test definition.
char buf[1408]
Statically allocated buffer for HTTP GET request, just under 1 packet size.
Definition: sslclient.c:176