1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
//
// Copyright (C) 2019-2021 Swift Navigation Inc.
// Contact: https://support.swiftnav.com
//
// This source is subject to the license found in the file 'LICENSE' which must
// be distributed together with this source. All other rights reserved.
//
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
// EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED
// WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
// This file was auto-generated from spec/tests/yaml/swiftnav/sbp/bootload/test_MsgBootloaderHandshakeReq.yaml by generate.py. Do not modify by hand!
use crate::*;
/// Tests [`sbp::iter_messages`], from payload into SBP messages
///
/// Asserts:
/// - SBP fields equates to that of the field
/// - Payload is identical
#[test]
fn test_auto_check_sbp_bootload_msg_bootloader_handshake_req() {
{
let mut payload = Cursor::new(vec![85, 179, 0, 136, 247, 0, 65, 216]);
// Test the round trip payload parsing
let sbp_msg = {
let mut msgs = iter_messages(&mut payload);
msgs.next()
.expect("no message found")
.expect("failed to parse message")
};
match &sbp_msg {
sbp::messages::Sbp::MsgBootloaderHandshakeReq(msg) => {
let msg_type = msg.message_type().unwrap();
assert_eq!(
msg_type, 0xb3,
"Incorrect message type, expected 0xb3, is {msg_type}"
);
let sender_id = msg.sender_id().unwrap();
assert_eq!(
sender_id, 0xf788,
"incorrect sender id, expected 0xf788, is {sender_id}"
);
}
_ => panic!("Invalid message type! Expected a MsgBootloaderHandshakeReq"),
};
let frame = sbp::to_vec(&sbp_msg).unwrap();
assert_eq!(frame, payload.into_inner());
}
}
/// Tests [`sbp::json::iter_messages`] for JSON payload -> SBP message
/// and [`sbp::json::iter_messages_from_fields`] for JSON fields -> SBP message.
///
/// Asserts:
/// - SBP message constructed via payload is identical to from fields
/// - SBP fields equates to that of the field
/// - Payload is identical
#[test]
#[cfg(feature = "json")]
fn test_json2sbp_auto_check_sbp_bootload_msg_bootloader_handshake_req() {
{
let json_input =
r#"{"crc":55361,"length":0,"msg_type":179,"payload":"","preamble":85,"sender":63368}"#
.as_bytes();
let sbp_msg = {
// JSON to SBP message from payload
let mut iter = json2sbp_iter_msg(json_input);
let from_payload = iter
.next()
.expect("no message found")
.expect("failed to parse message");
// JSON to SBP message from fields
let mut iter = iter_messages_from_fields(json_input);
let from_fields = iter
.next()
.expect("no message found")
.expect("failed to parse message");
assert_eq!(from_fields, from_payload);
from_fields
};
match &sbp_msg {
sbp::messages::Sbp::MsgBootloaderHandshakeReq(msg) => {
let msg_type = msg.message_type().unwrap();
assert_eq!(
msg_type, 0xb3,
"Incorrect message type, expected 0xb3, is {msg_type}"
);
let sender_id = msg.sender_id().unwrap();
assert_eq!(
sender_id, 0xf788,
"incorrect sender id, expected 0xf788, is {sender_id}"
);
}
_ => panic!("Invalid message type! Expected a MsgBootloaderHandshakeReq"),
};
}
}
/// Tests [`sbp::json::JsonEncoder`] for roundtrip SBP message -> JSON
///
/// Assumes:
/// - [`self::test_auto_check_sbp_bootload_msg_bootloader_handshake_req`] passes
///
/// Asserts:
/// - SBP fields equates to that of the field
/// - Payload is identical
#[test]
#[cfg(feature = "json")]
fn test_sbp2json_auto_check_sbp_bootload_msg_bootloader_handshake_req() {
{
let mut payload = Cursor::new(vec![85, 179, 0, 136, 247, 0, 65, 216]);
// Construct sbp message
let sbp_msg = {
let mut msgs = iter_messages(&mut payload);
msgs.next()
.expect("no message found")
.expect("failed to parse message")
};
let mut json_buffer = vec![];
// Populate json buffer, CompactFormatter
sbp::json::JsonEncoder::new(&mut json_buffer, sbp::json::CompactFormatter {})
.send(&sbp_msg)
.unwrap();
// Reconstruct Sbp message from json fields, roundtrip
let sbp_msg = sbp::messages::Sbp::MsgBootloaderHandshakeReq(
serde_json::from_str(
std::str::from_utf8(json_buffer.as_slice())
.unwrap()
.to_string()
.as_str(),
)
.unwrap(),
);
match &sbp_msg {
sbp::messages::Sbp::MsgBootloaderHandshakeReq(msg) => {
let msg_type = msg.message_type().unwrap();
assert_eq!(
msg_type, 0xb3,
"Incorrect message type, expected 0xb3, is {msg_type}"
);
let sender_id = msg.sender_id().unwrap();
assert_eq!(
sender_id, 0xf788,
"incorrect sender id, expected 0xf788, is {sender_id}"
);
}
_ => panic!("Invalid message type! Expected a MsgBootloaderHandshakeReq"),
};
// Check payload is still identical
let frame = sbp::to_vec(&sbp_msg).unwrap();
assert_eq!(frame, payload.into_inner());
}
}