mirror of
				https://github.com/caddyserver/caddy.git
				synced 2025-10-31 02:27:19 -04:00 
			
		
		
		
	* Replace placeholders with regex groups * using Matcher methods * test added * linting fix * Revert "linting fix" This reverts commit cafd7296f43639bbcd2601bea79a47f60763a200. * Revert "test added" This reverts commit 3a76cc7b0bc5dcef15ca5c8ec22efcd4067d484c. * Revert "using Matcher methods" This reverts commit cc34337b8ebb61d40ec343cee0fc225a694d3db6. * tests added
		
			
				
	
	
		
			137 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			137 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package integration
 | |
| 
 | |
| import (
 | |
| 	"bytes"
 | |
| 	"testing"
 | |
| 
 | |
| 	"github.com/caddyserver/caddy/v2/caddytest"
 | |
| )
 | |
| 
 | |
| func TestMap(t *testing.T) {
 | |
| 	// arrange
 | |
| 	tester := caddytest.NewTester(t)
 | |
| 	tester.InitServer(`{
 | |
| 		http_port     9080
 | |
| 		https_port    9443
 | |
| 	}
 | |
| 
 | |
| 	localhost:9080 {
 | |
| 
 | |
| 		map {http.request.method} {dest-1} {dest-2} {
 | |
| 			default unknown1    unknown2
 | |
| 			~G(.)(.)    G${1}${2}-called
 | |
| 			POST    post-called foobar
 | |
| 		}
 | |
| 
 | |
| 		respond /version 200 {
 | |
| 			body "hello from localhost {dest-1} {dest-2}"
 | |
| 		}	
 | |
| 	}
 | |
| 	`, "caddyfile")
 | |
| 
 | |
| 	// act and assert
 | |
| 	tester.AssertGetResponse("http://localhost:9080/version", 200, "hello from localhost GET-called unknown2")
 | |
| 	tester.AssertPostResponseBody("http://localhost:9080/version", []string{}, bytes.NewBuffer([]byte{}), 200, "hello from localhost post-called foobar")
 | |
| }
 | |
| 
 | |
| func TestMapRespondWithDefault(t *testing.T) {
 | |
| 	// arrange
 | |
| 	tester := caddytest.NewTester(t)
 | |
| 	tester.InitServer(`{
 | |
| 		http_port     9080
 | |
| 		https_port    9443
 | |
| 		}
 | |
| 		
 | |
| 		localhost:9080 {
 | |
| 	
 | |
| 			map {http.request.method} {dest-name} {
 | |
| 				default unknown
 | |
| 				GET     get-called
 | |
| 			}
 | |
| 		
 | |
| 			respond /version 200 {
 | |
| 				body "hello from localhost {dest-name}"
 | |
| 			}	
 | |
| 		}
 | |
| 	`, "caddyfile")
 | |
| 
 | |
| 	// act and assert
 | |
| 	tester.AssertGetResponse("http://localhost:9080/version", 200, "hello from localhost get-called")
 | |
| 	tester.AssertPostResponseBody("http://localhost:9080/version", []string{}, bytes.NewBuffer([]byte{}), 200, "hello from localhost unknown")
 | |
| }
 | |
| 
 | |
| func TestMapAsJson(t *testing.T) {
 | |
| 	// arrange
 | |
| 	tester := caddytest.NewTester(t)
 | |
| 	tester.InitServer(`
 | |
| 	{
 | |
| 		"apps": {
 | |
| 			"http": {
 | |
| 				"http_port": 9080,
 | |
| 				"https_port": 9443,
 | |
| 				"servers": {
 | |
| 					"srv0": {
 | |
| 						"listen": [
 | |
| 							":9080"
 | |
| 						],
 | |
| 						"routes": [
 | |
| 							{
 | |
| 								"handle": [
 | |
| 									{
 | |
| 										"handler": "subroute",
 | |
| 										"routes": [
 | |
| 											{
 | |
| 												"handle": [
 | |
| 													{
 | |
| 														"handler": "map",
 | |
| 														"source": "{http.request.method}",
 | |
| 														"destinations": ["dest-name"],
 | |
| 														"defaults": ["unknown"],
 | |
| 														"mappings": [
 | |
| 															{
 | |
| 																"input": "GET",
 | |
| 																"outputs": ["get-called"]
 | |
| 															},
 | |
| 															{
 | |
| 																"input": "POST",
 | |
| 																"outputs": ["post-called"]
 | |
| 															}
 | |
| 														]
 | |
| 													}
 | |
| 												]
 | |
| 											},
 | |
| 											{
 | |
| 												"handle": [
 | |
| 													{
 | |
| 														"body": "hello from localhost {dest-name}",
 | |
| 														"handler": "static_response",
 | |
| 														"status_code": 200
 | |
| 													}
 | |
| 												],
 | |
| 												"match": [
 | |
| 													{
 | |
| 														"path": ["/version"]
 | |
| 													}
 | |
| 												]
 | |
| 											}
 | |
| 										]
 | |
| 									}
 | |
| 								],
 | |
| 								"match": [
 | |
| 									{
 | |
| 										"host": ["localhost"]
 | |
| 									}
 | |
| 								],
 | |
| 								"terminal": true
 | |
| 							}
 | |
| 						]
 | |
| 					}
 | |
| 				}
 | |
| 			}
 | |
| 		}
 | |
| 	}`, "json")
 | |
| 
 | |
| 	tester.AssertGetResponse("http://localhost:9080/version", 200, "hello from localhost get-called")
 | |
| 	tester.AssertPostResponseBody("http://localhost:9080/version", []string{}, bytes.NewBuffer([]byte{}), 200, "hello from localhost post-called")
 | |
| }
 |