| 
									
										
										
										
											2009-02-06 17:54:26 -08:00
										 |  |  | // Copyright 2009 The Go Authors. All rights reserved. | 
					
						
							|  |  |  | // Use of this source code is governed by a BSD-style | 
					
						
							|  |  |  | // license that can be found in the LICENSE file. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-12 13:18:37 -07:00
										 |  |  | package os_test | 
					
						
							| 
									
										
										
										
											2009-02-06 17:54:26 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	"bytes" | 
					
						
							| 
									
										
										
										
											2012-09-19 16:55:21 +10:00
										 |  |  | 	"flag" | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	"fmt" | 
					
						
							|  |  |  | 	"io" | 
					
						
							|  |  |  | 	"io/ioutil" | 
					
						
							|  |  |  | 	. "os" | 
					
						
							| 
									
										
										
										
											2011-03-24 11:20:28 +11:00
										 |  |  | 	"path/filepath" | 
					
						
							| 
									
										
										
										
											2012-01-14 06:40:55 +09:00
										 |  |  | 	"runtime" | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	"strings" | 
					
						
							| 
									
										
										
										
											2012-02-17 10:04:29 +11:00
										 |  |  | 	"syscall" | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	"testing" | 
					
						
							| 
									
										
										
										
											2011-11-30 12:01:46 -05:00
										 |  |  | 	"time" | 
					
						
							| 
									
										
										
										
											2009-02-06 17:54:26 -08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-03 08:39:12 -08:00
										 |  |  | var dot = []string{ | 
					
						
							| 
									
										
										
										
											2011-04-06 15:44:40 -04:00
										 |  |  | 	"dir_unix.go", | 
					
						
							| 
									
										
										
										
											2011-11-14 14:06:50 -05:00
										 |  |  | 	"env.go", | 
					
						
							| 
									
										
										
										
											2009-02-15 14:18:39 -08:00
										 |  |  | 	"error.go", | 
					
						
							|  |  |  | 	"file.go", | 
					
						
							| 
									
										
										
										
											2009-02-09 11:24:35 -08:00
										 |  |  | 	"os_test.go", | 
					
						
							| 
									
										
										
										
											2009-02-15 14:18:39 -08:00
										 |  |  | 	"types.go", | 
					
						
							| 
									
										
										
										
											2009-11-01 09:37:13 -08:00
										 |  |  | 	"stat_darwin.go", | 
					
						
							|  |  |  | 	"stat_linux.go", | 
					
						
							| 
									
										
										
										
											2009-03-03 08:39:12 -08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2009-02-09 11:24:35 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-04 17:31:49 +11:00
										 |  |  | type sysDir struct { | 
					
						
							|  |  |  | 	name  string | 
					
						
							|  |  |  | 	files []string | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var sysdir = func() (sd *sysDir) { | 
					
						
							| 
									
										
										
										
											2012-01-14 06:40:55 +09:00
										 |  |  | 	switch runtime.GOOS { | 
					
						
							| 
									
										
										
										
											2010-10-04 17:31:49 +11:00
										 |  |  | 	case "windows": | 
					
						
							|  |  |  | 		sd = &sysDir{ | 
					
						
							|  |  |  | 			Getenv("SystemRoot") + "\\system32\\drivers\\etc", | 
					
						
							|  |  |  | 			[]string{ | 
					
						
							|  |  |  | 				"hosts", | 
					
						
							|  |  |  | 				"networks", | 
					
						
							|  |  |  | 				"protocol", | 
					
						
							|  |  |  | 				"services", | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2011-04-12 16:58:56 -07:00
										 |  |  | 	case "plan9": | 
					
						
							|  |  |  | 		sd = &sysDir{ | 
					
						
							|  |  |  | 			"/lib/ndb", | 
					
						
							|  |  |  | 			[]string{ | 
					
						
							|  |  |  | 				"common", | 
					
						
							|  |  |  | 				"local", | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2010-10-04 17:31:49 +11:00
										 |  |  | 	default: | 
					
						
							|  |  |  | 		sd = &sysDir{ | 
					
						
							|  |  |  | 			"/etc", | 
					
						
							|  |  |  | 			[]string{ | 
					
						
							|  |  |  | 				"group", | 
					
						
							|  |  |  | 				"hosts", | 
					
						
							|  |  |  | 				"passwd", | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return | 
					
						
							|  |  |  | }() | 
					
						
							| 
									
										
										
										
											2009-02-09 11:24:35 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-22 14:01:33 -07:00
										 |  |  | func size(name string, t *testing.T) int64 { | 
					
						
							| 
									
										
										
										
											2011-04-04 23:42:14 -07:00
										 |  |  | 	file, err := Open(name) | 
					
						
							| 
									
										
										
										
											2009-02-06 17:54:26 -08:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Fatal("open failed:", err) | 
					
						
							| 
									
										
										
										
											2009-02-06 17:54:26 -08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-08-17 11:55:11 -07:00
										 |  |  | 	defer file.Close() | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	var buf [100]byte | 
					
						
							|  |  |  | 	len := 0 | 
					
						
							| 
									
										
										
										
											2009-02-06 17:54:26 -08:00
										 |  |  | 	for { | 
					
						
							| 
									
										
										
										
											2010-05-27 14:51:47 -07:00
										 |  |  | 		n, e := file.Read(buf[0:]) | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 		len += n | 
					
						
							| 
									
										
										
										
											2011-11-01 21:49:08 -04:00
										 |  |  | 		if e == io.EOF { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 			break | 
					
						
							| 
									
										
										
										
											2009-02-06 17:54:26 -08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2009-06-22 13:26:13 -07:00
										 |  |  | 		if e != nil { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 			t.Fatal("read failed:", err) | 
					
						
							| 
									
										
										
										
											2009-06-22 13:26:13 -07:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2009-02-06 17:54:26 -08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-04-22 14:01:33 -07:00
										 |  |  | 	return int64(len) | 
					
						
							| 
									
										
										
										
											2009-02-06 17:54:26 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-04 17:31:49 +11:00
										 |  |  | func equal(name1, name2 string) (r bool) { | 
					
						
							| 
									
										
										
										
											2012-01-14 06:40:55 +09:00
										 |  |  | 	switch runtime.GOOS { | 
					
						
							| 
									
										
										
										
											2010-10-04 17:31:49 +11:00
										 |  |  | 	case "windows": | 
					
						
							|  |  |  | 		r = strings.ToLower(name1) == strings.ToLower(name2) | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		r = name1 == name2 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-13 10:31:51 +10:00
										 |  |  | func newFile(testName string, t *testing.T) (f *File) { | 
					
						
							|  |  |  | 	// Use a local file system, not NFS. | 
					
						
							| 
									
										
										
										
											2010-07-14 17:25:46 -07:00
										 |  |  | 	// On Unix, override $TMPDIR in case the user | 
					
						
							|  |  |  | 	// has it set to an NFS-mounted directory. | 
					
						
							|  |  |  | 	dir := "" | 
					
						
							| 
									
										
										
										
											2012-01-14 06:40:55 +09:00
										 |  |  | 	if runtime.GOOS != "windows" { | 
					
						
							| 
									
										
										
										
											2010-07-14 17:25:46 -07:00
										 |  |  | 		dir = "/tmp" | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	f, err := ioutil.TempFile(dir, "_Go_"+testName) | 
					
						
							| 
									
										
										
										
											2010-07-13 10:31:51 +10:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatalf("open %s: %s", testName, err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-04 17:31:49 +11:00
										 |  |  | var sfdir = sysdir.name | 
					
						
							|  |  |  | var sfname = sysdir.files[0] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-06 17:54:26 -08:00
										 |  |  | func TestStat(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2010-10-04 17:31:49 +11:00
										 |  |  | 	path := sfdir + "/" + sfname | 
					
						
							|  |  |  | 	dir, err := Stat(path) | 
					
						
							| 
									
										
										
										
											2009-02-06 17:54:26 -08:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Fatal("stat failed:", err) | 
					
						
							| 
									
										
										
										
											2009-02-06 17:54:26 -08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-11-30 12:04:16 -05:00
										 |  |  | 	if !equal(sfname, dir.Name()) { | 
					
						
							|  |  |  | 		t.Error("name should be ", sfname, "; is", dir.Name()) | 
					
						
							| 
									
										
										
										
											2009-02-06 17:54:26 -08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-10-04 17:31:49 +11:00
										 |  |  | 	filesize := size(path, t) | 
					
						
							| 
									
										
										
										
											2011-11-30 12:04:16 -05:00
										 |  |  | 	if dir.Size() != filesize { | 
					
						
							|  |  |  | 		t.Error("size should be", filesize, "; is", dir.Size()) | 
					
						
							| 
									
										
										
										
											2009-02-06 17:54:26 -08:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestFstat(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2010-10-04 17:31:49 +11:00
										 |  |  | 	path := sfdir + "/" + sfname | 
					
						
							| 
									
										
										
										
											2011-04-04 23:42:14 -07:00
										 |  |  | 	file, err1 := Open(path) | 
					
						
							| 
									
										
										
										
											2009-02-06 17:54:26 -08:00
										 |  |  | 	if err1 != nil { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Fatal("open failed:", err1) | 
					
						
							| 
									
										
										
										
											2009-02-06 17:54:26 -08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-08-17 11:55:11 -07:00
										 |  |  | 	defer file.Close() | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	dir, err2 := file.Stat() | 
					
						
							| 
									
										
										
										
											2009-02-06 17:54:26 -08:00
										 |  |  | 	if err2 != nil { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Fatal("fstat failed:", err2) | 
					
						
							| 
									
										
										
										
											2009-02-06 17:54:26 -08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-11-30 12:04:16 -05:00
										 |  |  | 	if !equal(sfname, dir.Name()) { | 
					
						
							|  |  |  | 		t.Error("name should be ", sfname, "; is", dir.Name()) | 
					
						
							| 
									
										
										
										
											2009-02-06 17:54:26 -08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-10-04 17:31:49 +11:00
										 |  |  | 	filesize := size(path, t) | 
					
						
							| 
									
										
										
										
											2011-11-30 12:04:16 -05:00
										 |  |  | 	if dir.Size() != filesize { | 
					
						
							|  |  |  | 		t.Error("size should be", filesize, "; is", dir.Size()) | 
					
						
							| 
									
										
										
										
											2009-02-06 17:54:26 -08:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestLstat(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2010-10-04 17:31:49 +11:00
										 |  |  | 	path := sfdir + "/" + sfname | 
					
						
							|  |  |  | 	dir, err := Lstat(path) | 
					
						
							| 
									
										
										
										
											2009-02-06 17:54:26 -08:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Fatal("lstat failed:", err) | 
					
						
							| 
									
										
										
										
											2009-02-06 17:54:26 -08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-11-30 12:04:16 -05:00
										 |  |  | 	if !equal(sfname, dir.Name()) { | 
					
						
							|  |  |  | 		t.Error("name should be ", sfname, "; is", dir.Name()) | 
					
						
							| 
									
										
										
										
											2009-02-06 17:54:26 -08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-10-04 17:31:49 +11:00
										 |  |  | 	filesize := size(path, t) | 
					
						
							| 
									
										
										
										
											2011-11-30 12:04:16 -05:00
										 |  |  | 	if dir.Size() != filesize { | 
					
						
							|  |  |  | 		t.Error("size should be", filesize, "; is", dir.Size()) | 
					
						
							| 
									
										
										
										
											2009-02-06 17:54:26 -08:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-02-08 10:18:50 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-01 00:17:05 -04:00
										 |  |  | // Read with length 0 should not return EOF. | 
					
						
							|  |  |  | func TestRead0(t *testing.T) { | 
					
						
							|  |  |  | 	path := sfdir + "/" + sfname | 
					
						
							|  |  |  | 	f, err := Open(path) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatal("open failed:", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	defer f.Close() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	b := make([]byte, 0) | 
					
						
							|  |  |  | 	n, err := f.Read(b) | 
					
						
							|  |  |  | 	if n != 0 || err != nil { | 
					
						
							|  |  |  | 		t.Errorf("Read(0) = %d, %v, want 0, nil", n, err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	b = make([]byte, 100) | 
					
						
							|  |  |  | 	n, err = f.Read(b) | 
					
						
							|  |  |  | 	if n <= 0 || err != nil { | 
					
						
							|  |  |  | 		t.Errorf("Read(100) = %d, %v, want >0, nil", n, err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-09 11:24:35 -08:00
										 |  |  | func testReaddirnames(dir string, contents []string, t *testing.T) { | 
					
						
							| 
									
										
										
										
											2011-04-04 23:42:14 -07:00
										 |  |  | 	file, err := Open(dir) | 
					
						
							| 
									
										
										
										
											2009-02-08 10:18:50 -08:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Fatalf("open %q failed: %v", dir, err) | 
					
						
							| 
									
										
										
										
											2009-02-08 10:18:50 -08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-08-17 11:55:11 -07:00
										 |  |  | 	defer file.Close() | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	s, err2 := file.Readdirnames(-1) | 
					
						
							| 
									
										
										
										
											2009-02-08 10:18:50 -08:00
										 |  |  | 	if err2 != nil { | 
					
						
							| 
									
										
										
										
											2010-12-07 16:42:54 -05:00
										 |  |  | 		t.Fatalf("readdirnames %q failed: %v", dir, err2) | 
					
						
							| 
									
										
										
										
											2009-02-08 10:18:50 -08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-09-15 09:41:59 -07:00
										 |  |  | 	for _, m := range contents { | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 		found := false | 
					
						
							| 
									
										
										
										
											2009-09-15 09:41:59 -07:00
										 |  |  | 		for _, n := range s { | 
					
						
							| 
									
										
										
										
											2009-04-07 00:40:50 -07:00
										 |  |  | 			if n == "." || n == ".." { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 				t.Errorf("got %s in directory", n) | 
					
						
							| 
									
										
										
										
											2009-04-07 00:40:50 -07:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2010-10-04 17:31:49 +11:00
										 |  |  | 			if equal(m, n) { | 
					
						
							| 
									
										
										
										
											2009-02-08 10:18:50 -08:00
										 |  |  | 				if found { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 					t.Error("present twice:", m) | 
					
						
							| 
									
										
										
										
											2009-02-08 10:18:50 -08:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 				found = true | 
					
						
							| 
									
										
										
										
											2009-02-08 10:18:50 -08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if !found { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 			t.Error("could not find", m) | 
					
						
							| 
									
										
										
										
											2009-02-08 10:18:50 -08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-02-09 11:24:35 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | func testReaddir(dir string, contents []string, t *testing.T) { | 
					
						
							| 
									
										
										
										
											2011-04-04 23:42:14 -07:00
										 |  |  | 	file, err := Open(dir) | 
					
						
							| 
									
										
										
										
											2009-02-09 11:24:35 -08:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Fatalf("open %q failed: %v", dir, err) | 
					
						
							| 
									
										
										
										
											2009-02-09 11:24:35 -08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-08-17 11:55:11 -07:00
										 |  |  | 	defer file.Close() | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	s, err2 := file.Readdir(-1) | 
					
						
							| 
									
										
										
										
											2009-02-09 11:24:35 -08:00
										 |  |  | 	if err2 != nil { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Fatalf("readdir %q failed: %v", dir, err2) | 
					
						
							| 
									
										
										
										
											2009-02-09 11:24:35 -08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-09-15 09:41:59 -07:00
										 |  |  | 	for _, m := range contents { | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 		found := false | 
					
						
							| 
									
										
										
										
											2009-09-15 09:41:59 -07:00
										 |  |  | 		for _, n := range s { | 
					
						
							| 
									
										
										
										
											2011-11-30 12:04:16 -05:00
										 |  |  | 			if equal(m, n.Name()) { | 
					
						
							| 
									
										
										
										
											2009-02-09 11:24:35 -08:00
										 |  |  | 				if found { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 					t.Error("present twice:", m) | 
					
						
							| 
									
										
										
										
											2009-02-09 11:24:35 -08:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 				found = true | 
					
						
							| 
									
										
										
										
											2009-02-09 11:24:35 -08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if !found { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 			t.Error("could not find", m) | 
					
						
							| 
									
										
										
										
											2009-02-09 11:24:35 -08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestReaddirnames(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	testReaddirnames(".", dot, t) | 
					
						
							| 
									
										
										
										
											2010-10-04 17:31:49 +11:00
										 |  |  | 	testReaddirnames(sysdir.name, sysdir.files, t) | 
					
						
							| 
									
										
										
										
											2009-02-09 11:24:35 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestReaddir(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	testReaddir(".", dot, t) | 
					
						
							| 
									
										
										
										
											2010-10-04 17:31:49 +11:00
										 |  |  | 	testReaddir(sysdir.name, sysdir.files, t) | 
					
						
							| 
									
										
										
										
											2009-02-09 11:24:35 -08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2009-02-10 11:27:45 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | // Read the directory one entry at a time. | 
					
						
							| 
									
										
										
										
											2009-03-11 12:51:10 -07:00
										 |  |  | func smallReaddirnames(file *File, length int, t *testing.T) []string { | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	names := make([]string, length) | 
					
						
							|  |  |  | 	count := 0 | 
					
						
							| 
									
										
										
										
											2009-02-10 11:27:45 -08:00
										 |  |  | 	for { | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 		d, err := file.Readdirnames(1) | 
					
						
							| 
									
										
										
										
											2011-11-01 21:49:08 -04:00
										 |  |  | 		if err == io.EOF { | 
					
						
							| 
									
										
										
										
											2011-05-16 09:26:16 -07:00
										 |  |  | 			break | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2009-02-10 11:27:45 -08:00
										 |  |  | 		if err != nil { | 
					
						
							| 
									
										
										
										
											2011-05-16 09:26:16 -07:00
										 |  |  | 			t.Fatalf("readdirnames %q failed: %v", file.Name(), err) | 
					
						
							| 
									
										
										
										
											2009-02-10 11:27:45 -08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		if len(d) == 0 { | 
					
						
							| 
									
										
										
										
											2011-05-16 21:15:06 -07:00
										 |  |  | 			t.Fatalf("readdirnames %q returned empty slice and no error", file.Name()) | 
					
						
							| 
									
										
										
										
											2009-02-10 11:27:45 -08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 		names[count] = d[0] | 
					
						
							|  |  |  | 		count++ | 
					
						
							| 
									
										
										
										
											2009-02-10 11:27:45 -08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	return names[0:count] | 
					
						
							| 
									
										
										
										
											2009-02-10 11:27:45 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Check that reading a directory one entry at a time gives the same result | 
					
						
							|  |  |  | // as reading it all at once. | 
					
						
							|  |  |  | func TestReaddirnamesOneAtATime(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2010-10-04 17:31:49 +11:00
										 |  |  | 	// big directory that doesn't change often. | 
					
						
							|  |  |  | 	dir := "/usr/bin" | 
					
						
							| 
									
										
										
										
											2012-01-14 06:40:55 +09:00
										 |  |  | 	switch runtime.GOOS { | 
					
						
							| 
									
										
										
										
											2011-04-12 16:58:56 -07:00
										 |  |  | 	case "windows": | 
					
						
							| 
									
										
										
										
											2010-10-04 17:31:49 +11:00
										 |  |  | 		dir = Getenv("SystemRoot") + "\\system32" | 
					
						
							| 
									
										
										
										
											2011-04-12 16:58:56 -07:00
										 |  |  | 	case "plan9": | 
					
						
							|  |  |  | 		dir = "/bin" | 
					
						
							| 
									
										
										
										
											2010-10-04 17:31:49 +11:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-04-04 23:42:14 -07:00
										 |  |  | 	file, err := Open(dir) | 
					
						
							| 
									
										
										
										
											2009-02-10 11:27:45 -08:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Fatalf("open %q failed: %v", dir, err) | 
					
						
							| 
									
										
										
										
											2009-02-10 11:27:45 -08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-08-17 11:55:11 -07:00
										 |  |  | 	defer file.Close() | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	all, err1 := file.Readdirnames(-1) | 
					
						
							| 
									
										
										
										
											2009-02-10 11:27:45 -08:00
										 |  |  | 	if err1 != nil { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Fatalf("readdirnames %q failed: %v", dir, err1) | 
					
						
							| 
									
										
										
										
											2009-02-10 11:27:45 -08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-04-04 23:42:14 -07:00
										 |  |  | 	file1, err2 := Open(dir) | 
					
						
							| 
									
										
										
										
											2009-02-10 11:27:45 -08:00
										 |  |  | 	if err2 != nil { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Fatalf("open %q failed: %v", dir, err2) | 
					
						
							| 
									
										
										
										
											2009-02-10 11:27:45 -08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	small := smallReaddirnames(file1, len(all)+100, t) // +100 in case we screw up | 
					
						
							| 
									
										
										
										
											2011-04-12 16:58:56 -07:00
										 |  |  | 	if len(small) < len(all) { | 
					
						
							|  |  |  | 		t.Fatalf("len(small) is %d, less than %d", len(small), len(all)) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-02-10 11:27:45 -08:00
										 |  |  | 	for i, n := range all { | 
					
						
							|  |  |  | 		if small[i] != n { | 
					
						
							| 
									
										
										
										
											2010-12-07 16:42:54 -05:00
										 |  |  | 			t.Errorf("small read %q mismatch: %v", small[i], n) | 
					
						
							| 
									
										
										
										
											2009-02-10 11:27:45 -08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-02-15 14:18:39 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-27 12:14:48 -07:00
										 |  |  | func TestReaddirNValues(t *testing.T) { | 
					
						
							|  |  |  | 	if testing.Short() { | 
					
						
							|  |  |  | 		t.Logf("test.short; skipping") | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	dir, err := ioutil.TempDir("", "") | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatalf("TempDir: %v", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	defer RemoveAll(dir) | 
					
						
							| 
									
										
										
										
											2011-05-27 12:58:59 -07:00
										 |  |  | 	for i := 1; i <= 105; i++ { | 
					
						
							| 
									
										
										
										
											2011-05-27 12:14:48 -07:00
										 |  |  | 		f, err := Create(filepath.Join(dir, fmt.Sprintf("%d", i))) | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			t.Fatalf("Create: %v", err) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		f.Write([]byte(strings.Repeat("X", i))) | 
					
						
							|  |  |  | 		f.Close() | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	var d *File | 
					
						
							|  |  |  | 	openDir := func() { | 
					
						
							| 
									
										
										
										
											2011-11-01 21:49:08 -04:00
										 |  |  | 		var err error | 
					
						
							| 
									
										
										
										
											2011-05-27 12:14:48 -07:00
										 |  |  | 		d, err = Open(dir) | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			t.Fatalf("Open directory: %v", err) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-01 21:49:08 -04:00
										 |  |  | 	readDirExpect := func(n, want int, wantErr error) { | 
					
						
							| 
									
										
										
										
											2011-05-27 12:14:48 -07:00
										 |  |  | 		fi, err := d.Readdir(n) | 
					
						
							|  |  |  | 		if err != wantErr { | 
					
						
							|  |  |  | 			t.Fatalf("Readdir of %d got error %v, want %v", n, err, wantErr) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if g, e := len(fi), want; g != e { | 
					
						
							|  |  |  | 			t.Errorf("Readdir of %d got %d files, want %d", n, g, e) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-01 21:49:08 -04:00
										 |  |  | 	readDirNamesExpect := func(n, want int, wantErr error) { | 
					
						
							| 
									
										
										
										
											2011-05-27 12:14:48 -07:00
										 |  |  | 		fi, err := d.Readdirnames(n) | 
					
						
							|  |  |  | 		if err != wantErr { | 
					
						
							|  |  |  | 			t.Fatalf("Readdirnames of %d got error %v, want %v", n, err, wantErr) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if g, e := len(fi), want; g != e { | 
					
						
							|  |  |  | 			t.Errorf("Readdirnames of %d got %d files, want %d", n, g, e) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-01 21:49:08 -04:00
										 |  |  | 	for _, fn := range []func(int, int, error){readDirExpect, readDirNamesExpect} { | 
					
						
							| 
									
										
										
										
											2011-05-27 12:58:59 -07:00
										 |  |  | 		// Test the slurp case | 
					
						
							| 
									
										
										
										
											2011-05-27 12:14:48 -07:00
										 |  |  | 		openDir() | 
					
						
							| 
									
										
										
										
											2011-05-27 12:58:59 -07:00
										 |  |  | 		fn(0, 105, nil) | 
					
						
							|  |  |  | 		fn(0, 0, nil) | 
					
						
							|  |  |  | 		d.Close() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Slurp with -1 instead | 
					
						
							|  |  |  | 		openDir() | 
					
						
							|  |  |  | 		fn(-1, 105, nil) | 
					
						
							| 
									
										
										
										
											2011-05-27 12:14:48 -07:00
										 |  |  | 		fn(-2, 0, nil) | 
					
						
							|  |  |  | 		fn(0, 0, nil) | 
					
						
							|  |  |  | 		d.Close() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Test the bounded case | 
					
						
							|  |  |  | 		openDir() | 
					
						
							| 
									
										
										
										
											2011-05-27 12:58:59 -07:00
										 |  |  | 		fn(1, 1, nil) | 
					
						
							|  |  |  | 		fn(2, 2, nil) | 
					
						
							|  |  |  | 		fn(105, 102, nil) // and tests buffer >100 case | 
					
						
							| 
									
										
										
										
											2011-11-01 21:49:08 -04:00
										 |  |  | 		fn(3, 0, io.EOF) | 
					
						
							| 
									
										
										
										
											2011-05-27 12:14:48 -07:00
										 |  |  | 		d.Close() | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-13 10:16:46 -07:00
										 |  |  | func TestHardLink(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2011-06-14 11:20:34 -04:00
										 |  |  | 	// Hardlinks are not supported under windows or Plan 9. | 
					
						
							| 
									
										
										
										
											2012-01-14 06:40:55 +09:00
										 |  |  | 	if runtime.GOOS == "windows" || runtime.GOOS == "plan9" { | 
					
						
							| 
									
										
										
										
											2010-10-04 17:31:49 +11:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	from, to := "hardlinktestfrom", "hardlinktestto" | 
					
						
							|  |  |  | 	Remove(from) // Just in case. | 
					
						
							| 
									
										
										
										
											2011-04-04 23:42:14 -07:00
										 |  |  | 	file, err := Create(to) | 
					
						
							| 
									
										
										
										
											2009-05-13 10:16:46 -07:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Fatalf("open %q failed: %v", to, err) | 
					
						
							| 
									
										
										
										
											2009-05-13 10:16:46 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	defer Remove(to) | 
					
						
							| 
									
										
										
										
											2009-05-13 10:16:46 -07:00
										 |  |  | 	if err = file.Close(); err != nil { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Errorf("close %q failed: %v", to, err) | 
					
						
							| 
									
										
										
										
											2009-05-13 10:16:46 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	err = Link(to, from) | 
					
						
							| 
									
										
										
										
											2009-05-13 10:16:46 -07:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Fatalf("link %q, %q failed: %v", to, from, err) | 
					
						
							| 
									
										
										
										
											2009-05-13 10:16:46 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	defer Remove(from) | 
					
						
							|  |  |  | 	tostat, err := Stat(to) | 
					
						
							| 
									
										
										
										
											2009-05-13 10:16:46 -07:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Fatalf("stat %q failed: %v", to, err) | 
					
						
							| 
									
										
										
										
											2009-05-13 10:16:46 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	fromstat, err := Stat(from) | 
					
						
							| 
									
										
										
										
											2009-05-13 10:16:46 -07:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Fatalf("stat %q failed: %v", from, err) | 
					
						
							| 
									
										
										
										
											2009-05-13 10:16:46 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-02-03 00:16:18 -02:00
										 |  |  | 	if !SameFile(tostat, fromstat) { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Errorf("link %q, %q did not create hard link", to, from) | 
					
						
							| 
									
										
										
										
											2009-05-13 10:16:46 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestSymLink(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2011-06-14 11:20:34 -04:00
										 |  |  | 	// Symlinks are not supported under windows or Plan 9. | 
					
						
							| 
									
										
										
										
											2012-01-14 06:40:55 +09:00
										 |  |  | 	if runtime.GOOS == "windows" || runtime.GOOS == "plan9" { | 
					
						
							| 
									
										
										
										
											2010-10-04 17:31:49 +11:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	from, to := "symlinktestfrom", "symlinktestto" | 
					
						
							|  |  |  | 	Remove(from) // Just in case. | 
					
						
							| 
									
										
										
										
											2011-04-04 23:42:14 -07:00
										 |  |  | 	file, err := Create(to) | 
					
						
							| 
									
										
										
										
											2009-05-13 10:16:46 -07:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Fatalf("open %q failed: %v", to, err) | 
					
						
							| 
									
										
										
										
											2009-05-13 10:16:46 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	defer Remove(to) | 
					
						
							| 
									
										
										
										
											2009-05-13 10:16:46 -07:00
										 |  |  | 	if err = file.Close(); err != nil { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Errorf("close %q failed: %v", to, err) | 
					
						
							| 
									
										
										
										
											2009-05-13 10:16:46 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	err = Symlink(to, from) | 
					
						
							| 
									
										
										
										
											2009-05-13 10:16:46 -07:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Fatalf("symlink %q, %q failed: %v", to, from, err) | 
					
						
							| 
									
										
										
										
											2009-05-13 10:16:46 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	defer Remove(from) | 
					
						
							| 
									
										
										
										
											2011-11-30 12:04:16 -05:00
										 |  |  | 	tostat, err := Lstat(to) | 
					
						
							| 
									
										
										
										
											2009-05-13 10:16:46 -07:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Fatalf("stat %q failed: %v", to, err) | 
					
						
							| 
									
										
										
										
											2009-05-13 10:16:46 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-11-30 12:04:16 -05:00
										 |  |  | 	if tostat.Mode()&ModeSymlink != 0 { | 
					
						
							|  |  |  | 		t.Fatalf("stat %q claims to have found a symlink", to) | 
					
						
							| 
									
										
										
										
											2009-05-15 11:04:49 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	fromstat, err := Stat(from) | 
					
						
							| 
									
										
										
										
											2009-05-13 10:16:46 -07:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Fatalf("stat %q failed: %v", from, err) | 
					
						
							| 
									
										
										
										
											2009-05-13 10:16:46 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-02-03 00:16:18 -02:00
										 |  |  | 	if !SameFile(tostat, fromstat) { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Errorf("symlink %q, %q did not create symlink", to, from) | 
					
						
							| 
									
										
										
										
											2009-05-13 10:16:46 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	fromstat, err = Lstat(from) | 
					
						
							| 
									
										
										
										
											2009-05-13 10:16:46 -07:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Fatalf("lstat %q failed: %v", from, err) | 
					
						
							| 
									
										
										
										
											2009-05-13 10:16:46 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-11-30 12:04:16 -05:00
										 |  |  | 	if fromstat.Mode()&ModeSymlink == 0 { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Fatalf("symlink %q, %q did not create symlink", to, from) | 
					
						
							| 
									
										
										
										
											2009-05-13 10:16:46 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	fromstat, err = Stat(from) | 
					
						
							| 
									
										
										
										
											2009-05-15 11:04:49 -07:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Fatalf("stat %q failed: %v", from, err) | 
					
						
							| 
									
										
										
										
											2009-05-15 11:04:49 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-11-30 12:04:16 -05:00
										 |  |  | 	if fromstat.Mode()&ModeSymlink != 0 { | 
					
						
							| 
									
										
										
										
											2010-12-07 16:42:54 -05:00
										 |  |  | 		t.Fatalf("stat %q did not follow symlink", from) | 
					
						
							| 
									
										
										
										
											2009-05-15 11:04:49 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	s, err := Readlink(from) | 
					
						
							| 
									
										
										
										
											2009-05-13 10:16:46 -07:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Fatalf("readlink %q failed: %v", from, err) | 
					
						
							| 
									
										
										
										
											2009-05-13 10:16:46 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	if s != to { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Fatalf("after symlink %q != %q", s, to) | 
					
						
							| 
									
										
										
										
											2009-05-13 10:16:46 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-04-04 23:42:14 -07:00
										 |  |  | 	file, err = Open(from) | 
					
						
							| 
									
										
										
										
											2009-05-13 10:16:46 -07:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Fatalf("open %q failed: %v", from, err) | 
					
						
							| 
									
										
										
										
											2009-05-13 10:16:46 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	file.Close() | 
					
						
							| 
									
										
										
										
											2009-05-13 10:16:46 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestLongSymlink(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2011-06-14 11:20:34 -04:00
										 |  |  | 	// Symlinks are not supported under windows or Plan 9. | 
					
						
							| 
									
										
										
										
											2012-01-14 06:40:55 +09:00
										 |  |  | 	if runtime.GOOS == "windows" || runtime.GOOS == "plan9" { | 
					
						
							| 
									
										
										
										
											2010-10-04 17:31:49 +11:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	s := "0123456789abcdef" | 
					
						
							| 
									
										
										
										
											2009-11-11 14:52:29 -08:00
										 |  |  | 	// Long, but not too long: a common limit is 255. | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	s = s + s + s + s + s + s + s + s + s + s + s + s + s + s + s | 
					
						
							|  |  |  | 	from := "longsymlinktestfrom" | 
					
						
							| 
									
										
										
										
											2010-04-28 11:08:07 -07:00
										 |  |  | 	Remove(from) // Just in case. | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	err := Symlink(s, from) | 
					
						
							| 
									
										
										
										
											2009-05-13 10:16:46 -07:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Fatalf("symlink %q, %q failed: %v", s, from, err) | 
					
						
							| 
									
										
										
										
											2009-05-13 10:16:46 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	defer Remove(from) | 
					
						
							|  |  |  | 	r, err := Readlink(from) | 
					
						
							| 
									
										
										
										
											2009-05-13 10:16:46 -07:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Fatalf("readlink %q failed: %v", from, err) | 
					
						
							| 
									
										
										
										
											2009-05-13 10:16:46 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	if r != s { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Fatalf("after symlink %q != %q", r, s) | 
					
						
							| 
									
										
										
										
											2009-05-13 10:16:46 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-05-15 10:32:05 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-04 11:46:56 -08:00
										 |  |  | func TestRename(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	from, to := "renamefrom", "renameto" | 
					
						
							|  |  |  | 	Remove(to) // Just in case. | 
					
						
							| 
									
										
										
										
											2011-04-04 23:42:14 -07:00
										 |  |  | 	file, err := Create(from) | 
					
						
							| 
									
										
										
										
											2009-12-04 11:46:56 -08:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatalf("open %q failed: %v", to, err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if err = file.Close(); err != nil { | 
					
						
							|  |  |  | 		t.Errorf("close %q failed: %v", to, err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	err = Rename(from, to) | 
					
						
							| 
									
										
										
										
											2009-12-04 11:46:56 -08:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatalf("rename %q, %q failed: %v", to, from, err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	defer Remove(to) | 
					
						
							|  |  |  | 	_, err = Stat(to) | 
					
						
							| 
									
										
										
										
											2009-12-04 11:46:56 -08:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Errorf("stat %q failed: %v", to, err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-24 11:20:28 +11:00
										 |  |  | func exec(t *testing.T, dir, cmd string, args []string, expect string) { | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	r, w, err := Pipe() | 
					
						
							| 
									
										
										
										
											2009-05-15 10:32:05 -07:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Fatalf("Pipe: %v", err) | 
					
						
							| 
									
										
										
										
											2009-05-15 10:32:05 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-03-24 11:20:28 +11:00
										 |  |  | 	attr := &ProcAttr{Dir: dir, Files: []*File{nil, w, Stderr}} | 
					
						
							| 
									
										
										
										
											2011-03-15 14:41:19 -04:00
										 |  |  | 	p, err := StartProcess(cmd, args, attr) | 
					
						
							| 
									
										
										
										
											2009-05-15 10:32:05 -07:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2011-02-04 14:41:26 +11:00
										 |  |  | 		t.Fatalf("StartProcess: %v", err) | 
					
						
							| 
									
										
										
										
											2009-05-15 10:32:05 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	w.Close() | 
					
						
							| 
									
										
										
										
											2009-05-15 10:32:05 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	var b bytes.Buffer | 
					
						
							|  |  |  | 	io.Copy(&b, r) | 
					
						
							|  |  |  | 	output := b.String() | 
					
						
							| 
									
										
										
										
											2011-05-24 22:53:37 -07:00
										 |  |  | 	// Accept /usr prefix because Solaris /bin is symlinked to /usr/bin. | 
					
						
							|  |  |  | 	if output != expect && output != "/usr"+expect { | 
					
						
							| 
									
										
										
										
											2011-03-24 11:20:28 +11:00
										 |  |  | 		t.Errorf("exec %q returned %q wanted %q", | 
					
						
							|  |  |  | 			strings.Join(append([]string{cmd}, args...), " "), output, expect) | 
					
						
							| 
									
										
										
										
											2009-05-15 10:32:05 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-02-20 15:36:08 +11:00
										 |  |  | 	p.Wait() | 
					
						
							| 
									
										
										
										
											2009-05-15 10:32:05 -07:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2009-05-15 14:11:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-24 11:20:28 +11:00
										 |  |  | func TestStartProcess(t *testing.T) { | 
					
						
							|  |  |  | 	var dir, cmd, le string | 
					
						
							|  |  |  | 	var args []string | 
					
						
							| 
									
										
										
										
											2012-01-14 06:40:55 +09:00
										 |  |  | 	if runtime.GOOS == "windows" { | 
					
						
							| 
									
										
										
										
											2011-03-24 11:20:28 +11:00
										 |  |  | 		le = "\r\n" | 
					
						
							|  |  |  | 		cmd = Getenv("COMSPEC") | 
					
						
							|  |  |  | 		dir = Getenv("SystemRoot") | 
					
						
							|  |  |  | 		args = []string{"/c", "cd"} | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		le = "\n" | 
					
						
							|  |  |  | 		cmd = "/bin/pwd" | 
					
						
							|  |  |  | 		dir = "/" | 
					
						
							|  |  |  | 		args = []string{} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	cmddir, cmdbase := filepath.Split(cmd) | 
					
						
							|  |  |  | 	args = append([]string{cmdbase}, args...) | 
					
						
							|  |  |  | 	// Test absolute executable path. | 
					
						
							|  |  |  | 	exec(t, dir, cmd, args, dir+le) | 
					
						
							|  |  |  | 	// Test relative executable path. | 
					
						
							|  |  |  | 	exec(t, cmddir, cmdbase, args, filepath.Clean(cmddir)+le) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-30 12:04:16 -05:00
										 |  |  | func checkMode(t *testing.T, path string, mode FileMode) { | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	dir, err := Stat(path) | 
					
						
							| 
									
										
										
										
											2009-05-15 14:11:24 -07:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Fatalf("Stat %q (looking for mode %#o): %s", path, mode, err) | 
					
						
							| 
									
										
										
										
											2009-05-15 14:11:24 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-11-30 12:04:16 -05:00
										 |  |  | 	if dir.Mode()&0777 != mode { | 
					
						
							|  |  |  | 		t.Errorf("Stat %q: mode %#o want %#o", path, dir.Mode(), mode) | 
					
						
							| 
									
										
										
										
											2009-05-15 14:11:24 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestChmod(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2010-10-04 17:31:49 +11:00
										 |  |  | 	// Chmod is not supported under windows. | 
					
						
							| 
									
										
										
										
											2012-01-14 06:40:55 +09:00
										 |  |  | 	if runtime.GOOS == "windows" { | 
					
						
							| 
									
										
										
										
											2010-10-04 17:31:49 +11:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-07-13 10:31:51 +10:00
										 |  |  | 	f := newFile("TestChmod", t) | 
					
						
							|  |  |  | 	defer Remove(f.Name()) | 
					
						
							|  |  |  | 	defer f.Close() | 
					
						
							| 
									
										
										
										
											2009-05-15 14:11:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-13 10:31:51 +10:00
										 |  |  | 	if err := Chmod(f.Name(), 0456); err != nil { | 
					
						
							|  |  |  | 		t.Fatalf("chmod %s 0456: %s", f.Name(), err) | 
					
						
							| 
									
										
										
										
											2009-05-15 14:11:24 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-07-13 10:31:51 +10:00
										 |  |  | 	checkMode(t, f.Name(), 0456) | 
					
						
							| 
									
										
										
										
											2009-05-15 14:11:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-13 10:31:51 +10:00
										 |  |  | 	if err := f.Chmod(0123); err != nil { | 
					
						
							|  |  |  | 		t.Fatalf("chmod %s 0123: %s", f.Name(), err) | 
					
						
							| 
									
										
										
										
											2009-05-15 14:11:24 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-07-13 10:31:51 +10:00
										 |  |  | 	checkMode(t, f.Name(), 0123) | 
					
						
							| 
									
										
										
										
											2009-05-15 14:11:24 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-04 17:31:49 +11:00
										 |  |  | func checkSize(t *testing.T, f *File, size int64) { | 
					
						
							|  |  |  | 	dir, err := f.Stat() | 
					
						
							| 
									
										
										
										
											2009-05-15 14:11:24 -07:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2010-10-04 17:31:49 +11:00
										 |  |  | 		t.Fatalf("Stat %q (looking for size %d): %s", f.Name(), size, err) | 
					
						
							| 
									
										
										
										
											2009-05-15 14:11:24 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-11-30 12:04:16 -05:00
										 |  |  | 	if dir.Size() != size { | 
					
						
							|  |  |  | 		t.Errorf("Stat %q: size %d want %d", f.Name(), dir.Size(), size) | 
					
						
							| 
									
										
										
										
											2009-05-15 14:11:24 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-22 14:44:18 -04:00
										 |  |  | func TestFTruncate(t *testing.T) { | 
					
						
							|  |  |  | 	f := newFile("TestFTruncate", t) | 
					
						
							| 
									
										
										
										
											2010-07-13 10:31:51 +10:00
										 |  |  | 	defer Remove(f.Name()) | 
					
						
							|  |  |  | 	defer f.Close() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-04 17:31:49 +11:00
										 |  |  | 	checkSize(t, f, 0) | 
					
						
							| 
									
										
										
										
											2010-07-13 10:31:51 +10:00
										 |  |  | 	f.Write([]byte("hello, world\n")) | 
					
						
							| 
									
										
										
										
											2010-10-04 17:31:49 +11:00
										 |  |  | 	checkSize(t, f, 13) | 
					
						
							| 
									
										
										
										
											2010-07-13 10:31:51 +10:00
										 |  |  | 	f.Truncate(10) | 
					
						
							| 
									
										
										
										
											2010-10-04 17:31:49 +11:00
										 |  |  | 	checkSize(t, f, 10) | 
					
						
							| 
									
										
										
										
											2010-07-13 10:31:51 +10:00
										 |  |  | 	f.Truncate(1024) | 
					
						
							| 
									
										
										
										
											2010-10-04 17:31:49 +11:00
										 |  |  | 	checkSize(t, f, 1024) | 
					
						
							| 
									
										
										
										
											2010-07-13 10:31:51 +10:00
										 |  |  | 	f.Truncate(0) | 
					
						
							| 
									
										
										
										
											2010-10-04 17:31:49 +11:00
										 |  |  | 	checkSize(t, f, 0) | 
					
						
							| 
									
										
										
										
											2010-07-13 10:31:51 +10:00
										 |  |  | 	f.Write([]byte("surprise!")) | 
					
						
							| 
									
										
										
										
											2010-10-04 17:31:49 +11:00
										 |  |  | 	checkSize(t, f, 13+9) // wrote at offset past where hello, world was. | 
					
						
							| 
									
										
										
										
											2010-07-13 10:31:51 +10:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-22 14:44:18 -04:00
										 |  |  | func TestTruncate(t *testing.T) { | 
					
						
							|  |  |  | 	f := newFile("TestTruncate", t) | 
					
						
							|  |  |  | 	defer Remove(f.Name()) | 
					
						
							|  |  |  | 	defer f.Close() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	checkSize(t, f, 0) | 
					
						
							|  |  |  | 	f.Write([]byte("hello, world\n")) | 
					
						
							|  |  |  | 	checkSize(t, f, 13) | 
					
						
							|  |  |  | 	Truncate(f.Name(), 10) | 
					
						
							|  |  |  | 	checkSize(t, f, 10) | 
					
						
							|  |  |  | 	Truncate(f.Name(), 1024) | 
					
						
							|  |  |  | 	checkSize(t, f, 1024) | 
					
						
							|  |  |  | 	Truncate(f.Name(), 0) | 
					
						
							|  |  |  | 	checkSize(t, f, 0) | 
					
						
							|  |  |  | 	f.Write([]byte("surprise!")) | 
					
						
							|  |  |  | 	checkSize(t, f, 13+9) // wrote at offset past where hello, world was. | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-13 10:31:51 +10:00
										 |  |  | // Use TempDir() to make sure we're on a local file system, | 
					
						
							|  |  |  | // so that timings are not distorted by latency and caching. | 
					
						
							|  |  |  | // On NFS, timings can be off due to caching of meta-data on | 
					
						
							|  |  |  | // NFS servers (Issue 848). | 
					
						
							| 
									
										
										
										
											2010-05-19 17:48:53 -07:00
										 |  |  | func TestChtimes(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2010-07-13 10:31:51 +10:00
										 |  |  | 	f := newFile("TestChtimes", t) | 
					
						
							|  |  |  | 	defer Remove(f.Name()) | 
					
						
							|  |  |  | 	defer f.Close() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	f.Write([]byte("hello, world\n")) | 
					
						
							|  |  |  | 	f.Close() | 
					
						
							| 
									
										
										
										
											2010-05-19 17:48:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-30 12:04:16 -05:00
										 |  |  | 	st, err := Stat(f.Name()) | 
					
						
							| 
									
										
										
										
											2010-05-19 17:48:53 -07:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2010-07-13 10:31:51 +10:00
										 |  |  | 		t.Fatalf("Stat %s: %s", f.Name(), err) | 
					
						
							| 
									
										
										
										
											2010-05-19 17:48:53 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-02-03 00:16:18 -02:00
										 |  |  | 	preStat := st | 
					
						
							| 
									
										
										
										
											2010-05-19 17:48:53 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Move access and modification time back a second | 
					
						
							| 
									
										
										
										
											2011-11-30 12:04:16 -05:00
										 |  |  | 	at := Atime(preStat) | 
					
						
							|  |  |  | 	mt := preStat.ModTime() | 
					
						
							|  |  |  | 	err = Chtimes(f.Name(), at.Add(-time.Second), mt.Add(-time.Second)) | 
					
						
							| 
									
										
										
										
											2010-05-19 17:48:53 -07:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2010-07-13 10:31:51 +10:00
										 |  |  | 		t.Fatalf("Chtimes %s: %s", f.Name(), err) | 
					
						
							| 
									
										
										
										
											2010-05-19 17:48:53 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-30 12:04:16 -05:00
										 |  |  | 	st, err = Stat(f.Name()) | 
					
						
							| 
									
										
										
										
											2010-05-19 17:48:53 -07:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2010-07-13 10:31:51 +10:00
										 |  |  | 		t.Fatalf("second Stat %s: %s", f.Name(), err) | 
					
						
							| 
									
										
										
										
											2010-05-19 17:48:53 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-02-03 00:16:18 -02:00
										 |  |  | 	postStat := st | 
					
						
							| 
									
										
										
										
											2010-05-19 17:48:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-14 11:20:34 -04:00
										 |  |  | 	/* Plan 9: | 
					
						
							|  |  |  | 		Mtime is the time of the last change of content.  Similarly, atime is set whenever the | 
					
						
							|  |  |  | 	    contents are accessed; also, it is set whenever mtime is set. | 
					
						
							|  |  |  | 	*/ | 
					
						
							| 
									
										
										
										
											2011-11-30 12:04:16 -05:00
										 |  |  | 	pat := Atime(postStat) | 
					
						
							|  |  |  | 	pmt := postStat.ModTime() | 
					
						
							| 
									
										
										
										
											2012-01-14 06:40:55 +09:00
										 |  |  | 	if !pat.Before(at) && runtime.GOOS != "plan9" { | 
					
						
							| 
									
										
										
										
											2011-11-30 12:04:16 -05:00
										 |  |  | 		t.Errorf("AccessTime didn't go backwards; was=%d, after=%d", at, pat) | 
					
						
							| 
									
										
										
										
											2010-05-19 17:48:53 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-30 12:04:16 -05:00
										 |  |  | 	if !pmt.Before(mt) { | 
					
						
							|  |  |  | 		t.Errorf("ModTime didn't go backwards; was=%d, after=%d", mt, pmt) | 
					
						
							| 
									
										
										
										
											2010-05-19 17:48:53 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-18 10:49:34 -07:00
										 |  |  | func TestChdirAndGetwd(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2010-10-04 17:31:49 +11:00
										 |  |  | 	// TODO(brainman): file.Chdir() is not implemented on windows. | 
					
						
							| 
									
										
										
										
											2012-01-14 06:40:55 +09:00
										 |  |  | 	if runtime.GOOS == "windows" { | 
					
						
							| 
									
										
										
										
											2010-10-04 17:31:49 +11:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-04-04 23:42:14 -07:00
										 |  |  | 	fd, err := Open(".") | 
					
						
							| 
									
										
										
										
											2009-05-18 10:49:34 -07:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Fatalf("Open .: %s", err) | 
					
						
							| 
									
										
										
										
											2009-05-18 10:49:34 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	// These are chosen carefully not to be symlinks on a Mac | 
					
						
							|  |  |  | 	// (unlike, say, /var, /etc, and /tmp). | 
					
						
							| 
									
										
										
										
											2011-03-07 15:30:51 -08:00
										 |  |  | 	dirs := []string{"/", "/usr/bin"} | 
					
						
							| 
									
										
										
										
											2011-06-14 11:20:34 -04:00
										 |  |  | 	// /usr/bin does not usually exist on Plan 9. | 
					
						
							| 
									
										
										
										
											2012-01-14 06:40:55 +09:00
										 |  |  | 	if runtime.GOOS == "plan9" { | 
					
						
							| 
									
										
										
										
											2011-06-14 11:20:34 -04:00
										 |  |  | 		dirs = []string{"/", "/usr"} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-05-18 10:49:34 -07:00
										 |  |  | 	for mode := 0; mode < 2; mode++ { | 
					
						
							| 
									
										
										
										
											2009-09-15 09:41:59 -07:00
										 |  |  | 		for _, d := range dirs { | 
					
						
							| 
									
										
										
										
											2009-05-18 10:49:34 -07:00
										 |  |  | 			if mode == 0 { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 				err = Chdir(d) | 
					
						
							| 
									
										
										
										
											2009-05-18 10:49:34 -07:00
										 |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2011-04-04 23:42:14 -07:00
										 |  |  | 				fd1, err := Open(d) | 
					
						
							| 
									
										
										
										
											2009-05-18 10:49:34 -07:00
										 |  |  | 				if err != nil { | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 					t.Errorf("Open %s: %s", d, err) | 
					
						
							|  |  |  | 					continue | 
					
						
							| 
									
										
										
										
											2009-05-18 10:49:34 -07:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 				err = fd1.Chdir() | 
					
						
							|  |  |  | 				fd1.Close() | 
					
						
							| 
									
										
										
										
											2009-05-18 10:49:34 -07:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 			pwd, err1 := Getwd() | 
					
						
							|  |  |  | 			err2 := fd.Chdir() | 
					
						
							| 
									
										
										
										
											2009-05-18 10:49:34 -07:00
										 |  |  | 			if err2 != nil { | 
					
						
							|  |  |  | 				// We changed the current directory and cannot go back. | 
					
						
							|  |  |  | 				// Don't let the tests continue; they'll scribble | 
					
						
							|  |  |  | 				// all over some other directory. | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 				fmt.Fprintf(Stderr, "fchdir back to dot failed: %s\n", err2) | 
					
						
							|  |  |  | 				Exit(1) | 
					
						
							| 
									
										
										
										
											2009-05-18 10:49:34 -07:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			if err != nil { | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 				fd.Close() | 
					
						
							|  |  |  | 				t.Fatalf("Chdir %s: %s", d, err) | 
					
						
							| 
									
										
										
										
											2009-05-18 10:49:34 -07:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			if err1 != nil { | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 				fd.Close() | 
					
						
							|  |  |  | 				t.Fatalf("Getwd in %s: %s", d, err1) | 
					
						
							| 
									
										
										
										
											2009-05-18 10:49:34 -07:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			if pwd != d { | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 				fd.Close() | 
					
						
							|  |  |  | 				t.Fatalf("Getwd returned %q want %q", pwd, d) | 
					
						
							| 
									
										
										
										
											2009-05-18 10:49:34 -07:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	fd.Close() | 
					
						
							| 
									
										
										
										
											2009-05-18 10:49:34 -07:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2009-06-02 23:02:20 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-08 22:10:48 -07:00
										 |  |  | func TestSeek(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2010-07-13 10:31:51 +10:00
										 |  |  | 	f := newFile("TestSeek", t) | 
					
						
							|  |  |  | 	defer Remove(f.Name()) | 
					
						
							|  |  |  | 	defer f.Close() | 
					
						
							| 
									
										
										
										
											2009-06-08 22:10:48 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	const data = "hello, world\n" | 
					
						
							|  |  |  | 	io.WriteString(f, data) | 
					
						
							| 
									
										
										
										
											2009-06-08 22:10:48 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	type test struct { | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 		in     int64 | 
					
						
							|  |  |  | 		whence int | 
					
						
							|  |  |  | 		out    int64 | 
					
						
							| 
									
										
										
										
											2009-10-06 19:40:35 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	var tests = []test{ | 
					
						
							| 
									
										
										
										
											2010-10-22 10:06:33 -07:00
										 |  |  | 		{0, 1, int64(len(data))}, | 
					
						
							|  |  |  | 		{0, 0, 0}, | 
					
						
							|  |  |  | 		{5, 0, 5}, | 
					
						
							|  |  |  | 		{0, 2, int64(len(data))}, | 
					
						
							|  |  |  | 		{0, 0, 0}, | 
					
						
							|  |  |  | 		{-1, 2, int64(len(data)) - 1}, | 
					
						
							|  |  |  | 		{1 << 33, 0, 1 << 33}, | 
					
						
							|  |  |  | 		{1 << 33, 2, 1<<33 + int64(len(data))}, | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-06-08 22:10:48 -07:00
										 |  |  | 	for i, tt := range tests { | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 		off, err := f.Seek(tt.in, tt.whence) | 
					
						
							| 
									
										
										
										
											2009-06-08 22:10:48 -07:00
										 |  |  | 		if off != tt.out || err != nil { | 
					
						
							| 
									
										
										
										
											2012-02-17 10:04:29 +11:00
										 |  |  | 			if e, ok := err.(*PathError); ok && e.Err == syscall.EINVAL && tt.out > 1<<32 { | 
					
						
							| 
									
										
										
										
											2009-11-12 14:55:04 -08:00
										 |  |  | 				// Reiserfs rejects the big seeks. | 
					
						
							|  |  |  | 				// http://code.google.com/p/go/issues/detail?id=91 | 
					
						
							|  |  |  | 				break | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 			t.Errorf("#%d: Seek(%v, %v) = %v, %v want %v, nil", i, tt.in, tt.whence, off, err, tt.out) | 
					
						
							| 
									
										
										
										
											2009-06-08 22:10:48 -07:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-06-25 20:24:55 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | type openErrorTest struct { | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	path  string | 
					
						
							|  |  |  | 	mode  int | 
					
						
							| 
									
										
										
										
											2011-11-01 21:49:08 -04:00
										 |  |  | 	error error | 
					
						
							| 
									
										
										
										
											2009-06-25 20:24:55 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-06 19:40:35 -07:00
										 |  |  | var openErrorTests = []openErrorTest{ | 
					
						
							| 
									
										
										
										
											2010-10-22 10:06:33 -07:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-10-04 17:31:49 +11:00
										 |  |  | 		sfdir + "/no-such-file", | 
					
						
							| 
									
										
										
										
											2009-06-25 20:24:55 -07:00
										 |  |  | 		O_RDONLY, | 
					
						
							| 
									
										
										
										
											2012-02-17 10:04:29 +11:00
										 |  |  | 		syscall.ENOENT, | 
					
						
							| 
									
										
										
										
											2009-06-25 20:24:55 -07:00
										 |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2010-10-22 10:06:33 -07:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-10-04 17:31:49 +11:00
										 |  |  | 		sfdir, | 
					
						
							| 
									
										
										
										
											2009-06-25 20:24:55 -07:00
										 |  |  | 		O_WRONLY, | 
					
						
							| 
									
										
										
										
											2012-02-17 10:04:29 +11:00
										 |  |  | 		syscall.EISDIR, | 
					
						
							| 
									
										
										
										
											2009-06-25 20:24:55 -07:00
										 |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2010-10-22 10:06:33 -07:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-10-04 17:31:49 +11:00
										 |  |  | 		sfdir + "/" + sfname + "/no-such-file", | 
					
						
							| 
									
										
										
										
											2009-06-25 20:24:55 -07:00
										 |  |  | 		O_WRONLY, | 
					
						
							| 
									
										
										
										
											2012-02-17 10:04:29 +11:00
										 |  |  | 		syscall.ENOTDIR, | 
					
						
							| 
									
										
										
										
											2009-06-25 20:24:55 -07:00
										 |  |  | 	}, | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestOpenError(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2009-09-15 09:41:59 -07:00
										 |  |  | 	for _, tt := range openErrorTests { | 
					
						
							| 
									
										
										
										
											2011-04-04 23:42:14 -07:00
										 |  |  | 		f, err := OpenFile(tt.path, tt.mode, 0) | 
					
						
							| 
									
										
										
										
											2009-06-25 20:24:55 -07:00
										 |  |  | 		if err == nil { | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 			t.Errorf("Open(%q, %d) succeeded", tt.path, tt.mode) | 
					
						
							|  |  |  | 			f.Close() | 
					
						
							|  |  |  | 			continue | 
					
						
							| 
									
										
										
										
											2009-06-25 20:24:55 -07:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2010-10-04 17:31:49 +11:00
										 |  |  | 		perr, ok := err.(*PathError) | 
					
						
							|  |  |  | 		if !ok { | 
					
						
							| 
									
										
										
										
											2011-11-30 12:04:16 -05:00
										 |  |  | 			t.Errorf("Open(%q, %d) returns error of %T type; want *PathError", tt.path, tt.mode, err) | 
					
						
							| 
									
										
										
										
											2010-10-04 17:31:49 +11:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2011-11-01 21:49:08 -04:00
										 |  |  | 		if perr.Err != tt.error { | 
					
						
							| 
									
										
										
										
											2012-01-14 06:40:55 +09:00
										 |  |  | 			if runtime.GOOS == "plan9" { | 
					
						
							| 
									
										
										
										
											2011-11-01 21:49:08 -04:00
										 |  |  | 				syscallErrStr := perr.Err.Error() | 
					
						
							|  |  |  | 				expectedErrStr := strings.Replace(tt.error.Error(), "file ", "", 1) | 
					
						
							| 
									
										
										
										
											2011-06-14 11:20:34 -04:00
										 |  |  | 				if !strings.HasSuffix(syscallErrStr, expectedErrStr) { | 
					
						
							|  |  |  | 					t.Errorf("Open(%q, %d) = _, %q; want suffix %q", tt.path, tt.mode, syscallErrStr, expectedErrStr) | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2011-11-01 21:49:08 -04:00
										 |  |  | 				t.Errorf("Open(%q, %d) = _, %q; want %q", tt.path, tt.mode, perr.Err.Error(), tt.error.Error()) | 
					
						
							| 
									
										
										
										
											2011-06-14 11:20:34 -04:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2009-06-25 20:24:55 -07:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-06-29 13:44:46 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-26 11:01:49 +11:00
										 |  |  | func TestOpenNoName(t *testing.T) { | 
					
						
							|  |  |  | 	f, err := Open("") | 
					
						
							|  |  |  | 	if err == nil { | 
					
						
							|  |  |  | 		t.Fatal(`Open("") succeeded`) | 
					
						
							|  |  |  | 		f.Close() | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-29 13:44:46 -07:00
										 |  |  | func run(t *testing.T, cmd []string) string { | 
					
						
							|  |  |  | 	// Run /bin/hostname and collect output. | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	r, w, err := Pipe() | 
					
						
							| 
									
										
										
										
											2009-06-29 13:44:46 -07:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Fatal(err) | 
					
						
							| 
									
										
										
										
											2009-06-29 13:44:46 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-03-15 14:41:19 -04:00
										 |  |  | 	p, err := StartProcess("/bin/hostname", []string{"hostname"}, &ProcAttr{Files: []*File{nil, w, Stderr}}) | 
					
						
							| 
									
										
										
										
											2009-06-29 13:44:46 -07:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Fatal(err) | 
					
						
							| 
									
										
										
										
											2009-06-29 13:44:46 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	w.Close() | 
					
						
							| 
									
										
										
										
											2009-06-29 13:44:46 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	var b bytes.Buffer | 
					
						
							|  |  |  | 	io.Copy(&b, r) | 
					
						
							| 
									
										
										
										
											2012-02-20 15:36:08 +11:00
										 |  |  | 	_, err = p.Wait() | 
					
						
							| 
									
										
										
										
											2011-07-11 15:47:42 -07:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatalf("run hostname Wait: %v", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	err = p.Kill() | 
					
						
							|  |  |  | 	if err == nil { | 
					
						
							|  |  |  | 		t.Errorf("expected an error from Kill running 'hostname'") | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	output := b.String() | 
					
						
							| 
									
										
										
										
											2009-06-29 13:44:46 -07:00
										 |  |  | 	if n := len(output); n > 0 && output[n-1] == '\n' { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		output = output[0 : n-1] | 
					
						
							| 
									
										
										
										
											2009-06-29 13:44:46 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	if output == "" { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Fatalf("%v produced no output", cmd) | 
					
						
							| 
									
										
										
										
											2009-06-29 13:44:46 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	return output | 
					
						
							| 
									
										
										
										
											2009-06-29 13:44:46 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestHostname(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2010-10-04 17:31:49 +11:00
										 |  |  | 	// There is no other way to fetch hostname on windows, but via winapi. | 
					
						
							| 
									
										
										
										
											2011-06-14 11:20:34 -04:00
										 |  |  | 	// On Plan 9 it is can be taken from #c/sysname as Hostname() does. | 
					
						
							| 
									
										
										
										
											2012-01-14 06:40:55 +09:00
										 |  |  | 	if runtime.GOOS == "windows" || runtime.GOOS == "plan9" { | 
					
						
							| 
									
										
										
										
											2010-10-04 17:31:49 +11:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-08-22 23:24:16 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-29 13:44:46 -07:00
										 |  |  | 	// Check internal Hostname() against the output of /bin/hostname. | 
					
						
							| 
									
										
										
										
											2010-01-26 13:16:03 -08:00
										 |  |  | 	// Allow that the internal Hostname returns a Fully Qualified Domain Name | 
					
						
							|  |  |  | 	// and the /bin/hostname only returns the first component | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	hostname, err := Hostname() | 
					
						
							| 
									
										
										
										
											2009-06-29 13:44:46 -07:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Fatalf("%v", err) | 
					
						
							| 
									
										
										
										
											2009-06-29 13:44:46 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	want := run(t, []string{"/bin/hostname"}) | 
					
						
							| 
									
										
										
										
											2009-06-29 13:44:46 -07:00
										 |  |  | 	if hostname != want { | 
					
						
							| 
									
										
										
										
											2010-01-26 13:16:03 -08:00
										 |  |  | 		i := strings.Index(hostname, ".") | 
					
						
							|  |  |  | 		if i < 0 || hostname[0:i] != want { | 
					
						
							|  |  |  | 			t.Errorf("Hostname() = %q, want %q", hostname, want) | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2009-06-29 13:44:46 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-08-27 18:36:45 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | func TestReadAt(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2010-07-13 10:31:51 +10:00
										 |  |  | 	f := newFile("TestReadAt", t) | 
					
						
							|  |  |  | 	defer Remove(f.Name()) | 
					
						
							|  |  |  | 	defer f.Close() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	const data = "hello, world\n" | 
					
						
							|  |  |  | 	io.WriteString(f, data) | 
					
						
							| 
									
										
										
										
											2009-08-27 18:36:45 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	b := make([]byte, 5) | 
					
						
							|  |  |  | 	n, err := f.ReadAt(b, 7) | 
					
						
							| 
									
										
										
										
											2009-08-27 18:36:45 -07:00
										 |  |  | 	if err != nil || n != len(b) { | 
					
						
							| 
									
										
										
										
											2011-12-15 15:17:52 -08:00
										 |  |  | 		t.Fatalf("ReadAt 7: %d, %v", n, err) | 
					
						
							| 
									
										
										
										
											2009-08-27 18:36:45 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	if string(b) != "world" { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Fatalf("ReadAt 7: have %q want %q", string(b), "world") | 
					
						
							| 
									
										
										
										
											2009-08-27 18:36:45 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestWriteAt(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2010-07-13 10:31:51 +10:00
										 |  |  | 	f := newFile("TestWriteAt", t) | 
					
						
							|  |  |  | 	defer Remove(f.Name()) | 
					
						
							|  |  |  | 	defer f.Close() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-15 15:40:16 -08:00
										 |  |  | 	const data = "hello, world\n" | 
					
						
							|  |  |  | 	io.WriteString(f, data) | 
					
						
							| 
									
										
										
										
											2009-08-27 18:36:45 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-25 16:01:29 -08:00
										 |  |  | 	n, err := f.WriteAt([]byte("WORLD"), 7) | 
					
						
							| 
									
										
										
										
											2009-08-27 18:36:45 -07:00
										 |  |  | 	if err != nil || n != 5 { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Fatalf("WriteAt 7: %d, %v", n, err) | 
					
						
							| 
									
										
										
										
											2009-08-27 18:36:45 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-13 10:31:51 +10:00
										 |  |  | 	b, err := ioutil.ReadFile(f.Name()) | 
					
						
							| 
									
										
										
										
											2009-08-27 18:36:45 -07:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2010-07-13 10:31:51 +10:00
										 |  |  | 		t.Fatalf("ReadFile %s: %v", f.Name(), err) | 
					
						
							| 
									
										
										
										
											2009-08-27 18:36:45 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	if string(b) != "hello, WORLD\n" { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:07:39 -08:00
										 |  |  | 		t.Fatalf("after write: have %q want %q", string(b), "hello, WORLD\n") | 
					
						
							| 
									
										
										
										
											2009-08-27 18:36:45 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2010-09-22 13:12:25 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | func writeFile(t *testing.T, fname string, flag int, text string) string { | 
					
						
							| 
									
										
										
										
											2011-04-04 23:42:14 -07:00
										 |  |  | 	f, err := OpenFile(fname, flag, 0666) | 
					
						
							| 
									
										
										
										
											2010-09-22 13:12:25 +10:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatalf("Open: %v", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	n, err := io.WriteString(f, text) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatalf("WriteString: %d, %v", n, err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	f.Close() | 
					
						
							|  |  |  | 	data, err := ioutil.ReadFile(fname) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatalf("ReadFile: %v", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return string(data) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestAppend(t *testing.T) { | 
					
						
							|  |  |  | 	const f = "append.txt" | 
					
						
							|  |  |  | 	defer Remove(f) | 
					
						
							| 
									
										
										
										
											2011-04-04 23:42:14 -07:00
										 |  |  | 	s := writeFile(t, f, O_CREATE|O_TRUNC|O_RDWR, "new") | 
					
						
							| 
									
										
										
										
											2010-09-22 13:12:25 +10:00
										 |  |  | 	if s != "new" { | 
					
						
							|  |  |  | 		t.Fatalf("writeFile: have %q want %q", s, "new") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	s = writeFile(t, f, O_APPEND|O_RDWR, "|append") | 
					
						
							|  |  |  | 	if s != "new|append" { | 
					
						
							|  |  |  | 		t.Fatalf("writeFile: have %q want %q", s, "new|append") | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-04-22 15:31:25 +10:00
										 |  |  | 	s = writeFile(t, f, O_CREATE|O_APPEND|O_RDWR, "|append") | 
					
						
							|  |  |  | 	if s != "new|append|append" { | 
					
						
							|  |  |  | 		t.Fatalf("writeFile: have %q want %q", s, "new|append|append") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	err := Remove(f) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatalf("Remove: %v", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	s = writeFile(t, f, O_CREATE|O_APPEND|O_RDWR, "new&append") | 
					
						
							|  |  |  | 	if s != "new&append" { | 
					
						
							| 
									
										
										
										
											2011-05-27 17:02:24 +10:00
										 |  |  | 		t.Fatalf("writeFile: after append have %q want %q", s, "new&append") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	s = writeFile(t, f, O_CREATE|O_RDWR, "old") | 
					
						
							|  |  |  | 	if s != "old&append" { | 
					
						
							|  |  |  | 		t.Fatalf("writeFile: after create have %q want %q", s, "old&append") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	s = writeFile(t, f, O_CREATE|O_TRUNC|O_RDWR, "new") | 
					
						
							|  |  |  | 	if s != "new" { | 
					
						
							|  |  |  | 		t.Fatalf("writeFile: after truncate have %q want %q", s, "new") | 
					
						
							| 
									
										
										
										
											2011-04-22 15:31:25 +10:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-09-22 13:12:25 +10:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2010-10-30 23:06:49 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  | func TestStatDirWithTrailingSlash(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2012-02-16 17:05:43 +11:00
										 |  |  | 	// Create new temporary directory and arrange to clean it up. | 
					
						
							|  |  |  | 	path, err := ioutil.TempDir("", "/_TestStatDirWithSlash_") | 
					
						
							| 
									
										
										
										
											2010-10-30 23:06:49 +11:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2012-02-16 17:05:43 +11:00
										 |  |  | 		t.Fatalf("TempDir: %s", err) | 
					
						
							| 
									
										
										
										
											2010-10-30 23:06:49 +11:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-12-10 10:43:45 +11:00
										 |  |  | 	defer RemoveAll(path) | 
					
						
							| 
									
										
										
										
											2010-10-30 23:06:49 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Stat of path should succeed. | 
					
						
							|  |  |  | 	_, err = Stat(path) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2012-02-16 17:05:43 +11:00
										 |  |  | 		t.Fatalf("stat %s failed: %s", path, err) | 
					
						
							| 
									
										
										
										
											2010-10-30 23:06:49 +11:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Stat of path+"/" should succeed too. | 
					
						
							| 
									
										
										
										
											2012-02-16 17:05:43 +11:00
										 |  |  | 	path += "/" | 
					
						
							|  |  |  | 	_, err = Stat(path) | 
					
						
							| 
									
										
										
										
											2010-10-30 23:06:49 +11:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2012-02-16 17:05:43 +11:00
										 |  |  | 		t.Fatalf("stat %s failed: %s", path, err) | 
					
						
							| 
									
										
										
										
											2010-10-30 23:06:49 +11:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2011-06-20 15:42:17 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-21 14:10:34 +11:00
										 |  |  | func TestNilProcessStateString(t *testing.T) { | 
					
						
							|  |  |  | 	var ps *ProcessState | 
					
						
							|  |  |  | 	s := ps.String() | 
					
						
							| 
									
										
										
										
											2011-06-20 15:42:17 -04:00
										 |  |  | 	if s != "<nil>" { | 
					
						
							| 
									
										
										
										
											2012-02-21 14:10:34 +11:00
										 |  |  | 		t.Errorf("(*ProcessState)(nil).String() = %q, want %q", s, "<nil>") | 
					
						
							| 
									
										
										
										
											2011-06-20 15:42:17 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2012-02-27 12:29:33 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  | func TestSameFile(t *testing.T) { | 
					
						
							|  |  |  | 	fa, err := Create("a") | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatalf("Create(a): %v", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	defer Remove(fa.Name()) | 
					
						
							|  |  |  | 	fa.Close() | 
					
						
							|  |  |  | 	fb, err := Create("b") | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatalf("Create(b): %v", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	defer Remove(fb.Name()) | 
					
						
							|  |  |  | 	fb.Close() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ia1, err := Stat("a") | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatalf("Stat(a): %v", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	ia2, err := Stat("a") | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatalf("Stat(a): %v", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if !SameFile(ia1, ia2) { | 
					
						
							|  |  |  | 		t.Errorf("files should be same") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ib, err := Stat("b") | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatalf("Stat(b): %v", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if SameFile(ia1, ib) { | 
					
						
							|  |  |  | 		t.Errorf("files should be different") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2012-03-15 16:33:45 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  | func TestDevNullFile(t *testing.T) { | 
					
						
							|  |  |  | 	f, err := Open(DevNull) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatalf("Open(%s): %v", DevNull, err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	defer f.Close() | 
					
						
							|  |  |  | 	fi, err := f.Stat() | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatalf("Stat(%s): %v", DevNull, err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	name := filepath.Base(DevNull) | 
					
						
							|  |  |  | 	if fi.Name() != name { | 
					
						
							|  |  |  | 		t.Fatalf("wrong file name have %v want %v", fi.Name(), name) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if fi.Size() != 0 { | 
					
						
							|  |  |  | 		t.Fatalf("wrong file size have %d want 0", fi.Size()) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2012-09-19 16:55:21 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | var testLargeWrite = flag.Bool("large_write", false, "run TestLargeWriteToConsole test that floods console with output") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestLargeWriteToConsole(t *testing.T) { | 
					
						
							|  |  |  | 	if !*testLargeWrite { | 
					
						
							|  |  |  | 		t.Logf("skipping console-flooding test; enable with -large_write") | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	b := make([]byte, 32000) | 
					
						
							|  |  |  | 	for i := range b { | 
					
						
							|  |  |  | 		b[i] = '.' | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	b[len(b)-1] = '\n' | 
					
						
							|  |  |  | 	n, err := Stdout.Write(b) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatalf("Write to os.Stdout failed: %v", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if n != len(b) { | 
					
						
							|  |  |  | 		t.Errorf("Write to os.Stdout should return %d; got %d", len(b), n) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	n, err = Stderr.Write(b) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatalf("Write to os.Stderr failed: %v", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if n != len(b) { | 
					
						
							|  |  |  | 		t.Errorf("Write to os.Stderr should return %d; got %d", len(b), n) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } |