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
#![crate_type = "lib"]
#![crate_name = "qauth"]

extern crate serde_json;

extern crate itertools;

extern crate openssl;

pub mod client;
mod packet;
mod utils;

#[cfg(test)]
mod tests {
    use crate::client::Client;

    #[test]
    fn connect_to_uplink() {
        let client = Client::new(
            String::from("1WFtHGbhfuBfoobarJLeNJgKtxOULdhtliz7BLG4dGVhZf9dINZQmk1JoXjUxCj1"),
            String::from("n0qy2cZyLtF3bHNOqiNaslm4mvGpWQcC"),
            String::from("0.0.1"),
        );
        assert!(client.is_ok(), "{}", true);
    }

    #[test]
    fn authenticate() {
        let client = Client::new(
            String::from("1WFtHGbhfuBUI3barfooNJgKtxOULdhtliz7BLG4dGVhZf9dINZQmk1JoXjUxCj1"),
            String::from("jl9BxW6jJ5jIUBjXbZAFQZGW8xhIqvx4"),
            String::from("0.0.1"),
        );
        assert!(client.is_ok(), "{}", true);
        let client = client.unwrap();

        let resp = client.login(String::from("user"), String::from("password"));
        assert!(resp.status.eq("success"), "{:?}", resp);
    }

    #[test]
    fn variable() {
        let client = Client::new(
            String::from("1WFtHGbhfuBUI3barJLeNJgKfooULdhtliz7BLG4dGVhZf9dINZQmk1JoXjUxCj1"),
            String::from("jl9BxW6jJ5jIUBjXbZAFQZGW8xhIqvx4"),
            String::from("0.0.1"),
        );
        assert!(client.is_ok(), "{}", true);
        let mut client = client.unwrap();

        let _resp = client.login(String::from("user"), String::from("password"));
        assert!(_resp.status.eq("success"), "{}", true);

        let var = client.variable("test");
        assert!(var.eq("test"), "{}", true)
    }

    #[test]
    fn all_variables() {
        let client = Client::new(
            String::from("1WFtHGbhfuBUI3barJLeNJgKtxfoodhtliz7BLG4dGVhZf9dINZQmk1JoXjUxCj1"),
            String::from("jl9BxW6jJ5jIUBjXbZAFQZGW8xhIqvx4"),
            String::from("0.0.1"),
        );
        assert!(client.is_ok(), "{}", true);
        let mut client = client.unwrap();

        let _resp = client.login(String::from("user"), String::from("password"));

        let var = client.all_variables();
        assert!(var.get("test").unwrap().eq("test"), "{}", true);
        assert!(var.get("test1").unwrap().eq("testing"), "{}", true);
    }
}

static SERVER_LIST: [&str; 9] = [
    "135.181.165.139",
    "95.216.255.232",
    "95.216.255.233",
    "95.216.255.234",
    "95.216.255.235",
    "95.216.255.236",
    "95.216.255.237",
    "95.216.255.238",
    "95.216.255.239",
];