Skip to content

Commit 2a98bde

Browse files
Add tests for csp_crc32_verify
This commit adds test for csp_crc32_verify . Signed-off-by: Gaetan Perrot <[email protected]>
1 parent c6da7df commit 2a98bde

File tree

2 files changed

+90
-0
lines changed

2 files changed

+90
-0
lines changed

CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ project(speq)
88
target_sources(app PRIVATE
99
src/main.c
1010
src/buffer.c
11+
src/crc32.c
1112
)

src/crc32.c

+89
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
/*
2+
* Copyright (c) 2024 Space Cubics, LLC.
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
#include <zephyr/ztest.h>
7+
#include <csp/csp.h>
8+
#include <csp/csp_crc32.h>
9+
#include <csp/csp_id.h>
10+
#include <endian.h>
11+
12+
struct crc_fixture {
13+
csp_packet_t *buf;
14+
};
15+
16+
static struct crc_fixture crc_fixture;
17+
18+
static void *setup(void)
19+
{
20+
csp_init();
21+
22+
return &crc_fixture;
23+
}
24+
25+
static void before(void *data)
26+
{
27+
struct crc_fixture *fixture = data;
28+
29+
fixture->buf = csp_buffer_get(0);
30+
zassert_true(fixture->buf != NULL, NULL);
31+
}
32+
33+
static void after(void *data)
34+
{
35+
struct crc_fixture *fixture = data;
36+
37+
csp_buffer_free(fixture->buf);
38+
}
39+
40+
ZTEST_F(crc, test_crc_verify_without_crc)
41+
{
42+
csp_packet_t *packet = fixture->buf;
43+
packet->length = sizeof(uint32_t)-1;
44+
int ret;
45+
46+
/* check error if length < sizeof(crc) */
47+
ret = csp_crc32_verify(packet);
48+
zassert_equal(ret, CSP_ERR_CRC32, "Error on csp_crc32_verify");
49+
}
50+
51+
ZTEST_F(crc, test_crc_without_header)
52+
{
53+
csp_packet_t *packet = fixture->buf;
54+
int ret;
55+
56+
memcpy(packet->data, "Hello", 5);
57+
packet->length = 5;
58+
59+
/* Check without header */
60+
csp_crc32_append(packet);
61+
ret = csp_crc32_verify(packet);
62+
zassert_equal(CSP_ERR_NONE, ret, "Error on csp_crc32_verify");
63+
}
64+
65+
ZTEST_F(crc, test_crc_with_header)
66+
{
67+
csp_packet_t *packet = fixture->buf;
68+
uint32_t crc;
69+
int ret;
70+
71+
memcpy(packet->data, "Hello", 5);
72+
packet->length = 5;
73+
74+
/* Check with header.
75+
* This simulate CSP_21 define on csp_crc32_append().
76+
*/
77+
csp_id_prepend(packet);
78+
crc = csp_crc32_memory(packet->frame_begin, packet->frame_length);
79+
/* Convert to network byte order */
80+
crc = htobe32(crc);
81+
/* Copy checksum to packet */
82+
memcpy(&packet->data[packet->length], &crc, sizeof(crc));
83+
packet->length += sizeof(crc);
84+
85+
ret = csp_crc32_verify(packet);
86+
zassert_equal(CSP_ERR_NONE, ret, "Error on csp_crc32_verify");
87+
}
88+
89+
ZTEST_SUITE(crc, NULL, setup, before, after, NULL);

0 commit comments

Comments
 (0)