Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RIOT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cm-projects
RIOT
Commits
715b79a1
Commit
715b79a1
authored
6 years ago
by
Ken Bannister
Browse files
Options
Downloads
Patches
Plain Diff
tests/nanocoap: build request that fills buffer
parent
85a65863
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/unittests/tests-nanocoap/tests-nanocoap.c
+24
-0
24 additions, 0 deletions
tests/unittests/tests-nanocoap/tests-nanocoap.c
with
24 additions
and
0 deletions
tests/unittests/tests-nanocoap/tests-nanocoap.c
+
24
−
0
View file @
715b79a1
...
@@ -330,6 +330,29 @@ static void test_nanocoap__get_multi_query(void)
...
@@ -330,6 +330,29 @@ static void test_nanocoap__get_multi_query(void)
TEST_ASSERT_EQUAL_STRING
((
char
*
)
qs
,
&
query
[
1
]);
TEST_ASSERT_EQUAL_STRING
((
char
*
)
qs
,
&
query
[
1
]);
}
}
/*
* Builds on get_req test, to test building a PDU that completely fills the
* buffer.
*/
static
void
test_nanocoap__option_add_buffer_max
(
void
)
{
uint8_t
buf
[
70
];
/* header 4, token 2, path 64 */
coap_pkt_t
pkt
;
uint16_t
msgid
=
0xABCD
;
uint8_t
token
[
2
]
=
{
0xDA
,
0xEC
};
char
path
[]
=
"/23456789012345678901234567890123456789012345678901234567890123"
;
size_t
uri_opt_len
=
64
;
/* option hdr 2, option value 62 */
size_t
len
=
coap_build_hdr
((
coap_hdr_t
*
)
&
buf
[
0
],
COAP_TYPE_NON
,
&
token
[
0
],
2
,
COAP_METHOD_GET
,
msgid
);
coap_pkt_init
(
&
pkt
,
&
buf
[
0
],
sizeof
(
buf
),
len
);
len
=
coap_opt_add_string
(
&
pkt
,
COAP_OPT_URI_PATH
,
&
path
[
0
],
'/'
);
TEST_ASSERT_EQUAL_INT
(
uri_opt_len
,
len
);
}
/*
/*
* Helper for server_get tests below.
* Helper for server_get tests below.
* GET Request for nanocoap server example /riot/value resource.
* GET Request for nanocoap server example /riot/value resource.
...
@@ -531,6 +554,7 @@ Test *tests_nanocoap_tests(void)
...
@@ -531,6 +554,7 @@ Test *tests_nanocoap_tests(void)
new_TestFixture
(
test_nanocoap__get_path_too_long
),
new_TestFixture
(
test_nanocoap__get_path_too_long
),
new_TestFixture
(
test_nanocoap__get_query
),
new_TestFixture
(
test_nanocoap__get_query
),
new_TestFixture
(
test_nanocoap__get_multi_query
),
new_TestFixture
(
test_nanocoap__get_multi_query
),
new_TestFixture
(
test_nanocoap__option_add_buffer_max
),
new_TestFixture
(
test_nanocoap__server_get_req
),
new_TestFixture
(
test_nanocoap__server_get_req
),
new_TestFixture
(
test_nanocoap__server_reply_simple
),
new_TestFixture
(
test_nanocoap__server_reply_simple
),
new_TestFixture
(
test_nanocoap__server_get_req_con
),
new_TestFixture
(
test_nanocoap__server_get_req_con
),
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment