summaryrefslogtreecommitdiffstats
path: root/mqtt-tester/src/behaviour/invalid_first_packet_is_rejected.rs
blob: ea3d663de775945242802321db0241877fefec2b (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
//
//   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::{packet::MConnect, strings::MString};

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

pub struct InvalidFirstPacketIsRejected;

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

    #[tracing::instrument(skip_all)]
    async fn execute(&self, mut input: Input, _output: Output) -> Result<(), miette::Error> {
        input
            .send_packet(MConnect {
                protocol_name: MString { value: "foo" },
                protocol_level: 0,
                clean_session: true,
                will: None,
                username: None,
                password: None,
                keep_alive: 0,
                client_id: MString { value: "client" },
            })
            .await?;
        Ok(())
    }

    fn report_name(&self) -> &str {
        "Check if invalid first packet is rejected"
    }

    fn report_desc(&self) -> &str {
        "The first packet from the server must be a ConnAck. Any other packet is invalid and the client should close the connection"
    }

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

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