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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
//! Network management
use async_trait::async_trait;
use bitflags::bitflags;
use fantoccini::error::CmdError;
use http::Method;
use serde_json::json;
use crate::{AndroidClient, AppiumClientTrait};
use crate::commands::AppiumCommand;

bitflags! {
    #[repr(transparent)]
    #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
    pub struct ConnectionState: u16 {
        const AIRPLANE_MODE_MASK = 0b001;
        const WIFI_MASK = 0b010;
        const DATA_MASK = 0b100;
    }
}

/// Check network status (wifi, mobile data, airplane, or change status in emulator)
#[async_trait]
pub trait HasNetworkState: AppiumClientTrait {
    async fn set_connection(&self, state: &ConnectionState) -> Result<(), CmdError> {
        let bitmask = state.bits();

        self.issue_cmd(AppiumCommand::Custom(
            Method::POST,
            "network_connection".to_string(),
            Some(json!({
                "name": "network_connection",
                "parameters": {
                    "type": bitmask
                }
            })),
        )).await?;

        Ok(())
    }

    async fn get_connection(&self) -> Result<ConnectionState, CmdError> {
        let value = self.issue_cmd(AppiumCommand::Custom(
            Method::GET,
            "network_connection".to_string(),
            None,
        )).await?;

        let bits: u16 = serde_json::from_value(value)?;

        Ok(ConnectionState::from_bits_truncate(bits))
    }
}

#[async_trait]
impl HasNetworkState for AndroidClient {}

/// Toggle network status
#[async_trait]
pub trait SupportsNetworkStateManagement: AppiumClientTrait {

    async fn toggle_wifi(&self) -> Result<(), CmdError> {
        self.issue_cmd(AppiumCommand::Custom(
            Method::POST,
            "appium/device/toggle_wifi".to_string(),
            None,
        )).await?;

        Ok(())
    }

    async fn toggle_airplane_mode(&self) -> Result<(), CmdError> {
        self.issue_cmd(AppiumCommand::Custom(
            Method::POST,
            "appium/device/toggle_airplane_mode".to_string(),
            None,
        )).await?;

        Ok(())
    }

    async fn toggle_data(&self) -> Result<(), CmdError> {
        self.issue_cmd(AppiumCommand::Custom(
            Method::POST,
            "appium/device/toggle_data".to_string(),
            None,
        )).await?;

        Ok(())
    }
}

#[async_trait]
impl SupportsNetworkStateManagement for AndroidClient {}