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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
use std::io;

use futures::future;
use futures::{Future as FutureLegacy};
use thruster_core::context::Context;
use thruster_core::request::{Request, RequestWithParams};
use thruster_core::route_parser::{MatchedRoute, RouteParser};
use thruster_core::middleware::{MiddlewareChain};

use thruster_context::basic_context::{generate_context, BasicContext};

enum Method {
  DELETE,
  GET,
  OPTIONS,
  POST,
  PUT,
  UPDATE
}

// Warning, this method is slow and shouldn't be used for route matching, only for route adding
fn _add_method_to_route(method: &Method, path: &str) -> String {
  let prefix = match method {
    Method::DELETE => "__DELETE__",
    Method::GET => "__GET__",
    Method::OPTIONS => "__OPTIONS__",
    Method::POST => "__POST__",
    Method::PUT => "__PUT__",
    Method::UPDATE => "__UPDATE__"
  };

  match &path[0..1] {
    "/" => format!("{}{}", prefix, path),
    _ => format!("{}/{}", prefix, path)
  }
}

#[inline]
fn _add_method_to_route_from_str(method: &str, path: &str) -> String {
  templatify!("__" ; method ; "__" ; path ; "")
}

///
/// App, the main component of Thruster. The App is the entry point for your application
/// and handles all incomming requests. Apps are also composeable, that is, via the `subapp`
/// method, you can use all of the methods and middlewares contained within an app as a subset
/// of your app's routes.
///
/// There are three main parts to creating a thruster app:
/// 1. Use `App.create` to create a new app with a custom context generator
/// 2. Add routes and middleware via `.get`, `.post`, etc.
/// 3. Start the app with `App.start`
///
/// # Examples
/// Subapp
///
/// ```rust, ignore
/// let mut app1 = App::<Request, BasicContext>::new();
///
/// fn test_fn_1(context: BasicContext, next: impl Fn(BasicContext) -> MiddlewareReturnValue<BasicContext>  + Send + Sync) -> MiddlewareReturnValue<BasicContext> {
///   Box::new(future::ok(BasicContext {
///     body: context.params.get("id").unwrap().to_owned(),
///     params: context.params,
///     query_params: context.query_params
///   }))
/// };
///
/// app1.get("/:id", middleware![BasicContext => test_fn_1]);
///
/// let mut app2 = App::<Request, BasicContext>::new();
/// app2.use_sub_app("/test", &app1);
/// ```
///
/// In the above example, the route `/test/some-id` will return `some-id` in the body of the response.
///
/// The provided start methods are great places to start, but you can also simply use Thruster as a router
/// and create your own version of an HTTP server by directly calling `App.resolve` with a Request object.
/// It will then return a future with the Response object that corresponds to the request. This can be
/// useful if trying to integrate with a different type of load balancing system within the threads of the
/// application.
///
pub struct App<R: RequestWithParams, T: 'static + Context + Send> {
  pub _route_parser: RouteParser<T>,
  ///
  /// Generate context is common to all `App`s. It's the function that's called upon receiving a request
  /// that translates an acutal `Request` struct to your custom Context type. It should be noted that
  /// the context_generator should be as fast as possible as this is called with every request, including
  /// 404s.
  pub context_generator: fn(R) -> T
}

impl<R: RequestWithParams, T: Context + Send> App<R, T> {
  /// Creates a new instance of app with the library supplied `BasicContext`. Useful for trivial
  /// examples, likely not a good solution for real code bases. The advantage is that the
  /// context_generator is already supplied for the developer.
  pub fn new_basic() -> App<Request, BasicContext> {
    App::create(generate_context)
  }

  /// Create a new app with the given context generator. The app does not begin listening until start
  /// is called.
  pub fn create(generate_context: fn(R) -> T) -> App<R, T> {
    App {
      _route_parser: RouteParser::new(),
      context_generator: generate_context
    }
  }

  /// Add method-agnostic middleware for a route. This is useful for applying headers, logging, and
  /// anything else that might not be sensitive to the HTTP method for the endpoint.
  pub fn use_middleware(&mut self, path: &'static str, middleware: MiddlewareChain<T>) -> &mut App<R, T> {
    self._route_parser.add_method_agnostic_middleware(path, middleware);

    self
  }

