Added more tests for URI's without a parameter
[demos/testing] / src / main / java / de / juplo / demo / HtmlController.java
index eaa2fcc..ec5919c 100644 (file)
@@ -5,6 +5,7 @@ import org.springframework.stereotype.Controller;
 import org.springframework.ui.Model;
 import org.springframework.web.bind.annotation.GetMapping;
 import org.springframework.web.bind.annotation.RequestParam;
+import reactor.core.publisher.Mono;
 
 
 /**
@@ -23,10 +24,16 @@ public class HtmlController
   }
 
 
-  @GetMapping("/")
-  public String fetch(Model model, @RequestParam String path)
+  @GetMapping({ "", "/" })
+  public String fetch(Model model, @RequestParam(required = false) String path)
   {
-    model.addAttribute("text", service.getRemoteText(path));
-    return "layout";
+    model.addAttribute(
+        "text",
+        path == null
+            ? ""
+            : service
+                  .getRemoteText(path)
+                  .onErrorResume(t -> Mono.just(t.getMessage())));
+    return "home";
   }
 }