rocketmq-remoting 0.9.0

Rust implementation of Apache rocketmq remoting
Documentation
// Copyright 2023 The RocketMQ Rust Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

use cheetah_string::CheetahString;
use rocketmq_macros::RequestHeaderCodecV2;
use serde::Deserialize;
use serde::Serialize;

#[derive(Clone, Debug, Serialize, Deserialize, Default, RequestHeaderCodecV2)]
#[serde(rename_all = "camelCase")]
pub struct GetAllTopicConfigRequestHeader {
    #[required]
    pub topic_seq: i32,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub data_version: Option<CheetahString>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub max_topic_num: Option<i32>,
}

#[cfg(test)]
mod tests {
    use std::collections::HashMap;

    use super::*;
    use crate::protocol::command_custom_header::CommandCustomHeader;
    use crate::protocol::command_custom_header::FromMap;

    #[test]
    fn get_all_topic_config_request_header_maps_java_fields() {
        let header = GetAllTopicConfigRequestHeader {
            topic_seq: 11,
            data_version: Some(CheetahString::from_static_str("dv-topic")),
            max_topic_num: Some(64),
        };

        let map = header.to_map().expect("header should encode");
        assert_eq!(map.get("topicSeq").map(|value| value.as_str()), Some("11"));
        assert_eq!(map.get("dataVersion").map(|value| value.as_str()), Some("dv-topic"));
        assert_eq!(map.get("maxTopicNum").map(|value| value.as_str()), Some("64"));

        let decoded = <GetAllTopicConfigRequestHeader as FromMap>::from(&map).expect("header should decode");
        assert_eq!(decoded.topic_seq, 11);
        assert_eq!(decoded.data_version.as_deref(), Some("dv-topic"));
        assert_eq!(decoded.max_topic_num, Some(64));
    }

    #[test]
    fn get_all_topic_config_request_header_requires_topic_seq_like_java_header() {
        let result = <GetAllTopicConfigRequestHeader as FromMap>::from(&HashMap::new());

        assert!(result.is_err());
    }
}