mirror of
				https://github.com/caddyserver/caddy.git
				synced 2025-11-03 19:17:29 -05:00 
			
		
		
		
	I am not a lawyer, but according to the appendix of the license, these boilerplate notices should be included with every source file.
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// 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 storagetest
 | 
						|
 | 
						|
import (
 | 
						|
	"fmt"
 | 
						|
	"os"
 | 
						|
	"path/filepath"
 | 
						|
	"testing"
 | 
						|
	"time"
 | 
						|
 | 
						|
	"github.com/mholt/caddy/caddytls"
 | 
						|
)
 | 
						|
 | 
						|
// TestFileStorage tests the file storage set with the test harness in this
 | 
						|
// package.
 | 
						|
func TestFileStorage(t *testing.T) {
 | 
						|
	emailCounter := 0
 | 
						|
	storageTest := &StorageTest{
 | 
						|
		Storage:  &caddytls.FileStorage{Path: "./testdata"}, // nameLocks isn't made here, but it's okay because the tests don't call TryLock or Unlock
 | 
						|
		PostTest: func() { os.RemoveAll("./testdata") },
 | 
						|
		AfterUserEmailStore: func(email string) error {
 | 
						|
			// We need to change the dir mod time to show a
 | 
						|
			// that certain dirs are newer.
 | 
						|
			emailCounter++
 | 
						|
			fp := filepath.Join("./testdata", "users", email)
 | 
						|
 | 
						|
			// What we will do is subtract 10 days from today and
 | 
						|
			// then add counter * seconds to make the later
 | 
						|
			// counters newer. We accept that this isn't exactly
 | 
						|
			// how the file storage works because it only changes
 | 
						|
			// timestamps on *newly seen* users, but it achieves
 | 
						|
			// the result that the harness expects.
 | 
						|
			chTime := time.Now().AddDate(0, 0, -10).Add(time.Duration(emailCounter) * time.Second)
 | 
						|
			if err := os.Chtimes(fp, chTime, chTime); err != nil {
 | 
						|
				return fmt.Errorf("Unable to change file time for %v: %v", fp, err)
 | 
						|
			}
 | 
						|
			return nil
 | 
						|
		},
 | 
						|
	}
 | 
						|
	storageTest.Test(t, false)
 | 
						|
}
 |