mirror of
				https://github.com/caddyserver/caddy.git
				synced 2025-10-31 10:37:24 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			320 lines
		
	
	
		
			7.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			320 lines
		
	
	
		
			7.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package integration
 | |
| 
 | |
| import (
 | |
| 	"testing"
 | |
| 
 | |
| 	"github.com/caddyserver/caddy/v2/caddytest"
 | |
| )
 | |
| 
 | |
| func TestDefaultSNI(t *testing.T) {
 | |
| 
 | |
| 	// arrange
 | |
| 	tester := caddytest.NewTester(t)
 | |
| 	tester.InitServer(`{
 | |
|     "apps": {
 | |
|       "http": {
 | |
|         "http_port": 9080,
 | |
|         "https_port": 9443,
 | |
|         "servers": {
 | |
|           "srv0": {
 | |
|             "listen": [
 | |
|               ":9443"
 | |
|             ],
 | |
|             "routes": [
 | |
|               {
 | |
|                 "handle": [
 | |
|                   {
 | |
|                     "handler": "subroute",
 | |
|                     "routes": [
 | |
|                       {
 | |
|                         "handle": [
 | |
|                           {
 | |
|                             "body": "hello from a.caddy.localhost",
 | |
|                             "handler": "static_response",
 | |
|                             "status_code": 200
 | |
|                           }
 | |
|                         ],
 | |
|                         "match": [
 | |
|                           {
 | |
|                             "path": [
 | |
|                               "/version"
 | |
|                             ]
 | |
|                           }
 | |
|                         ]
 | |
|                       }
 | |
|                     ]
 | |
|                   }
 | |
|                 ],
 | |
|                 "match": [
 | |
|                   {
 | |
|                     "host": [
 | |
|                       "127.0.0.1"
 | |
|                     ]
 | |
|                   }
 | |
|                 ],
 | |
|                 "terminal": true
 | |
|               }
 | |
|             ],
 | |
|             "tls_connection_policies": [
 | |
|               {
 | |
|                 "certificate_selection": {
 | |
|                   "any_tag": ["cert0"]
 | |
|                 },
 | |
|                 "match": {
 | |
|                   "sni": [
 | |
|                     "127.0.0.1"
 | |
|                   ]
 | |
|                 }
 | |
|               },
 | |
|               {
 | |
|                 "default_sni": "*.caddy.localhost"
 | |
|               }
 | |
|             ]
 | |
|           }
 | |
|         }
 | |
|       },
 | |
|       "tls": {
 | |
|         "certificates": {
 | |
|           "load_files": [
 | |
|             {
 | |
|               "certificate": "/caddy.localhost.crt",
 | |
|               "key": "/caddy.localhost.key",
 | |
|               "tags": [
 | |
|                 "cert0"
 | |
|               ]
 | |
|             }
 | |
|           ]
 | |
|         }
 | |
|       },
 | |
|       "pki": {
 | |
|         "certificate_authorities" : {
 | |
|           "local" : {
 | |
|             "install_trust": false
 | |
|           }
 | |
|         }
 | |
|       }
 | |
|     }
 | |
|   }
 | |
|   `, "json")
 | |
| 
 | |
| 	// act and assert
 | |
| 	// makes a request with no sni
 | |
| 	tester.AssertGetResponse("https://127.0.0.1:9443/version", 200, "hello from a.caddy.localhost")
 | |
| }
 | |
| 
 | |
| func TestDefaultSNIWithNamedHostAndExplicitIP(t *testing.T) {
 | |
| 
 | |
| 	// arrange
 | |
| 	tester := caddytest.NewTester(t)
 | |
| 	tester.InitServer(` 
 | |
|   {
 | |
|     "apps": {
 | |
|       "http": {
 | |
|         "http_port": 9080,
 | |
|         "https_port": 9443,
 | |
|         "servers": {
 | |
|           "srv0": {
 | |
|             "listen": [
 | |
|               ":9443"
 | |
|             ],
 | |
|             "routes": [
 | |
|               {
 | |
|                 "handle": [
 | |
|                   {
 | |
|                     "handler": "subroute",
 | |
|                     "routes": [
 | |
|                       {
 | |
|                         "handle": [
 | |
|                           {
 | |
|                             "body": "hello from a",
 | |
|                             "handler": "static_response",
 | |
|                             "status_code": 200
 | |
|                           }
 | |
|                         ],
 | |
|                         "match": [
 | |
|                           {
 | |
|                             "path": [
 | |
|                               "/version"
 | |
|                             ]
 | |
|                           }
 | |
|                         ]
 | |
|                       }
 | |
|                     ]
 | |
|                   }
 | |
|                 ],
 | |
|                 "match": [
 | |
|                   {
 | |
|                     "host": [
 | |
|                       "a.caddy.localhost",
 | |
|                       "127.0.0.1"
 | |
|                     ]
 | |
|                   }
 | |
|                 ],
 | |
|                 "terminal": true
 | |
|               }
 | |
|             ],
 | |
|             "tls_connection_policies": [
 | |
|               {
 | |
|                 "certificate_selection": {
 | |
|                   "any_tag": ["cert0"]
 | |
|                 },
 | |
|                 "default_sni": "a.caddy.localhost",
 | |
|                 "match": {
 | |
|                   "sni": [
 | |
|                     "a.caddy.localhost",
 | |
|                     "127.0.0.1",
 | |
|                     ""
 | |
|                   ]
 | |
|                 }
 | |
|               },
 | |
|               {
 | |
|                 "default_sni": "a.caddy.localhost"
 | |
|               }
 | |
|             ]
 | |
|           }
 | |
|         }
 | |
|       },
 | |
|       "tls": {
 | |
|         "certificates": {
 | |
|           "load_files": [
 | |
|             {
 | |
|               "certificate": "/a.caddy.localhost.crt",
 | |
|               "key": "/a.caddy.localhost.key",
 | |
|               "tags": [
 | |
|                 "cert0"
 | |
|               ]
 | |
|             }
 | |
|           ]
 | |
|         }
 | |
|       },
 | |
|       "pki": {
 | |
|         "certificate_authorities" : {
 | |
|           "local" : {
 | |
|             "install_trust": false
 | |
|           }
 | |
|         }
 | |
|       }
 | |
|     }
 | |
|   }
 | |
|   `, "json")
 | |
| 
 | |
| 	// act and assert
 | |
| 	// makes a request with no sni
 | |
| 	tester.AssertGetResponse("https://127.0.0.1:9443/version", 200, "hello from a")
 | |
| }
 | |
