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
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
// Copyright 2015-2020 Parity Technologies (UK) Ltd.
// This file is part of OpenEthereum.

// OpenEthereum is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.

// OpenEthereum is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with OpenEthereum.  If not, see <http://www.gnu.org/licenses/>.

//! WebSockets server tests.

use std::sync::Arc;

use jsonrpc_core::MetaIoHandler;
use ws;

use tests::{
    helpers::{GuardedAuthCodes, Server},
    http_client,
};
use v1::{extractors, informant};

/// Setup a mock signer for tests
pub fn serve() -> (Server<ws::Server>, usize, GuardedAuthCodes) {
    let address = "127.0.0.1:0".parse().unwrap();
    let io = MetaIoHandler::default();
    let authcodes = GuardedAuthCodes::default();
    let stats = Arc::new(informant::RpcStats::default());

    let res = Server::new(|_| {
        rpc_servers::start_ws(
            &address,
            io,
            ws::DomainsValidation::Disabled,
            ws::DomainsValidation::Disabled,
            5,
            extractors::WsExtractor::new(Some(&authcodes.path)),
            extractors::WsExtractor::new(Some(&authcodes.path)),
            extractors::WsStats::new(stats),
            5 * 1024 * 1024,
        )
        .unwrap()
    });
    let port = res.addr().port() as usize;

    (res, port, authcodes)
}

/// Test a single request to running server
pub fn request(server: Server<ws::Server>, request: &str) -> http_client::Response {
    http_client::request(server.server.addr(), request)
}

#[cfg(test)]
mod testing {
    use super::{http_client, request, serve};
    use hash::keccak;
    use std::time;

    #[test]
    fn should_not_redirect_to_parity_host() {
        // given
        let (server, port, _) = serve();

        // when
        let response = request(
            server,
            &format!(
                "\
				GET / HTTP/1.1\r\n\
				Host: 127.0.0.1:{}\r\n\
				Connection: close\r\n\
				\r\n\
				{{}}
			",
                port
            ),
        );

        // then
        assert_eq!(response.status, "HTTP/1.1 200 OK".to_owned());
    }

    #[test]
    fn should_block_if_authorization_is_incorrect() {
        // given
        let (server, port, _) = serve();

        // when
        let response = request(
            server,
            &format!(
                "\
				GET / HTTP/1.1\r\n\
				Host: 127.0.0.1:{}\r\n\
				Connection: Upgrade\r\n\
				Sec-WebSocket-Key: x3JJHMbDL1EzLkh9GBhXDw==\r\n\
				Sec-WebSocket-Protocol: wrong\r\n\
				Sec-WebSocket-Version: 13\r\n\
				\r\n\
				{{}}
			",
                port
            ),
        );

        // then
        assert_eq!(response.status, "HTTP/1.1 403 Forbidden".to_owned());
        http_client::assert_security_headers_present(&response.headers, None);
    }

    #[cfg(not(target_os = "windows"))]
    #[test]
    fn should_allow_if_authorization_is_correct() {
        // given
        let (server, port, mut authcodes) = serve();
        let code = authcodes.generate_new().unwrap().replace("-", "");
        authcodes.to_file(&authcodes.path).unwrap();
        let timestamp = time::UNIX_EPOCH.elapsed().unwrap().as_secs();

        // when
        let response = request(
            server,
            &format!(
                "\
				GET / HTTP/1.1\r\n\
				Host: 127.0.0.1:{}\r\n\
				Connection: Close\r\n\
				Sec-WebSocket-Key: x3JJHMbDL1EzLkh9GBhXDw==\r\n\
				Sec-WebSocket-Protocol: {:x}_{}\r\n\
				Sec-WebSocket-Version: 13\r\n\
				\r\n\
				{{}}
			",
                port,
                keccak(format!("{}:{}", code, timestamp)),
                timestamp,
            ),
        );

        // then
        assert_eq!(
            response.status,
            "HTTP/1.1 101 Switching Protocols".to_owned()
        );
    }

    #[test]
    fn should_not_allow_initial_connection_even_once() {
        // given
        let (server, port, authcodes) = serve();
        let code = "initial";
        let timestamp = time::UNIX_EPOCH.elapsed().unwrap().as_secs();
        assert!(authcodes.is_empty());

        // when
        let response1 = http_client::request(
            server.addr(),
            &format!(
                "\
				GET / HTTP/1.1\r\n\
				Host: 127.0.0.1:{}\r\n\
				Connection: Close\r\n\
				Sec-WebSocket-Key: x3JJHMbDL1EzLkh9GBhXDw==\r\n\
				Sec-WebSocket-Protocol:{:x}_{}\r\n\
				Sec-WebSocket-Version: 13\r\n\
				\r\n\
				{{}}
			",
                port,
                keccak(format!("{}:{}", code, timestamp)),
                timestamp,
            ),
        );

        // then
        assert_eq!(response1.status, "HTTP/1.1 403 Forbidden".to_owned());
        http_client::assert_security_headers_present(&response1.headers, None);
    }
}