  /// Add an app as a predetermined set of routes and middleware. Will prefix whatever string is passed
  /// in to all of the routes. This is a main feature of Thruster, as it allows projects to be extermely
  /// modular and composeable in nature.
  pub fn use_sub_app(&mut self, prefix: &'static str, app: App<R, T>) -> &mut App<R, T> {
    self._route_parser.route_tree
      .add_route_tree(prefix, app._route_parser.route_tree);

    self
  }

  /// Return the route parser for a given app
  pub fn get_route_parser(&self) -> &RouteParser<T> {
    &self._route_parser
  }

  /// Add a route that responds to `GET`s to a given path
  pub fn get(&mut self, path: &'static str, middlewares: MiddlewareChain<T>) -> &mut App<R, T> {
    self._route_parser.add_route(
      &_add_method_to_route(&Method::GET, path), middlewares);

    self
  }

  /// Add a route that responds to `OPTION`s to a given path
  pub fn options(&mut self, path: &'static str, middlewares: MiddlewareChain<T>) -> &mut App<R, T> {
    self._route_parser.add_route(
      &_add_method_to_route(&Method::OPTIONS, path), middlewares);

    self
  }

  /// Add a route that responds to `POST`s to a given path
  pub fn post(&mut self, path: &'static str, middlewares: MiddlewareChain<T>) -> &mut App<R, T> {
    self._route_parser.add_route(
      &_add_method_to_route(&Method::POST, path), middlewares);

    self
  }

  /// Add a route that responds to `PUT`s to a given path
  pub fn put(&mut self, path: &'static str, middlewares: MiddlewareChain<T>) -> &mut App<R, T> {
    self._route_parser.add_route(
      &_add_method_to_route(&Method::PUT, path), middlewares);

    self
  }

  /// Add a route that responds to `DELETE`s to a given path
  pub fn delete(&mut self, path: &'static str, middlewares: MiddlewareChain<T>) -> &mut App<R, T> {
    self._route_parser.add_route(
      &_add_method_to_route(&Method::DELETE, path), middlewares);

    self
  }

  /// Add a route that responds to `UPDATE`s to a given path
  pub fn update(&mut self, path: &'static str, middlewares: MiddlewareChain<T>) -> &mut App<R, T> {
    self._route_parser.add_route(
      &_add_method_to_route(&Method::UPDATE, path), middlewares);

    self
  }

  /// Sets the middleware if no route is successfully matched.
  pub fn set404(&mut self, middlewares: MiddlewareChain<T>) -> &mut App<R, T> {
    self._route_parser.add_route(
      &_add_method_to_route(&Method::GET, "/*"), middlewares.clone());
    self._route_parser.add_route(
      &_add_method_to_route(&Method::POST, "/*"), middlewares.clone());
    self._route_parser.add_route(
      &_add_method_to_route(&Method::PUT, "/*"), middlewares.clone());
    self._route_parser.add_route(
      &_add_method_to_route(&Method::UPDATE, "/*"), middlewares.clone());
    self._route_parser.add_route(
      &_add_method_to_route(&Method::DELETE, "/*"), middlewares);

    self
  }

  pub fn resolve_from_method_and_path(&self, method: &str, path: &str) -> MatchedRoute<T> {
    let path_with_method = &_add_method_to_route_from_str(method, path);

    self._route_parser.match_route(path_with_method)
  }

  /// Resolves a request, returning a future that is processable into a Response
  pub fn resolve(&self, request: R, matched_route: MatchedRoute<T>) -> impl FutureLegacy<Item=T::Response, Error=io::Error> + Send {
    self._resolve(request, matched_route)
  }

  #[cfg(feature = "thruster_async_await")]
  fn _resolve(&self, request: R, matched_route: MatchedRoute<T>) -> impl FutureLegacy<Item=T::Response, Error=io::Error> + Send {
    use thruster_async_await::resolve;

    resolve(self.context_generator, request, matched_route)
  }

  #[cfg(not(feature = "thruster_async_await"))]
  fn _resolve(&self, mut request: R, matched_route: MatchedRoute<T>) -> impl FutureLegacy<Item=T::Response, Error=io::Error> + Send {
    request.set_params(matched_route.params);

    let context = (self.context_generator)(request);
    let context_future = matched_route.middleware.run(context);

    context_future
        .and_then(|context| {
          future::ok(context.get_response())
        })
  }
}

