Skip to main content

rocketmq_remoting/protocol/header/
get_user_request_headers.rs

1// Copyright 2023 The RocketMQ Rust Authors
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//     http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15use cheetah_string::CheetahString;
16use rocketmq_macros::RequestHeaderCodecV2;
17use serde::Deserialize;
18use serde::Serialize;
19
20#[derive(Debug, Clone, Serialize, Deserialize, Default, RequestHeaderCodecV2)]
21#[serde(rename_all = "camelCase")]
22pub struct GetUserRequestHeader {
23    pub username: CheetahString,
24}
25
26#[cfg(test)]
27mod tests {
28    use super::*;
29
30    #[test]
31    fn get_user_request_header_default() {
32        let header = GetUserRequestHeader::default();
33        assert_eq!(header.username, CheetahString::default());
34    }
35
36    #[test]
37    fn get_user_request_header_serialize() {
38        let header = GetUserRequestHeader {
39            username: CheetahString::from("value"),
40        };
41        let json = serde_json::to_string(&header).unwrap();
42        assert_eq!(json, r#"{"username":"value"}"#);
43    }
44
45    #[test]
46    fn get_user_request_header_deserialize() {
47        let json = r#"{"username":"value"}"#;
48        let header: GetUserRequestHeader = serde_json::from_str(json).unwrap();
49        assert_eq!(header.username, CheetahString::from("value"));
50    }
51
52    #[test]
53    fn get_user_request_header_clone() {
54        let header = GetUserRequestHeader {
55            username: CheetahString::from("value"),
56        };
57        let cloned_header = header.clone();
58        assert_eq!(header.username, cloned_header.username);
59    }
60}