summaryrefslogtreecommitdiffstats
path: root/mqtt-tester/src/behaviour/connack_flags_are_set_as_reserved.rs
blob: 49012c1a17b05cdc710baa6bf795dfa81fb36749 (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
//
//   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 crate::{
    behaviour_test::BehaviourTest,
    command::{Input, Output},
    executable::ClientExecutableCommand,
    report::ReportResult,
};

pub struct ConnackFlagsAreSetAsReserved;

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

    async fn execute(&self, mut input: Input, _output: Output) -> Result<(), miette::Error> {
        input
            .send(&[
                0b0010_0000 | 0b0000_1000, // CONNACK + garbage
                0b0000_0010,               // Remaining length
                0b0000_0000,               // No session present
                0b0000_0000,               // Connection accepted
            ])
            .await?;
        Ok(())
    }

    fn report_name(&self) -> &str {
        "Flag-Bit is set to 1 where it should be 0"
    }

    fn report_desc(&self) -> &str {
        "CONNACK flag bits are marked as Reserved and must be set accordingly to spec"
    }

    fn report_normative(&self) -> &str {
        "[MQTT-2.2.2-1]"
    }

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