| 
 | |
| func TestDefaultSNIWithPortMappingOnly(t *testing.T) {
 | |
| 	// arrange
 | |
| 	tester := caddytest.NewTester(t)
 | |
| 	tester.InitServer(` 
 | |
|   {
 | |
|     "apps": {
 | |
|       "http": {
 | |
|         "http_port": 9080,
 | |
|         "https_port": 9443,
 | |
|         "servers": {
 | |
|           "srv0": {
 | |
|             "listen": [
 | |
|               ":9443"
 | |
|             ],
 | |
|             "routes": [
 | |
|               {
 | |
|                 "handle": [
 | |
|                   {
 | |
|                     "body": "hello from a.caddy.localhost",
 | |
|                     "handler": "static_response",
 | |
|                     "status_code": 200
 | |
|                   }
 | |
|                 ],
 | |
|                 "match": [
 | |
|                   {
 | |
|                     "path": [
 | |
|                       "/version"
 | |
|                     ]
 | |
|                   }
 | |
|                 ]
 | |
|               }
 | |
|             ],
 | |
|             "tls_connection_policies": [
 | |
|               {
 | |
|                 "certificate_selection": {
 | |
|                   "any_tag": ["cert0"]
 | |
|                 },
 | |
|                 "default_sni": "a.caddy.localhost"
 | |
|               }
 | |
|             ]
 | |
|           }
 | |
|         }
 | |
|       },
 | |
|       "tls": {
 | |
|         "certificates": {
 | |
|           "load_files": [
 | |
|             {
 | |
|               "certificate": "/a.caddy.localhost.crt",
 | |
|               "key": "/a.caddy.localhost.key",
 | |
|               "tags": [
 | |
|                 "cert0"
 | |
|               ]
 | |
|             }
 | |
|           ]
 | |
|         }
 | |
|       },
 | |
|       "pki": {
 | |
|         "certificate_authorities" : {
 | |
|           "local" : {
 | |
|             "install_trust": false
 | |
|           }
 | |
|         }
 | |
|       }
 | |
|     }
 | |
|   }
 | |
|   `, "json")
 | |
| 
 | |
| 	// act and assert
 | |
| 	// makes a request with no sni
 | |
| 	tester.AssertGetResponse("https://127.0.0.1:9443/version", 200, "hello from a.caddy.localhost")
 | |
| }
 | |
| 
 | |
| func TestHttpOnlyOnDomainWithSNI(t *testing.T) {
 | |
| 	caddytest.AssertAdapt(t, `
 | |
| 	{
 | |
| 		default_sni a.caddy.localhost
 | |
| 	}
 | |
| 	:80 {
 | |
| 		respond /version 200 {
 | |
| 			body "hello from localhost"
 | |
| 		}
 | |
| 	}
 | |
| 	`, "caddyfile", `{
 | |
| 	"apps": {
 | |
| 		"http": {
 | |
| 			"servers": {
 | |
| 				"srv0": {
 | |
| 					"listen": [
 | |
| 						":80"
 | |
| 					],
 | |
| 					"routes": [
 | |
| 						{
 | |
| 							"match": [
 | |
| 								{
 | |
| 									"path": [
 | |
| 										"/version"
 | |
| 									]
 | |
| 								}
 | |
| 							],
 | |
| 							"handle": [
 | |
| 								{
 | |
| 									"body": "hello from localhost",
 | |
| 									"handler": "static_response",
 | |
| 									"status_code": 200
 | |
| 								}
 | |
| 							]
 | |
| 						}
 | |
| 					]
 | |
| 				}
 | |
| 			}
 | |
| 		}
 | |
| 	}
 | |
| }`)
 | |
| }
 |