#[cfg(test)]
mod tests {
  use super::*;
  use crate::testing;

  use futures::{future, Future};
  use std::boxed::Box;
  use std::io;
  use std::marker::Send;

  use thruster_core::request::Request;

  use thruster_core::middleware::{MiddlewareChain, MiddlewareReturnValue};

  use thruster_middleware::query_params;
  use thruster_middleware::cookies;
  use thruster_context::basic_context::BasicContext;

  #[test]
  fn it_should_execute_all_middlware_with_a_given_request() {
    let mut app = App::<Request, BasicContext>::new_basic();

    fn test_fn_1(mut context: BasicContext, _next: impl Fn(BasicContext) -> MiddlewareReturnValue<BasicContext>  + Send + Sync) -> Box<Future<Item=BasicContext, Error=io::Error> + Send> {
      context.body("1");
      Box::new(future::ok(context))
    };

    app.use_middleware("/", middleware![BasicContext => query_params::query_params]);
    app.get("/test", middleware![BasicContext => test_fn_1]);

    let response = testing::get(&app, "/test");

    assert!(response.body == "1");
  }

  #[test]
  fn it_should_correctly_differentiate_wildcards_and_valid_routes() {
    let mut app = App::<Request, BasicContext>::new_basic();

    fn test_fn_1(mut context: BasicContext, _next: impl Fn(BasicContext) -> MiddlewareReturnValue<BasicContext>  + Send + Sync) -> Box<Future<Item=BasicContext, Error=io::Error> + Send> {
      context.body("1");
      Box::new(future::ok(context))
    };

    fn test_fn_404(mut context: BasicContext, _next: impl Fn(BasicContext) -> MiddlewareReturnValue<BasicContext>  + Send + Sync) -> Box<Future<Item=BasicContext, Error=io::Error> + Send> {
      context.body("2");
      Box::new(future::ok(context))
    };


    app.get("/", middleware![BasicContext => test_fn_1]);
    app.get("/*", middleware![BasicContext => test_fn_404]);

    let response = testing::get(&app, "/");

    assert!(response.body == "1");
  }

  #[test]
  fn it_should_handle_query_parameters() {
    let mut app = App::<Request, BasicContext>::new_basic();

    fn test_fn_1(mut context: BasicContext, _next: impl Fn(BasicContext) -> MiddlewareReturnValue<BasicContext>  + Send + Sync) -> Box<Future<Item=BasicContext, Error=io::Error> + Send> {
      let body = &context.query_params.get("hello").unwrap().clone();

      context.body(body);
      Box::new(future::ok(context))
    };

    app.use_middleware("/", middleware![BasicContext => query_params::query_params]);
    app.get("/test", middleware![BasicContext => test_fn_1]);

    let response = testing::get(&app, "/test?hello=world");

    assert!(response.body == "world");
  }

  #[test]
  fn it_should_handle_cookies() {
    let mut app = App::<Request, BasicContext>::new_basic();

    fn test_fn_1(mut context: BasicContext, _next: impl Fn(BasicContext) -> MiddlewareReturnValue<BasicContext>  + Send + Sync) -> Box<Future<Item=BasicContext, Error=io::Error> + Send> {
      let body = match context.cookies.get(0) {
        Some(cookie) => {
          assert!(cookie.options.same_site.is_some());
          assert!(cookie.options.same_site.as_ref().unwrap() == &cookies::SameSite::Strict);
          cookie.value.clone()
        },
        None => "".to_owned()
      };

      context.body(&body);
      Box::new(future::ok(context))
    };

    app.use_middleware("/", middleware![BasicContext => cookies::cookies]);
    app.get("/test", middleware![BasicContext => test_fn_1]);

    let response = testing::request(&app, "GET", "/test", &vec![("Set-Cookie", "Hello=World; SameSite=Strict")], "");

    assert!(response.body == "World");
  }

