1
- use askama:: Template ;
2
- use axum:: {
3
- response:: { Html , IntoResponse , Response } ,
4
- routing:: get,
5
- serve, Router ,
6
- } ;
7
- use hyper:: {
8
- header:: { self , HeaderMap } ,
9
- StatusCode ,
10
- } ;
1
+ use axum:: { response:: IntoResponse , routing:: get, serve, Router } ;
2
+ use hyper:: header:: HeaderMap ;
11
3
use std:: net:: SocketAddr ;
12
4
use tokio:: {
13
5
net:: TcpListener ,
14
6
signal:: unix:: { signal, SignalKind } ,
15
7
sync:: mpsc,
16
8
} ;
17
9
18
- #[ derive( Template ) ]
19
- #[ template( path = "jsontemplate.html" , escape = "none" ) ]
20
- struct DataHtmlTemplate < ' a > {
21
- raw_json_as_string : & ' a str ,
22
- }
23
-
24
10
const SAMPLE_JSON : & str = include_str ! ( "sample.json" ) ;
25
11
26
- async fn json_or_html ( headers : HeaderMap ) -> impl IntoResponse {
27
- let raw_json_as_string = SAMPLE_JSON ;
28
- if accept_header_contains_text_html ( & headers) {
29
- let template = DataHtmlTemplate { raw_json_as_string } ;
30
- match template. render ( ) {
31
- Ok ( html) => Html ( html) . into_response ( ) ,
32
- Err ( _) => axum:: http:: StatusCode :: INTERNAL_SERVER_ERROR . into_response ( ) ,
33
- }
34
- } else {
35
- Response :: builder ( )
36
- . status ( StatusCode :: OK )
37
- . header ( "content-type" , "application/json" )
38
- . body ( raw_json_as_string. to_string ( ) )
39
- . unwrap ( )
40
- . into_response ( )
41
- }
42
- }
12
+ #[ path = "../lib/http.rs" ]
13
+ mod http;
43
14
44
- fn accept_header_contains_text_html ( headers : & HeaderMap ) -> bool {
45
- headers
46
- . get_all ( header:: ACCEPT )
47
- . iter ( )
48
- . filter_map ( |s| s. to_str ( ) . ok ( ) )
49
- . flat_map ( |s| s. split ( ',' ) )
50
- . map ( |s| s. split ( ';' ) . next ( ) . unwrap_or ( "" ) . trim ( ) )
51
- . any ( |s| s. eq_ignore_ascii_case ( "text/html" ) )
15
+ async fn json_handler ( headers : HeaderMap ) -> impl IntoResponse {
16
+ http:: json_or_html ( headers, SAMPLE_JSON ) . await
52
17
}
53
18
54
19
#[ tokio:: main]
@@ -68,7 +33,7 @@ async fn main() {
68
33
}
69
34
} ) ,
70
35
)
71
- . route ( "/json" , get ( json_or_html ) ) ;
36
+ . route ( "/json" , get ( json_handler ) ) ;
72
37
73
38
let addr = SocketAddr :: from ( ( [ 0 , 0 , 0 , 0 ] , 3000 ) ) ;
74
39
let listener = TcpListener :: bind ( addr) . await . unwrap ( ) ;
@@ -89,81 +54,3 @@ async fn main() {
89
54
90
55
println ! ( "rust http server down" ) ;
91
56
}
92
-
93
- #[ cfg( test) ]
94
- mod tests {
95
- use super :: * ;
96
- use axum:: {
97
- http:: { self , Request , StatusCode } ,
98
- Router ,
99
- } ;
100
- use tower:: util:: ServiceExt ;
101
-
102
- #[ tokio:: test]
103
- async fn test_getting_json ( ) {
104
- let app = Router :: new ( ) . route ( "/json" , get ( json_or_html) ) ;
105
-
106
- let response = app
107
- . oneshot (
108
- Request :: builder ( )
109
- . method ( http:: Method :: GET )
110
- . uri ( "/json" )
111
- . header ( http:: header:: ACCEPT , mime:: APPLICATION_JSON . as_ref ( ) )
112
- . body ( String :: new ( ) )
113
- . unwrap ( ) ,
114
- )
115
- . await
116
- . unwrap ( ) ;
117
-
118
- assert_eq ! ( response. status( ) , StatusCode :: OK ) ;
119
- assert ! ( response
120
- . headers( )
121
- . get( http:: header:: CONTENT_TYPE )
122
- . unwrap( )
123
- . to_str( )
124
- . unwrap( )
125
- . split( ";" )
126
- . any( |x| x. trim( ) == "application/json" ) ) ;
127
- }
128
-
129
- #[ tokio:: test]
130
- async fn test_getting_html ( ) {
131
- let app = Router :: new ( ) . route ( "/json" , get ( json_or_html) ) ;
132
-
133
- let response = app
134
- . oneshot (
135
- Request :: builder ( )
136
- . method ( http:: Method :: GET )
137
- . uri ( "/json" )
138
- . header ( http:: header:: ACCEPT , mime:: TEXT_HTML . as_ref ( ) )
139
- . body ( String :: new ( ) )
140
- . unwrap ( ) ,
141
- )
142
- . await
143
- . unwrap ( ) ;
144
-
145
- assert_eq ! ( response. status( ) , StatusCode :: OK ) ;
146
- assert ! ( response
147
- . headers( )
148
- . get( http:: header:: CONTENT_TYPE )
149
- . unwrap( )
150
- . to_str( )
151
- . unwrap( )
152
- . split( ";" )
153
- . any( |x| x. trim( ) == "text/html" ) ) ;
154
- }
155
-
156
- #[ test]
157
- fn test_accept_header_contains_text_html ( ) {
158
- let mut headers = HeaderMap :: new ( ) ;
159
- headers. insert ( header:: ACCEPT , "text/html" . parse ( ) . unwrap ( ) ) ;
160
- assert ! ( accept_header_contains_text_html( & headers) ) ;
161
-
162
- headers. insert ( header:: ACCEPT , "application/json, Text/Html; q=0.5" . parse ( ) . unwrap ( ) ) ;
163
- assert ! ( accept_header_contains_text_html( & headers) ) ;
164
-
165
- headers. clear ( ) ;
166
- headers. insert ( header:: ACCEPT , "application/xml" . parse ( ) . unwrap ( ) ) ;
167
- assert ! ( !accept_header_contains_text_html( & headers) ) ;
168
- }
169
- }
0 commit comments