Skip to content

Commit 6b4d778

Browse files
Duy Vothenguyenyf
Duy Vo
authored andcommitted
tests: subsys: crc: add ztests for CRC subsystem
Add ztests for CRC subsystem Signed-off-by: Duy Vo <duy.vo.xc@bp.renesas.com>
1 parent 922705d commit 6b4d778

File tree

4 files changed

+241
-0
lines changed

4 files changed

+241
-0
lines changed

tests/subsys/crc/CMakeLists.txt

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
cmake_minimum_required(VERSION 3.20.0)
2+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
3+
4+
project(subsys_crc_test)
5+
6+
target_sources(app PRIVATE src/main.c)

tests/subsys/crc/prj.conf

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
CONFIG_ZTEST=y
2+
CONFIG_CRC_NEW=y
3+
CONFIG_LOG=y

tests/subsys/crc/src/main.c

+225
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,225 @@
1+
/*
2+
* Copyright (c) 2025 Renesas Electronics Corporation
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
#include "zephyr/drivers/crc.h"
8+
#include <zephyr/ztest.h>
9+
#include <zephyr/logging/log.h>
10+
#include <zephyr/crc_new/crc_new.h>
11+
12+
/* Define result of CRC computation */
13+
#define RESULT_CRC8 0xB2
14+
15+
/**
16+
* @brief Test crc8 works
17+
*/
18+
ZTEST(crc_subsys, test_crc_8)
19+
{
20+
uint8_t data[8] = {0x0A, 0x2B, 0x4C, 0x6D, 0x8E, 0x49, 0x00, 0xC4};
21+
uint8_t result = 0;
22+
23+
zassert_equal(crc8_new(data, sizeof(data), CRC8_REFLECT_POLY, 0x00, true, &result), 0);
24+
zassert_equal(result, RESULT_CRC8);
25+
}
26+
27+
/* Define result of CRC computation */
28+
#define RESULT_CRC8_CCITT 0x4D
29+
30+
/**
31+
* @brief Test crc8_ccitt works
32+
*/
33+
ZTEST(crc_subsys, test_crc_8_ccitt)
34+
{
35+
uint8_t data[8] = {0x0A, 0x2B, 0x4C, 0x6D, 0x8E, 0x49, 0x00, 0xC4};
36+
uint8_t result = 0;
37+
38+
zassert_equal(crc8_ccitt_new(0x00, data, sizeof(data), &result), 0);
39+
zassert_equal(result, RESULT_CRC8_CCITT);
40+
}
41+
42+
/* Define result of CRC computation */
43+
#define RESULT_CRC8_ROHC 0xB2
44+
45+
/**
46+
* @brief Test that crc_8_rohc works
47+
*/
48+
ZTEST(crc_subsys, test_crc_8_rohc)
49+
{
50+
uint8_t data[8] = {0x0A, 0x2B, 0x4C, 0x6D, 0x8E, 0x49, 0x00, 0xC4};
51+
uint8_t result = 0;
52+
53+
zassert_equal(crc8_rohc_new(0x00, data, sizeof(data), &result), 0);
54+
zassert_equal(result, RESULT_CRC8_ROHC);
55+
}
56+
57+
/* Define result of CRC computation */
58+
#define RESULT_CRC16 0xE58F
59+
60+
/**
61+
* @brief Test that crc_16 works
62+
*/
63+
ZTEST(crc_subsys, test_crc_16)
64+
{
65+
uint8_t data[8] = {0x0A, 0x2B, 0x4C, 0x6D, 0x8E, 0x49, 0x00, 0xC4};
66+
uint16_t result;
67+
68+
zassert_equal(crc16_new(CRC16_POLY, CRC16_INIT_VAL, data, sizeof(data), &result), 0);
69+
zassert_equal(result, RESULT_CRC16);
70+
}
71+
72+
/* Define result of CRC computation */
73+
#define RESULT_CRC16_REFLECT 0xD543
74+
75+
/**
76+
* @brief Test that crc_16_reflect works
77+
*/
78+
ZTEST(crc_subsys, test_crc_16_reflect)
79+
{
80+
uint8_t data[8] = {0x0A, 0x2B, 0x4C, 0x6D, 0x8E, 0x49, 0x00, 0xC4};
81+
uint16_t result;
82+
83+
zassert_equal(
84+
crc16_reflect_new(CRC16_REFLECT_POLY, CRC16_INIT_VAL, data, sizeof(data), &result),
85+
0);
86+
zassert_equal(result, RESULT_CRC16_REFLECT);
87+
}
88+
89+
/* Define result of CRC computation */
90+
#define RESULT_CRC16_ANSI 0xDE03
91+
92+
/**
93+
* @brief Test that crc_16_ansi works
94+
*/
95+
ZTEST(crc_subsys, test_crc_16_ansi)
96+
{
97+
uint8_t data[8] = {0x0A, 0x2B, 0x4C, 0x6D, 0x8E, 0x49, 0x00, 0xC4};
98+
uint16_t result;
99+
100+
zassert_equal(crc16_ansi_new(data, sizeof(data), &result), 0);
101+
zassert_equal(result, RESULT_CRC16_ANSI);
102+
}
103+
104+
/* Define result of CRC computation */
105+
#define RESULT_CRC_CCITT 0x445C
106+
107+
/**
108+
* @brief Test that crc_16_ccitt works
109+
*/
110+
ZTEST(crc_subsys, test_crc_16_ccitt)
111+
{
112+
uint8_t data[8] = {0x0A, 0x2B, 0x4C, 0x6D, 0x8E, 0x49, 0x00, 0xC4};
113+
uint16_t result;
114+
115+
zassert_equal(crc16_ccitt_new(0x0000, data, sizeof(data), &result), 0);
116+
zassert_equal(result, RESULT_CRC_CCITT);
117+
}
118+
119+
/* Define result of CRC computation */
120+
#define RESULT_CRC16_ITU_T 0x8866
121+
122+
/**
123+
* @brief Test that crc_16_itu_t works
124+
*/
125+
ZTEST(crc_subsys, test_crc_16_itu_t)
126+
{
127+
uint8_t data[8] = {0x0A, 0x2B, 0x4C, 0x6D, 0x8E, 0x49, 0x00, 0xC4};
128+
uint16_t result;
129+
130+
zassert_equal(crc16_itu_t_new(0x0000, data, sizeof(data), &result), 0);
131+
zassert_equal(result, RESULT_CRC16_ITU_T);
132+
}
133+
134+
/* Define result of CRC computation */
135+
#define RESULT_CRC32_C 0xBB19ECB2
136+
137+
/**
138+
* @brief Test that crc32_c works
139+
*/
140+
ZTEST(crc_subsys, test_crc_32_c)
141+
{
142+
uint8_t data[8] = {0x0A, 0x2B, 0x4C, 0x6D, 0x8E, 0x49, 0x00, 0xC4};
143+
uint32_t result;
144+
145+
zassert_equal(crc32_c_new(0x000, data, sizeof(data), true, false, &result), 0);
146+
zassert_equal(result, RESULT_CRC32_C);
147+
}
148+
149+
/* Define result of CRC computation */
150+
#define RESULT_CRC32_IEEE 0xCEA4A6C2
151+
152+
/**
153+
* @brief Test that crc_32_ieee works
154+
*/
155+
ZTEST(crc_subsys, test_crc_32_ieee)
156+
{
157+
158+
uint8_t data[8] = {0x0A, 0x2B, 0x4C, 0x6D, 0x8E, 0x49, 0x00, 0xC4};
159+
uint32_t result;
160+
161+
zassert_equal(crc32_ieee_new(data, sizeof(data), &result), 0);
162+
zassert_equal(result, RESULT_CRC32_IEEE);
163+
}
164+
165+
/* Define result of CRC computation */
166+
#define RESULT_CRC8_CCITT_REMAIN_1 0x57
167+
168+
/**
169+
* @brief Test crc8_ccitt_remain_1 work
170+
*/
171+
ZTEST(crc_subsys, test_crc_8_ccitt_remain_1)
172+
{
173+
uint8_t data[9] = {0x0A, 0x2B, 0x4C, 0x6D, 0x8E, 0x49, 0x00, 0xC4, 0x3D};
174+
uint8_t result = 0;
175+
176+
zassert_equal(crc8_ccitt_new(0x00, data, sizeof(data), &result), 0);
177+
zassert_equal(result, RESULT_CRC8_CCITT_REMAIN_1);
178+
}
179+
180+
/* Define result of CRC computation */
181+
#define RESULT_CRC8_ROHC_REMAIN_2 0x4F
182+
183+
/**
184+
* @brief Test that crc_8_rohc_remain_2 works
185+
*/
186+
ZTEST(crc_subsys, test_crc_8_rohc_remain_2)
187+
{
188+
uint8_t data[10] = {0x0A, 0x2B, 0x4C, 0x6D, 0x8E, 0x49, 0x00, 0xC4, 0x3D, 0xFF};
189+
uint8_t result = 0;
190+
191+
zassert_equal(crc8_rohc_new(0x00, data, sizeof(data), &result), 0);
192+
zassert_equal(result, RESULT_CRC8_ROHC_REMAIN_2);
193+
}
194+
195+
/* Define result of CRC computation */
196+
#define RESULT_CRC_CCITT_REMAIN_3 0x454B
197+
198+
/**
199+
* @brief Test that crc_16_ccitt_remain_3 works
200+
*/
201+
ZTEST(crc_subsys, test_crc_16_ccitt_remain_3)
202+
{
203+
uint8_t data[11] = {0x0A, 0x2B, 0x4C, 0x6D, 0x8E, 0x49, 0x00, 0xC4, 0x3D, 0xFF, 0xE2};
204+
uint16_t result;
205+
206+
zassert_equal(crc16_ccitt_new(0x0000, data, sizeof(data), &result), 0);
207+
zassert_equal(result, RESULT_CRC_CCITT_REMAIN_3);
208+
}
209+
210+
/* Define result of CRC computation */
211+
#define RESULT_CRC16_ITU_T_REMAIN_1 0x917E
212+
213+
/**
214+
* @brief Test that crc_16_itu_t_remain_1 works
215+
*/
216+
ZTEST(crc_subsys, test_crc_16_itu_t_remain_1)
217+
{
218+
uint8_t data[9] = {0x0A, 0x2B, 0x4C, 0x6D, 0x8E, 0x49, 0x00, 0xC4, 0x3D};
219+
uint16_t result;
220+
221+
zassert_equal(crc16_itu_t_new(0x0000, data, sizeof(data), &result), 0);
222+
zassert_equal(result, RESULT_CRC16_ITU_T_REMAIN_1);
223+
}
224+
225+
ZTEST_SUITE(crc_subsys, NULL, NULL, NULL, NULL, NULL);

tests/subsys/crc/testcase.yaml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
tests:
2+
subsys.crc:
3+
depends_on: crc
4+
tags:
5+
- subsys
6+
- crc
7+
harness: ztest

0 commit comments

Comments
 (0)