  #[test]
  fn it_should_execute_all_middlware_with_a_given_request_with_params() {
    let mut app = App::<Request, BasicContext>::new_basic();

    fn test_fn_1(mut context: BasicContext, _next: impl Fn(BasicContext) -> MiddlewareReturnValue<BasicContext>  + Send + Sync) -> Box<Future<Item=BasicContext, Error=io::Error> + Send> {
      let body = &context.params.get("id").unwrap().clone();

      context.body(body);
      Box::new(future::ok(context))
    };

    app.get("/test/:id", middleware![BasicContext => test_fn_1]);

    let response = testing::get(&app, "/test/123");

    assert!(response.body == "123");
  }

  #[test]
  fn it_should_execute_all_middlware_with_a_given_request_with_params_in_a_subapp() {
    let mut app1 = App::<Request, BasicContext>::new_basic();

    fn test_fn_1(mut context: BasicContext, _next: impl Fn(BasicContext) -> MiddlewareReturnValue<BasicContext>  + Send + Sync) -> Box<Future<Item=BasicContext, Error=io::Error> + Send> {
      let body = &context.params.get("id").unwrap().clone();

      context.body(body);
      Box::new(future::ok(context))
    };

    app1.get("/:id", middleware![BasicContext => test_fn_1]);

    let mut app2 = App::<Request, BasicContext>::new_basic();
    app2.use_sub_app("/test", app1);

    let response = testing::get(&app2, "/test/123");

    assert!(response.body == "123");
  }

  #[test]
  fn it_should_correctly_parse_params_in_subapps() {
    let mut app1 = App::<Request, BasicContext>::new_basic();

    fn test_fn_1(mut context: BasicContext, _next: impl Fn(BasicContext) -> MiddlewareReturnValue<BasicContext>  + Send + Sync) -> Box<Future<Item=BasicContext, Error=io::Error> + Send> {
      let body = &context.params.get("id").unwrap().clone();

      context.body(body);
      Box::new(future::ok(context))
    };

    app1.get("/:id", middleware![BasicContext => test_fn_1]);

    let mut app2 = App::<Request, BasicContext>::new_basic();
    app2.use_sub_app("/test", app1);

    let response = testing::get(&app2, "/test/123");

    assert!(response.body == "123");
  }

  #[test]
  fn it_should_match_as_far_as_possible_in_a_subapp() {
    let mut app1 = App::<Request, BasicContext>::new_basic();

    fn test_fn_1(mut context: BasicContext, _next: impl Fn(BasicContext) -> MiddlewareReturnValue<BasicContext>  + Send + Sync) -> MiddlewareReturnValue<BasicContext> {
      let body = &context.params.get("id").unwrap().clone();

      context.body(body);
      Box::new(future::ok(context))
    };

    fn test_fn_2(mut context: BasicContext, _next: impl Fn(BasicContext) -> MiddlewareReturnValue<BasicContext>  + Send + Sync) -> MiddlewareReturnValue<BasicContext> {
      context.body("-1");
      Box::new(future::ok(context))
    }

    app1.get("/", middleware![BasicContext => test_fn_2]);
    app1.get("/:id", middleware![BasicContext => test_fn_1]);

    let mut app2 = App::<Request, BasicContext>::new_basic();
    app2.use_sub_app("/test", app1);

    let response = testing::get(&app2, "/test/123");

    assert!(response.body == "123");
  }

  #[test]
  fn it_should_trim_trailing_slashes() {
    let mut app1 = App::<Request, BasicContext>::new_basic();

    fn test_fn_1(mut context: BasicContext, _next: impl Fn(BasicContext) -> MiddlewareReturnValue<BasicContext>  + Send + Sync) -> MiddlewareReturnValue<BasicContext> {
      let body = &context.params.get("id").unwrap().clone();

      context.body(body);
      Box::new(future::ok(context))
    };

    fn test_fn_2(mut context: BasicContext, _next: impl Fn(BasicContext) -> MiddlewareReturnValue<BasicContext>  + Send + Sync) -> MiddlewareReturnValue<BasicContext> {
      context.body("-1");
      Box::new(future::ok(context))
    }

    app1.get("/:id", middleware![BasicContext => test_fn_1]);

    let mut app2 = App::<Request, BasicContext>::new_basic();
    app2.use_sub_app("/test", app1);
    app2.set404(middleware![BasicContext => test_fn_2]);

    let response = testing::get(&app2, "/test/");

    assert!(response.body == "-1");
  }

