1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-15 17:43:51 +01:00

tests/unittests: fix failure with CONFIG_SOCK_URLPATH_MAXLEN=128

The test checking for a failure on a too long URL path will fail when
allowing longer URL paths. E.g. in `makefiles/suit.inc.mk` we bump
`CONFIG_SOCK_URLPATH_MAXLEN`  to 128 byte. This changes the test
case to provide a path that is indeed longer than 128 byte to also
fail in that case.
This commit is contained in:
Marian Buschsieweke 2025-12-11 11:45:41 +01:00
parent 526ac4c69e
commit d99c2dc712
No known key found for this signature in database
GPG Key ID: 758BD52517F79C41

View File

@ -47,9 +47,11 @@
#define TEST_URL_LONG_HOSTPORT "https://veryveryvery.long.hostname.that." \
"doesnt.fit.inside.sixtyfour.characters." \
"of.buffer.space/localpart"
#define TEST_URL_LONG_URLPATH "http://shorthostname/very/very/long/ " \
"path/that/doesnt/fit/inside/sixtyfour/" \
"chars/of/buffer/space"
#define TEST_URL_LONG_URLPATH "http://shorthostname/super/duper/"\
"mega/ultra/collssaly/massively/long/ " \
"path/that/doesnt/fit/inside/" \
"one-hundred-and-twentyfour/bytes/" \
"/of/preallocated/buffer/space"
static char addr[CONFIG_SOCK_URLPATH_MAXLEN];
static char urlpath[CONFIG_SOCK_URLPATH_MAXLEN];