// Copyright 2015 Light Code Labs, LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package caddytls import "testing" // *********************************** NOTE ******************************** // Due to circular package dependencies with the storagetest sub package and // the fact that we want to use that harness to test file storage, most of // the tests for file storage are done in the storagetest package. func TestPathBuilders(t *testing.T) { fs := FileStorage{Path: "/test"} for i, testcase := range []struct { in, folder, certFile, keyFile, metaFile string }{ { in: "example.com", folder: "/test/sites/example.com", certFile: "/test/sites/example.com/example.com.crt", keyFile: "/test/sites/example.com/example.com.key", metaFile: "/test/sites/example.com/example.com.json", }, { in: "*.example.com", folder: "/test/sites/wildcard_.example.com", certFile: "/test/sites/wildcard_.example.com/wildcard_.example.com.crt", keyFile: "/test/sites/wildcard_.example.com/wildcard_.example.com.key", metaFile: "/test/sites/wildcard_.example.com/wildcard_.example.com.json", }, { // prevent directory traversal! very important, esp. with on-demand TLS // see issue #2092 in: "a/../../../foo", folder: "/test/sites/afoo", certFile: "/test/sites/afoo/afoo.crt", keyFile: "/test/sites/afoo/afoo.key", metaFile: "/test/sites/afoo/afoo.json", }, } { if actual := fs.site(testcase.in); actual != testcase.folder { t.Errorf("Test %d: site folder: Expected '%s' but got '%s'", i, testcase.folder, actual) } if actual := fs.siteCertFile(testcase.in); actual != testcase.certFile { t.Errorf("Test %d: site cert file: Expected '%s' but got '%s'", i, testcase.certFile, actual) } if actual := fs.siteKeyFile(testcase.in); actual != testcase.keyFile { t.Errorf("Test %d: site key file: Expected '%s' but got '%s'", i, testcase.keyFile, actual) } if actual := fs.siteMetaFile(testcase.in); actual != testcase.metaFile { t.Errorf("Test %d: site meta file: Expected '%s' but got '%s'", i, testcase.metaFile, actual) } } }