  #[test]
  fn it_should_trim_trailing_slashes_after_params() {
    let mut app = App::<Request, BasicContext>::new_basic();

    fn test_fn_1(mut context: BasicContext, _next: impl Fn(BasicContext) -> MiddlewareReturnValue<BasicContext>  + Send + Sync) -> MiddlewareReturnValue<BasicContext> {
      let body = &context.params.get("id").unwrap().clone();

      context.body(body);
      Box::new(future::ok(context))
    };

    app.get("/test/:id", middleware![BasicContext => test_fn_1]);

    let response = testing::get(&app, "/test/1/");

    assert!(response.body == "1");
  }

  #[test]
  fn it_should_execute_all_middlware_with_a_given_request_based_on_method() {
    let mut app = App::<Request, BasicContext>::new_basic();

    fn test_fn_1(mut context: BasicContext, _next: impl Fn(BasicContext) -> MiddlewareReturnValue<BasicContext>  + Send + Sync) -> Box<Future<Item=BasicContext, Error=io::Error> + Send> {
      let existing_body = context.get_body().clone();

      context.body(&format!("{}{}", existing_body, "1"));
      Box::new(future::ok(context))
    };

    fn test_fn_2(mut context: BasicContext, _next: impl Fn(BasicContext) -> MiddlewareReturnValue<BasicContext>  + Send + Sync) -> Box<Future<Item=BasicContext, Error=io::Error> + Send> {
      let existing_body = context.get_body().clone();

      context.body(&format!("{}{}", existing_body, "2"));
      Box::new(future::ok(context))
    };

    app.get("/test", middleware![BasicContext => test_fn_1]);
    app.post("/test", middleware![BasicContext => test_fn_2]);

    let response = testing::get(&app, "/test");

    assert!(response.body == "1");
  }

  #[test]
  fn it_should_execute_all_middlware_with_a_given_request_up_and_down() {
    let mut app = App::<Request, BasicContext>::new_basic();

    fn test_fn_1(mut context: BasicContext, _next: impl Fn(BasicContext) -> MiddlewareReturnValue<BasicContext>  + Send + Sync) -> Box<Future<Item=BasicContext, Error=io::Error> + Send> {
      let existing_body = context.get_body().clone();

      context.body(&format!("{}{}", existing_body, "1"));
      Box::new(future::ok(context))
    };

    fn test_fn_2(mut context: BasicContext, next: impl Fn(BasicContext) -> MiddlewareReturnValue<BasicContext>  + Send + Sync) -> Box<Future<Item=BasicContext, Error=io::Error> + Send> {
      let existing_body = context.get_body().clone();

      context.body(&format!("{}{}", existing_body, "2"));

      let context_with_body = next(context)
        .and_then(|mut _context| {
          let _existing_body = _context.get_body().clone();

          _context.body(&format!("{}{}", _existing_body, "2"));
          future::ok(_context)
        });

      Box::new(context_with_body)
    };

    app.get("/test", middleware![BasicContext => test_fn_2, BasicContext => test_fn_1]);

    let response = testing::get(&app, "/test");

    assert!(response.body == "212");
  }

  #[test]
  fn it_should_return_whatever_was_set_as_the_body_of_the_context() {
    let mut app = App::<Request, BasicContext>::new_basic();

    fn test_fn_1(mut context: BasicContext, _next: impl Fn(BasicContext) -> MiddlewareReturnValue<BasicContext>  + Send + Sync) -> Box<Future<Item=BasicContext, Error=io::Error> + Send> {
      context.body("Hello world");
      Box::new(future::ok(context))
    };

    app.get("/test", middleware![BasicContext => test_fn_1]);

    let response = testing::get(&app, "/test");

    assert!(response.body == "Hello world");
  }

