(Chore): Added unit tests detection and rar.go

This commit is contained in:
2025-11-22 08:28:33 +00:00
parent 9424c8aa50
commit e6f1382691
2 changed files with 173 additions and 0 deletions

View File

@@ -25,8 +25,10 @@ func TestDetectArchiveTypeByExtension(t *testing.T) {
{"targz_extension", "test.tar.gz", models.TARGZ},
{"tgz_extension", "test.tgz", models.TARGZ},
{"gz_extension", "test.gz", models.GZIP},
{"rar_extension", "test.rar", models.RAR},
{"uppercase_zip", "test.ZIP", models.ZIP},
{"uppercase_tar", "test.TAR", models.TAR},
{"uppercase_rar", "test.RAR", models.RAR},
}
for _, tc := range testCases {
@@ -222,6 +224,37 @@ func TestDetectGzipMagicBytes(t *testing.T) {
}
}
func TestDetectRarMagicBytes(t *testing.T) {
tmpDir, err := os.MkdirTemp("", "zipprine-rar-test-*")
if err != nil {
t.Fatalf("Failed to create temp dir: %v", err)
}
defer os.RemoveAll(tmpDir)
// Create a file with RAR magic bytes (no .rar extension)
testFile := filepath.Join(tmpDir, "test.bin")
file, err := os.Create(testFile)
if err != nil {
t.Fatalf("Failed to create test file: %v", err)
}
// Write RAR magic bytes: "Rar!" (0x52 0x61 0x72 0x21)
rarMagic := []byte{0x52, 0x61, 0x72, 0x21, 0x1A, 0x07, 0x00}
if _, err := file.Write(rarMagic); err != nil {
t.Fatalf("Failed to write RAR magic bytes: %v", err)
}
file.Close()
detectedType, err := DetectArchiveType(testFile)
if err != nil {
t.Fatalf("DetectArchiveType failed: %v", err)
}
if detectedType != models.RAR {
t.Errorf("Expected RAR, got %s", detectedType)
}
}
func TestDetectNonExistentFile(t *testing.T) {
// DetectArchiveType returns type based on extension without checking file existence
// This is by design - it detects type, not validates existence

View File

@@ -0,0 +1,140 @@
package archiver
import (
"os"
"path/filepath"
"testing"
"zipprine/internal/models"
)
func TestCreateRarNotSupported(t *testing.T) {
config := &models.CompressConfig{
SourcePath: "/tmp/test",
OutputPath: "/tmp/test.rar",
ArchiveType: models.RAR,
}
err := createRar(config)
if err == nil {
t.Error("Expected error for RAR compression, got nil")
}
expectedMsg := "RAR compression is not supported"
if err != nil && err.Error()[:len(expectedMsg)] != expectedMsg {
t.Errorf("Expected error message to start with %q, got %q", expectedMsg, err.Error())
}
}
func TestRARDetectionByExtension(t *testing.T) {
// Create a temporary file with .rar extension
tempDir := t.TempDir()
rarFile := filepath.Join(tempDir, "test.rar")
// Create a file with RAR magic bytes
file, err := os.Create(rarFile)
if err != nil {
t.Fatalf("Failed to create test file: %v", err)
}
// Write RAR magic bytes: "Rar!" (0x52 0x61 0x72 0x21)
rarMagic := []byte{0x52, 0x61, 0x72, 0x21, 0x1A, 0x07, 0x00}
if _, err := file.Write(rarMagic); err != nil {
t.Fatalf("Failed to write magic bytes: %v", err)
}
file.Close()
// Test detection
archiveType, err := DetectArchiveType(rarFile)
if err != nil {
t.Fatalf("Failed to detect archive type: %v", err)
}
if archiveType != models.RAR {
t.Errorf("Expected RAR archive type, got %s", archiveType)
}
}
func TestRARDetectionByMagicBytes(t *testing.T) {
// Create a temporary file without .rar extension
tempDir := t.TempDir()
testFile := filepath.Join(tempDir, "test.bin")
file, err := os.Create(testFile)
if err != nil {
t.Fatalf("Failed to create test file: %v", err)
}
// Write RAR magic bytes
rarMagic := []byte{0x52, 0x61, 0x72, 0x21, 0x1A, 0x07, 0x00}
if _, err := file.Write(rarMagic); err != nil {
t.Fatalf("Failed to write magic bytes: %v", err)
}
file.Close()
// Test detection by magic bytes
archiveType, err := DetectArchiveType(testFile)
if err != nil {
t.Fatalf("Failed to detect archive type: %v", err)
}
if archiveType != models.RAR {
t.Errorf("Expected RAR archive type by magic bytes, got %s", archiveType)
}
}
func TestExtractRarInvalidFile(t *testing.T) {
tempDir := t.TempDir()
invalidRar := filepath.Join(tempDir, "invalid.rar")
// Create an invalid RAR file
if err := os.WriteFile(invalidRar, []byte("not a rar file"), 0644); err != nil {
t.Fatalf("Failed to create test file: %v", err)
}
config := &models.ExtractConfig{
ArchivePath: invalidRar,
DestPath: filepath.Join(tempDir, "output"),
ArchiveType: models.RAR,
}
err := extractRar(config)
if err == nil {
t.Error("Expected error for invalid RAR file, got nil")
}
}
func TestExtractRarNonExistentFile(t *testing.T) {
config := &models.ExtractConfig{
ArchivePath: "/nonexistent/file.rar",
DestPath: "/tmp/output",
ArchiveType: models.RAR,
}
err := extractRar(config)
if err == nil {
t.Error("Expected error for non-existent file, got nil")
}
}
func TestAnalyzeRarInvalidFile(t *testing.T) {
tempDir := t.TempDir()
invalidRar := filepath.Join(tempDir, "invalid.rar")
// Create an invalid RAR file
if err := os.WriteFile(invalidRar, []byte("not a rar file"), 0644); err != nil {
t.Fatalf("Failed to create test file: %v", err)
}
_, err := analyzeRar(invalidRar)
if err == nil {
t.Error("Expected error for invalid RAR file, got nil")
}
}
func TestAnalyzeRarNonExistentFile(t *testing.T) {
_, err := analyzeRar("/nonexistent/file.rar")
if err == nil {
t.Error("Expected error for non-existent file, got nil")
}
}