This repository has been archived on 2024-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
Files
srv/file/file_test.go
Shay Elmualem 45320c8265 Add test cases (#26)
* Add tests for the Exists function

* Add tests for the StripHTMLTags function
2020-10-07 09:13:57 -04:00

44 lines
803 B
Go

package file
import (
"fmt"
"testing"
"time"
"github.com/spf13/afero"
)
var FakeFs = afero.NewOsFs()
func TestExists(t *testing.T) {
t.Run("expects file to exist", func(t *testing.T) {
input, _ := afero.TempFile(FakeFs, ".", "")
defer removeFile(input.Name(), t)
got := Exists(input.Name())
expect := true
if got != expect {
t.Errorf("Expected file %s to exist.", input.Name())
}
})
t.Run("expects file to not exist", func(t *testing.T) {
input := fmt.Sprintf("test_file_%d", time.Now().UnixNano())
got := Exists(input)
expect := false
if got != expect {
t.Errorf("Expected file %s to not exist", input)
}
})
}
func removeFile(name string, t *testing.T) {
err := FakeFs.Remove(name)
if err != nil {
t.Errorf("Did not cleanly delete file %s", name)
}
}