Skip to content

Commit

Permalink
Merge pull request #5913 from hashicorp/f-fix-contenttype-tests
Browse files Browse the repository at this point in the history
Fixed test case for detecting content type
  • Loading branch information
Preetha authored Jul 2, 2019
2 parents e580c98 + 6c52f84 commit b57ea22
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 6 deletions.
5 changes: 3 additions & 2 deletions client/allocdir/alloc_dir_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -489,14 +489,15 @@ func TestAllocDir_DetectContentType(t *testing.T) {
"input/happy.gif": "image/gif",
"input/image.png": "image/png",
"input/nomad.jpg": "image/jpeg",
"input/test.go": "application/octet-stream",
"input/test.bin": "application/octet-stream",
"input/test.json": "application/json",
"input/test.txt": "text/plain; charset=utf-8",
"input/test.go": "text/plain; charset=utf-8",
}
for _, file := range testFiles {
fileInfo, err := os.Stat(file)
require.Nil(err)
res := detectContentType(fileInfo, file)
require.Equal(expectedEncodings[file], res)
require.Equal(expectedEncodings[file], res, "unexpected output for %v", file)
}
}
Binary file added client/allocdir/input/test.bin
Binary file not shown.
25 changes: 21 additions & 4 deletions client/allocdir/input/test.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,26 @@
package main
package allocdir

import (
"fmt"
"os"
"syscall"
)

func main() {
fmt.Println("Hello, playground")
// linkDir hardlinks src to dst. The src and dst must be on the same filesystem.
func linkDir(src, dst string) error {
return syscall.Link(src, dst)
}

// unlinkDir removes a directory link.
func unlinkDir(dir string) error {
return syscall.Unlink(dir)
}

// createSecretDir creates the secrets dir folder at the given path
func createSecretDir(dir string) error {
return os.MkdirAll(dir, 0777)
}

// removeSecretDir removes the secrets dir folder
func removeSecretDir(dir string) error {
return os.RemoveAll(dir)
}

0 comments on commit b57ea22

Please sign in to comment.