summaryrefslogtreecommitdiffstats
path: root/src/bin/testserver-demo.rs
blob: 74ea752ada29cf2d920b2dd645baa48bd3d53c0a (plain) (blame)
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
// Testserver demo
// Copyright (C) 2021  Soni L.
// 
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// 
// This program 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 Affero General Public License for more details.
// 
// You should have received a copy of the GNU Affero General Public License
// along with this program.  If not, see <https://www.gnu.org/licenses/>.

static DEMO: &'static str =
r###"!<arch>
page.xhtml.t/   0           0     0     644     663       `
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
	<head>
		<meta charset="UTF-8" />
		<meta http-equiv="X-UA-Compatible" content="IE=edge" />
		<meta name="viewport" content="width=device-width, initial-scale=1" />
		<title>Testserver Demo</title>
	</head>
	<body>
		<main>
			<h1>Testserver Demo</h1>
			<p>Simple demo of the testserver. Check the source file for details.</p>
		</main>
		<footer>
			<hr />
			<p>The contents of this webpage are licensed under a <a rel="license" href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.</p>
		</footer>
	</body>
</html>


"###;

fn main() {
    let server = testserver::serve(DEMO);
    println!("Listening on http://127.74.137.226:{}/page.xhtml", server.port());
    println!("Type anything to exit.");
    let _ = std::io::stdin().read_line(&mut String::new());
    drop(server);
}