  #[test]
  fn it_should_first_run_use_then_methods() {
    let mut app = App::<Request, BasicContext>::new_basic();

    fn method_agnostic(mut context: BasicContext, next: impl Fn(BasicContext) -> MiddlewareReturnValue<BasicContext>  + Send + Sync) -> Box<Future<Item=BasicContext, Error=io::Error> + Send> {
      context.body("agnostic");
      let updated_context = next(context);

      let body_with_copied_context = updated_context
          .and_then(|context| {
            future::ok(context)
          });

      Box::new(body_with_copied_context)
    }

    fn test_fn_1(mut context: BasicContext, _next: impl Fn(BasicContext) -> MiddlewareReturnValue<BasicContext>  + Send + Sync) -> Box<Future<Item=BasicContext, Error=io::Error> + Send> {
      let body = context.get_body().clone();

      context.body(&format!("{}-1", body));
      Box::new(future::ok(context))
    };

    app.use_middleware("/", middleware![BasicContext => method_agnostic]);
    app.get("/test", middleware![BasicContext => test_fn_1]);

    let response = testing::get(&app, "/test");

    assert!(response.body == "agnostic-1");
  }

  #[test]
  fn it_should_be_able_to_correctly_route_sub_apps() {
    let mut app1 = App::<Request, BasicContext>::new_basic();

    fn test_fn_1(mut context: BasicContext, _next: impl Fn(BasicContext) -> MiddlewareReturnValue<BasicContext>  + Send + Sync) -> Box<Future<Item=BasicContext, Error=io::Error> + Send> {
      context.body("1");
      Box::new(future::ok(context))
    };

    app1.get("/test", middleware![BasicContext => test_fn_1]);

    let mut app2 = App::<Request, BasicContext>::new_basic();
    app2.use_sub_app("/", app1);

    let response = testing::get(&app2, "/test");

    assert!(response.body == "1");
  }

  #[test]
  fn it_should_be_able_to_correctly_route_sub_apps_with_wildcards() {
    let mut app1 = App::<Request, BasicContext>::new_basic();

    fn test_fn_1(mut context: BasicContext, _next: impl Fn(BasicContext) -> MiddlewareReturnValue<BasicContext>  + Send + Sync) -> Box<Future<Item=BasicContext, Error=io::Error> + Send> {
      context.body("1");
      Box::new(future::ok(context))
    };

    app1.get("/*", middleware![BasicContext => test_fn_1]);

    let mut app2 = App::<Request, BasicContext>::new_basic();
    app2.use_sub_app("/", app1);

    let response = testing::get(&app2, "/a");

    assert!(response.body == "1");
  }

  #[test]
  fn it_should_be_able_to_correctly_prefix_route_sub_apps() {
    let mut app1 = App::<Request, BasicContext>::new_basic();

    fn test_fn_1(mut context: BasicContext, _next: impl Fn(BasicContext) -> MiddlewareReturnValue<BasicContext>  + Send + Sync) -> Box<Future<Item=BasicContext, Error=io::Error> + Send> {
      context.body("1");
      Box::new(future::ok(context))
    };

    app1.get("/test", middleware![BasicContext => test_fn_1]);

    let mut app2 = App::<Request, BasicContext>::new_basic();
    app2.use_sub_app("/sub", app1);

    let response = testing::get(&app2, "/sub/test");

    assert!(response.body == "1");
  }

  #[test]
  fn it_should_be_able_to_correctly_prefix_the_root_of_sub_apps() {
    let mut app1 = App::<Request, BasicContext>::new_basic();

    fn test_fn_1(mut context: BasicContext, _next: impl Fn(BasicContext) -> MiddlewareReturnValue<BasicContext>  + Send + Sync) -> Box<Future<Item=BasicContext, Error=io::Error> + Send> {
      context.body("1");
      Box::new(future::ok(context))
    };

    app1.get("/", middleware![BasicContext => test_fn_1]);

    let mut app2 = App::<Request, BasicContext>::new_basic();
    app2.use_sub_app("/sub", app1);

    let response = testing::get(&app2, "/sub");

    assert!(response.body == "1");
  }

