mirror of
				https://github.com/coredns/coredns.git
				synced 2025-10-31 02:03:20 -04:00 
			
		
		
		
	
		
			
	
	
		
			60 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
		
		
			
		
	
	
			60 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
|  | package setup
 | ||
|  | 
 | ||
|  | import (
 | ||
|  | 	"os"
 | ||
|  | 	"path/filepath"
 | ||
|  | 	"strconv"
 | ||
|  | 	"testing"
 | ||
|  | 	"time"
 | ||
|  | )
 | ||
|  | 
 | ||
|  | // The Startup function's tests are symmetrical to Shutdown tests,
 | ||
|  | // because the Startup and Shutdown functions share virtually the
 | ||
|  | // same functionality
 | ||
|  | func TestStartup(t *testing.T) {
 | ||
|  | 	tempDirPath, err := getTempDirPath()
 | ||
|  | 	if err != nil {
 | ||
|  | 		t.Fatalf("BeforeTest: Failed to find an existing directory for testing! Error was: %v", err)
 | ||
|  | 	}
 | ||
|  | 
 | ||
|  | 	testDir := filepath.Join(tempDirPath, "temp_dir_for_testing_startupshutdown")
 | ||
|  | 	defer func() {
 | ||
|  | 		// clean up after non-blocking startup function quits
 | ||
|  | 		time.Sleep(500 * time.Millisecond)
 | ||
|  | 		os.RemoveAll(testDir)
 | ||
|  | 	}()
 | ||
|  | 	osSenitiveTestDir := filepath.FromSlash(testDir)
 | ||
|  | 	os.RemoveAll(osSenitiveTestDir) // start with a clean slate
 | ||
|  | 
 | ||
|  | 	tests := []struct {
 | ||
|  | 		input              string
 | ||
|  | 		shouldExecutionErr bool
 | ||
|  | 		shouldRemoveErr    bool
 | ||
|  | 	}{
 | ||
|  | 		// test case #0 tests proper functionality blocking commands
 | ||
|  | 		{"startup mkdir " + osSenitiveTestDir, false, false},
 | ||
|  | 
 | ||
|  | 		// test case #1 tests proper functionality of non-blocking commands
 | ||
|  | 		{"startup mkdir " + osSenitiveTestDir + " &", false, true},
 | ||
|  | 
 | ||
|  | 		// test case #2 tests handling of non-existent commands
 | ||
|  | 		{"startup " + strconv.Itoa(int(time.Now().UnixNano())), true, true},
 | ||
|  | 	}
 | ||
|  | 
 | ||
|  | 	for i, test := range tests {
 | ||
|  | 		c := NewTestController(test.input)
 | ||
|  | 		_, err = Startup(c)
 | ||
|  | 		if err != nil {
 | ||
|  | 			t.Errorf("Expected no errors, got: %v", err)
 | ||
|  | 		}
 | ||
|  | 		err = c.FirstStartup[0]()
 | ||
|  | 		if err != nil && !test.shouldExecutionErr {
 | ||
|  | 			t.Errorf("Test %d recieved an error of:\n%v", i, err)
 | ||
|  | 		}
 | ||
|  | 		err = os.Remove(osSenitiveTestDir)
 | ||
|  | 		if err != nil && !test.shouldRemoveErr {
 | ||
|  | 			t.Errorf("Test %d recieved an error of:\n%v", i, err)
 | ||
|  | 		}
 | ||
|  | 	}
 | ||
|  | }
 |