fileutils_test.go 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. package fileutils
  2. import (
  3. "os"
  4. "path/filepath"
  5. "testing"
  6. )
  7. const (
  8. testDirRelativePath = "./test_dir"
  9. )
  10. func TestPathExists(t *testing.T) {
  11. exist := PathExists("../fileutils")
  12. if !exist {
  13. t.Fatal("应该存在的目录不存在")
  14. }
  15. exist = PathExists("foo")
  16. if exist {
  17. t.Fatal("不应该存在的目录存在")
  18. }
  19. }
  20. func TestGetDirFiles(t *testing.T) {
  21. checkTestDir(t, testDirRelativePath)
  22. }
  23. func TestZip(t *testing.T) {
  24. zipFileRelativePath := "test.zip"
  25. destUnzipFileDir := "./unzip_file_test_dir"
  26. destUnzipBytesDir := "./unzip_bytes_test_dir"
  27. err := ZipDir(testDirRelativePath, zipFileRelativePath)
  28. if err != nil {
  29. t.Fatal(err)
  30. }
  31. defer func() {
  32. err := os.RemoveAll(zipFileRelativePath)
  33. if err != nil {
  34. t.Fatal(err)
  35. }
  36. }()
  37. err = UnzipFile(zipFileRelativePath, destUnzipFileDir)
  38. if err != nil {
  39. t.Fatal(err)
  40. }
  41. defer func() {
  42. err := os.RemoveAll(destUnzipFileDir)
  43. if err != nil {
  44. t.Fatal(err)
  45. }
  46. }()
  47. checkTestDir(t, filepath.Join(destUnzipFileDir, "test_dir"))
  48. fileBytes, err := os.ReadFile(zipFileRelativePath)
  49. if err != nil {
  50. t.Fatal(err)
  51. }
  52. err = UnzipBytes(fileBytes, destUnzipBytesDir)
  53. if err != nil {
  54. t.Fatal(err)
  55. }
  56. defer func() {
  57. err := os.RemoveAll(destUnzipBytesDir)
  58. if err != nil {
  59. t.Fatal(err)
  60. }
  61. }()
  62. checkTestDir(t, filepath.Join(destUnzipBytesDir, "test_dir"))
  63. }
  64. func checkTestDir(t *testing.T, dirPath string) {
  65. filePaths, err := GetDirFiles(dirPath)
  66. if err != nil {
  67. t.Fatal(err)
  68. }
  69. if len(filePaths) != 2 {
  70. t.Fatal("文件数量不正确")
  71. }
  72. for _, filePath := range filePaths {
  73. if filePath != filepath.Join(dirPath, "test.txt") && filePath != filepath.Join(dirPath, "test_sub_dir/test_sub.txt") {
  74. t.Fatal("出现不存在的文件")
  75. }
  76. }
  77. }