mirror of
				https://github.com/caddyserver/caddy.git
				synced 2025-10-31 18:47:20 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			216 lines
		
	
	
		
			5.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			216 lines
		
	
	
		
			5.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package caddytls
 | |
| 
 | |
| import (
 | |
| 	"crypto/tls"
 | |
| 	"errors"
 | |
| 	"net/url"
 | |
| 	"reflect"
 | |
| 	"testing"
 | |
| 
 | |
| 	"github.com/codahale/aesnicheck"
 | |
| )
 | |
| 
 | |
| func TestConvertTLSConfigProtocolVersions(t *testing.T) {
 | |
| 	// same min and max protocol versions
 | |
| 	config := &Config{
 | |
| 		Enabled:            true,
 | |
| 		ProtocolMinVersion: tls.VersionTLS12,
 | |
| 		ProtocolMaxVersion: tls.VersionTLS12,
 | |
| 	}
 | |
| 	err := config.buildStandardTLSConfig()
 | |
| 	if err != nil {
 | |
| 		t.Fatalf("Did not expect an error, but got %v", err)
 | |
| 	}
 | |
| 	if got, want := config.tlsConfig.MinVersion, uint16(tls.VersionTLS12); got != want {
 | |
| 		t.Errorf("Expected min version to be %x, got %x", want, got)
 | |
| 	}
 | |
| 	if got, want := config.tlsConfig.MaxVersion, uint16(tls.VersionTLS12); got != want {
 | |
| 		t.Errorf("Expected max version to be %x, got %x", want, got)
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestConvertTLSConfigPreferServerCipherSuites(t *testing.T) {
 | |
| 	// prefer server cipher suites
 | |
| 	config := Config{Enabled: true, PreferServerCipherSuites: true}
 | |
| 	err := config.buildStandardTLSConfig()
 | |
| 	if err != nil {
 | |
| 		t.Fatalf("Did not expect an error, but got %v", err)
 | |
| 	}
 | |
| 	if got, want := config.tlsConfig.PreferServerCipherSuites, true; got != want {
 | |
| 		t.Errorf("Expected PreferServerCipherSuites==%v but got %v", want, got)
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestMakeTLSConfigTLSEnabledDisabledError(t *testing.T) {
 | |
| 	// verify handling when Enabled is true and false
 | |
| 	configs := []*Config{
 | |
| 		{Enabled: true},
 | |
| 		{Enabled: false},
 | |
| 	}
 | |
| 	_, err := MakeTLSConfig(configs)
 | |
| 	if err == nil {
 | |
| 		t.Fatalf("Expected an error, but got %v", err)
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestConvertTLSConfigCipherSuites(t *testing.T) {
 | |
| 	// ensure cipher suites are unioned and
 | |
| 	// that TLS_FALLBACK_SCSV is prepended
 | |
| 	configs := []*Config{
 | |
| 		{Enabled: true, Ciphers: []uint16{0xc02c, 0xc030}},
 | |
| 		{Enabled: true, Ciphers: []uint16{0xc012, 0xc030, 0xc00a}},
 | |
| 		{Enabled: true, Ciphers: nil},
 | |
| 	}
 | |
| 
 | |
| 	defaultCiphersExpected := getPreferredDefaultCiphers()
 | |
| 	expectedCiphers := [][]uint16{
 | |
| 		{tls.TLS_FALLBACK_SCSV, 0xc02c, 0xc030},
 | |
| 		{tls.TLS_FALLBACK_SCSV, 0xc012, 0xc030, 0xc00a},
 | |
| 		append([]uint16{tls.TLS_FALLBACK_SCSV}, defaultCiphersExpected...),
 | |
| 	}
 | |
| 
 | |
| 	for i, config := range configs {
 | |
| 		err := config.buildStandardTLSConfig()
 | |
| 		if err != nil {
 | |
| 			t.Errorf("Test %d: Expected no error, got: %v", i, err)
 | |
| 		}
 | |
| 		if !reflect.DeepEqual(config.tlsConfig.CipherSuites, expectedCiphers[i]) {
 | |
| 			t.Errorf("Test %d: Expected ciphers %v but got %v",
 | |
| 				i, expectedCiphers[i], config.tlsConfig.CipherSuites)
 | |
| 		}
 | |
| 
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestGetPreferredDefaultCiphers(t *testing.T) {
 | |
| 	expectedCiphers := defaultCiphers
 | |
| 	if !aesnicheck.HasAESNI() {
 | |
| 		expectedCiphers = defaultCiphersNonAESNI
 | |
| 	}
 | |
| 
 | |
| 	// Ensure ordering is correct and ciphers are what we expected.
 | |
| 	result := getPreferredDefaultCiphers()
 | |
| 	for i, actual := range result {
 | |
| 		if actual != expectedCiphers[i] {
 | |
| 			t.Errorf("Expected cipher in position %d to be %0x, got %0x", i, expectedCiphers[i], actual)
 | |
| 		}
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestStorageForNoURL(t *testing.T) {
 | |
| 	c := &Config{}
 | |
| 	if _, err := c.StorageFor(""); err == nil {
 | |
| 		t.Fatal("Expected error on empty URL")
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestStorageForLowercasesAndPrefixesScheme(t *testing.T) {
 | |
| 	resultStr := ""
 | |
| 	RegisterStorageProvider("fake-TestStorageForLowercasesAndPrefixesScheme", func(caURL *url.URL) (Storage, error) {
 | |
| 		resultStr = caURL.String()
 | |
| 		return nil, nil
 | |
| 	})
 | |
| 	c := &Config{
 | |
| 		StorageProvider: "fake-TestStorageForLowercasesAndPrefixesScheme",
 | |
| 	}
 | |
| 	if _, err := c.StorageFor("EXAMPLE.COM/BLAH"); err != nil {
 | |
| 		t.Fatal(err)
 | |
| 	}
 | |
| 	if resultStr != "https://example.com/blah" {
 | |
| 		t.Fatalf("Unexpected CA URL string: %v", resultStr)
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestStorageForBadURL(t *testing.T) {
 | |
| 	c := &Config{}
 | |
| 	if _, err := c.StorageFor("http://192.168.0.%31/"); err == nil {
 | |
| 		t.Fatal("Expected error for bad URL")
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestStorageForDefault(t *testing.T) {
 | |
| 	c := &Config{}
 | |
| 	s, err := c.StorageFor("example.com")
 | |
| 	if err != nil {
 | |
| 		t.Fatal(err)
 | |
| 	}
 | |
| 	if _, ok := s.(*FileStorage); !ok {
 | |
| 		t.Fatalf("Unexpected storage type: %#v", s)
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestStorageForCustom(t *testing.T) {
 | |
| 	storage := fakeStorage("fake-TestStorageForCustom")
 | |
| 	RegisterStorageProvider("fake-TestStorageForCustom", func(caURL *url.URL) (Storage, error) { return storage, nil })
 | |
| 	c := &Config{
 | |
| 		StorageProvider: "fake-TestStorageForCustom",
 | |
| 	}
 | |
| 	s, err := c.StorageFor("example.com")
 | |
| 	if err != nil {
 | |
| 		t.Fatal(err)
 | |
| 	}
 | |
| 	if s != storage {
 | |
| 		t.Fatal("Unexpected storage")
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestStorageForCustomError(t *testing.T) {
 | |
| 	RegisterStorageProvider("fake-TestStorageForCustomError", func(caURL *url.URL) (Storage, error) { return nil, errors.New("some error") })
 | |
| 	c := &Config{
 | |
| 		StorageProvider: "fake-TestStorageForCustomError",
 | |
| 	}
 | |
| 	if _, err := c.StorageFor("example.com"); err == nil {
 | |
| 		t.Fatal("Expecting error")
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestStorageForCustomNil(t *testing.T) {
 | |
| 	// Should fall through to the default
 | |
| 	c := &Config{StorageProvider: ""}
 | |
| 	s, err := c.StorageFor("example.com")
 | |
| 	if err != nil {
 | |
| 		t.Fatal(err)
 | |
| 	}
 | |
| 	if _, ok := s.(*FileStorage); !ok {
 | |
| 		t.Fatalf("Unexpected storage type: %#v", s)
 | |
| 	}
 | |
| }
 | |
| 
 | |
| type fakeStorage string
 | |
| 
 | |
| func (s fakeStorage) SiteExists(domain string) (bool, error) {
 | |
| 	panic("no impl")
 | |
| }
 | |
| 
 | |
| func (s fakeStorage) LoadSite(domain string) (*SiteData, error) {
 | |
| 	panic("no impl")
 | |
| }
 | |
| 
 | |
| func (s fakeStorage) StoreSite(domain string, data *SiteData) error {
 | |
| 	panic("no impl")
 | |
| }
 | |
| 
 | |
| func (s fakeStorage) DeleteSite(domain string) error {
 | |
| 	panic("no impl")
 | |
| }
 | |
| 
 | |
| func (s fakeStorage) TryLock(domain string) (Waiter, error) {
 | |
| 	panic("no impl")
 | |
| }
 | |
| 
 | |
| func (s fakeStorage) Unlock(domain string) error {
 | |
| 	panic("no impl")
 | |
| }
 | |
| 
 | |
| func (s fakeStorage) LoadUser(email string) (*UserData, error) {
 | |
| 	panic("no impl")
 | |
| }
 | |
| 
 | |
| func (s fakeStorage) StoreUser(email string, data *UserData) error {
 | |
| 	panic("no impl")
 | |
| }
 | |
| 
 | |
| func (s fakeStorage) MostRecentUserEmail() string {
 | |
| 	panic("no impl")
 | |
| }
 |