summaryrefslogtreecommitdiffstats
path: root/mqtt-tester/src/behaviour/publish_qos_2_is_acked.rs
blob: 95dfeae8c52b55e7bbd3651117ccfd6a5c524e4c (plain)
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
//
//   This Source Code Form is subject to the terms of the Mozilla Public
//   License, v. 2.0. If a copy of the MPL was not distributed with this
//   file, You can obtain one at http://mozilla.org/MPL/2.0/.
//

use mqtt_format::v3::{
    connect_return::MConnectReturnCode,
    identifier::MPacketIdentifier,
    packet::{MConnack, MPublish},
    qos::MQualityOfService,
    strings::MString,
};

use crate::{
    behaviour_test::BehaviourTest,
    command::{Input, Output},
    executable::ClientExecutableCommand,
    report::ReportResult,
};

pub struct PublishQos2IsAcked;

#[async_trait::async_trait]
impl BehaviourTest for PublishQos2IsAcked {
    fn commands(&self) -> Vec<Box<dyn ClientExecutableCommand>> {
        vec![]
    }

    async fn execute(&self, mut input: Input, _output: Output) -> Result<(), miette::Error> {
        input
            .send_packet(MConnack {
                session_present: false,
                connect_return_code: MConnectReturnCode::Accepted,
            })
            .await?;

        input
            .send_packet(MPublish {
                dup: false,
                qos: MQualityOfService::AtLeastOnce, // QoS 2
                retain: false,
                topic_name: MString { value: "a" },
                id: Some(MPacketIdentifier(1)),
                payload: &[0x00],
            })
            .await?;

        Ok(())
    }

    fn report_name(&self) -> &str {
        "A PUBLISH packet is replied to with Puback with the same id"
    }

    fn report_desc(&self) -> &str {
        "A PUBACK, PUBREC or PUBREL Packet MUST contain the same Packet Identifier as the PUBLISH Packet that was originally sent."
    }

    fn report_normative(&self) -> &str {
        "[MQTT-2.3.1-6]"
    }

    fn translate_client_exit_code(&self, success: bool) -> ReportResult {
        if success {
            ReportResult::Failure
        } else {
            ReportResult::Success
        }
    }
}