  #[test]
  fn it_should_be_able_to_correctly_handle_not_found_routes() {
    let mut app = App::<Request, BasicContext>::new_basic();

    fn test_fn_1(mut context: BasicContext, _next: impl Fn(BasicContext) -> MiddlewareReturnValue<BasicContext>  + Send + Sync) -> Box<Future<Item=BasicContext, Error=io::Error> + Send> {
      context.body("1");
      Box::new(future::ok(context))
    };

    fn test_404(mut context: BasicContext, _next: impl Fn(BasicContext) -> MiddlewareReturnValue<BasicContext>  + Send + Sync) -> Box<Future<Item=BasicContext, Error=io::Error> + Send> {
      context.body("not found");
      Box::new(future::ok(context))
    };

    app.get("/", middleware![BasicContext => test_fn_1]);
    app.set404(middleware![BasicContext => test_404]);

    let response = testing::get(&app, "/not_found");

    assert!(response.body == "not found");
  }


  #[test]
  fn it_should_be_able_to_correctly_handle_not_found_at_the_root() {
    let mut app = App::<Request, BasicContext>::new_basic();

    fn test_fn_1(mut context: BasicContext, _next: impl Fn(BasicContext) -> MiddlewareReturnValue<BasicContext>  + Send + Sync) -> Box<Future<Item=BasicContext, Error=io::Error> + Send> {
      context.body("1");
      Box::new(future::ok(context))
    };

    fn test_404(mut context: BasicContext, _next: impl Fn(BasicContext) -> MiddlewareReturnValue<BasicContext>  + Send + Sync) -> Box<Future<Item=BasicContext, Error=io::Error> + Send> {
      context.body("not found");
      Box::new(future::ok(context))
    };

    app.get("/a", middleware![BasicContext => test_fn_1]);
    app.set404(middleware![BasicContext => test_404]);

    let response = testing::get(&app, "/");

    assert!(response.body == "not found");
  }

  #[test]
  fn it_should_be_able_to_correctly_handle_deep_not_found_routes() {
    let mut app = App::<Request, BasicContext>::new_basic();

    fn test_fn_1(mut context: BasicContext, _next: impl Fn(BasicContext) -> MiddlewareReturnValue<BasicContext>  + Send + Sync) -> Box<Future<Item=BasicContext, Error=io::Error> + Send> {
      context.body("1");
      Box::new(future::ok(context))
    };

    fn test_404(mut context: BasicContext, _next: impl Fn(BasicContext) -> MiddlewareReturnValue<BasicContext>  + Send + Sync) -> Box<Future<Item=BasicContext, Error=io::Error> + Send> {
      context.body("not found");
      Box::new(future::ok(context))
    };

    app.get("/a/b", middleware![BasicContext => test_fn_1]);
    app.set404(middleware![BasicContext => test_404]);

    let response = testing::get(&app, "/a/not_found/");

    assert!(response.body == "not found");
  }

  #[test]
  fn it_should_be_able_to_correctly_handle_deep_not_found_routes_after_paramaterized_routes() {
    let mut app = App::<Request, BasicContext>::new_basic();

    fn test_fn_1(mut context: BasicContext, _next: impl Fn(BasicContext) -> MiddlewareReturnValue<BasicContext>  + Send + Sync) -> Box<Future<Item=BasicContext, Error=io::Error> + Send> {
      context.body("1");
      Box::new(future::ok(context))
    };

    fn test_404(mut context: BasicContext, _next: impl Fn(BasicContext) -> MiddlewareReturnValue<BasicContext>  + Send + Sync) -> Box<Future<Item=BasicContext, Error=io::Error> + Send> {
      context.body("not found");
      Box::new(future::ok(context))
    };

    app.get("/a/:b/c", middleware![BasicContext => test_fn_1]);
    app.set404(middleware![BasicContext => test_404]);

    let response = testing::get(&app, "/a/1/d");

    assert!(response.body == "not found");
  }

  #[test]
  fn it_should_be_able_to_correctly_handle_deep_not_found_routes_after_paramaterized_routes_with_extra_pieces() {
    let mut app = App::<Request, BasicContext>::new_basic();

    fn test_fn_1(mut context: BasicContext, _next: impl Fn(BasicContext) -> MiddlewareReturnValue<BasicContext>  + Send + Sync) -> Box<Future<Item=BasicContext, Error=io::Error> + Send> {
      context.body("1");
      Box::new(future::ok(context))
    };

    fn test_404(mut context: BasicContext, _next: impl Fn(BasicContext) -> MiddlewareReturnValue<BasicContext>  + Send + Sync) -> Box<Future<Item=BasicContext, Error=io::Error> + Send> {
      context.body("not found");
      Box::new(future::ok(context))
    };

    app.get("/a/:b/c", middleware![BasicContext => test_fn_1]);
    app.set404(middleware![BasicContext => test_404]);

    let response = testing::get(&app, "/a/1/d/e/f/g");

    assert!(response.body == "not found");
  }

#[test]
  fn it_should_be_able_to_correctly_handle_deep_not_found_routes_after_root_route() {
    let mut app1 = App::<Request, BasicContext>::new_basic();
    let mut app2 = App::<Request, BasicContext>::new_basic();
    let mut app3 = App::<Request, BasicContext>::new_basic();

    fn test_fn_1(mut context: BasicContext, _next: impl Fn(BasicContext) -> MiddlewareReturnValue<BasicContext>  + Send + Sync) -> Box<Future<Item=BasicContext, Error=io::Error> + Send> {
      context.body("1");
      Box::new(future::ok(context))
    };

    fn test_404(mut context: BasicContext, _next: impl Fn(BasicContext) -> MiddlewareReturnValue<BasicContext>  + Send + Sync) -> Box<Future<Item=BasicContext, Error=io::Error> + Send> {
      context.body("not found");
      Box::new(future::ok(context))
    };

    app1.get("/", middleware![BasicContext => test_fn_1]);
    app2.get("*", middleware![BasicContext => test_404]);
    app3.use_sub_app("/", app2);
    app3.use_sub_app("/a", app1);

    let response = testing::get(&app3, "/a/1/d");

    assert!(response.body == "not found");
  }

  #[test]
  fn it_should_handle_routes_without_leading_slash() {
    let mut app = App::<Request, BasicContext>::new_basic();

    fn test_fn_1(mut context: BasicContext, _next: impl Fn(BasicContext) -> MiddlewareReturnValue<BasicContext>  + Send + Sync) -> Box<Future<Item=BasicContext, Error=io::Error> + Send> {
      context.body("1");
      Box::new(future::ok(context))
    };

    app.get("*", middleware![BasicContext => test_fn_1]);

    let response = testing::get(&app, "/a/1/d/e/f/g");

    assert!(response.body == "1");
  }

  #[test]
  fn it_should_handle_routes_within_a_subapp_without_leading_slash() {
    let mut app1 = App::<Request, BasicContext>::new_basic();
    let mut app2 = App::<Request, BasicContext>::new_basic();

    fn test_fn_1(mut context: BasicContext, _next: impl Fn(BasicContext) -> MiddlewareReturnValue<BasicContext>  + Send + Sync) -> Box<Future<Item=BasicContext, Error=io::Error> + Send> {
      context.body("1");
      Box::new(future::ok(context))
    };

    app1.get("*", middleware![BasicContext => test_fn_1]);
    app2.use_sub_app("/", app1);

    let response = testing::get(&app2, "/a/1/d/e/f/g");

    assert!(response.body == "1");
  }

  #[test]
  fn it_should_handle_multiple_subapps_with_wildcards() {
    let mut app1 = App::<Request, BasicContext>::new_basic();
    let mut app2 = App::<Request, BasicContext>::new_basic();
    let mut app3 = App::<Request, BasicContext>::new_basic();

    fn test_fn_1(mut context: BasicContext, _next: impl Fn(BasicContext) -> MiddlewareReturnValue<BasicContext>  + Send + Sync) -> Box<Future<Item=BasicContext, Error=io::Error> + Send> {
      context.body("1");
      Box::new(future::ok(context))
    };

    fn test_fn_2(mut context: BasicContext, _next: impl Fn(BasicContext) -> MiddlewareReturnValue<BasicContext>  + Send + Sync) -> Box<Future<Item=BasicContext, Error=io::Error> + Send> {
      context.body("2");
      Box::new(future::ok(context))
    };

    app1.get("/*", middleware![BasicContext => test_fn_1]);
    app2.get("/*", middleware![BasicContext => test_fn_2]);
    app3.use_sub_app("/", app1);
    app3.use_sub_app("/a/b", app2);

    let response = testing::get(&app3, "/a/1/d/e/f/g");

    assert!(response.body == "1");
  }
}