Skip to content

Commit 92ffe78

Browse files
authored
Merge pull request #4 from mona-actions/amenocal/zip-archive
adds new retar function, checks for errors
2 parents f40a2e9 + 9ff0463 commit 92ffe78

File tree

5 files changed

+129
-10
lines changed

5 files changed

+129
-10
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ CLI tool to remap commits during a migration after a history rewrite
55
## Install
66

77
```bash
8-
gh extension install kuhlman-labs/gh-commit-remap
8+
gh extension install mona-actions/gh-commit-remap
99
```
1010

1111
## Upgrade
@@ -27,5 +27,5 @@ Usage:
2727
Flags:
2828
-h, --help help for gh-commit-remap
2929
-c, --mapping-file string Path to the commit map file Example: /path/to/commit-map
30-
-m, --migration-archive string Path to the migration archive Example: /path/to/migration-archive.tar.gz
30+
-m, --migration-archive string Path to the migration archive Example: /path/to/migration-archive
3131
```

cmd/root.go

+13-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import (
77
"log"
88
"os"
99

10+
"github.com/mona-actions/gh-commit-remap/internal/archive"
1011
"github.com/mona-actions/gh-commit-remap/internal/commitremap"
1112
"github.com/spf13/cobra"
1213
)
@@ -37,7 +38,18 @@ var rootCmd = &cobra.Command{
3738

3839
archivePath, _ := cmd.Flags().GetString("migration-archive")
3940

40-
commitremap.ProcessFiles(archivePath, types, commitMap)
41+
err = commitremap.ProcessFiles(archivePath, types, commitMap)
42+
if err != nil {
43+
log.Fatal(err)
44+
}
45+
46+
tarPath, err := archive.ReTar(archivePath)
47+
if err != nil {
48+
log.Fatal(err)
49+
}
50+
51+
log.Printf("New archive created: %s", tarPath)
52+
4153
},
4254
}
4355

internal/archive/archive.go

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
package archive
2+
3+
import (
4+
"fmt"
5+
"os/exec"
6+
"path/filepath"
7+
)
8+
9+
// reTarFiles creates a new tar archive from the files in the given directory.
10+
// The name of the archive is the same as the directory name.
11+
func ReTar(archivePath string) (string, error) {
12+
// Extract the directory name from the archivePath
13+
dirName := filepath.Base(archivePath)
14+
15+
// Create the name of the new archive
16+
archiveName := dirName + ".tar.gz"
17+
18+
err := checkTarAvailability()
19+
if err != nil {
20+
return "", err
21+
}
22+
23+
// Create and run the tar command
24+
tarCmd := exec.Command("tar", "-czf", archiveName, "-C", archivePath, ".")
25+
err = tarCmd.Run()
26+
if err != nil {
27+
return "", fmt.Errorf("error re-tarring the files: %w", err)
28+
}
29+
30+
return archiveName, nil
31+
}
32+
33+
// checkTarAvailability checks if the 'tar' command is available in the system's PATH.
34+
func checkTarAvailability() error {
35+
_, err := exec.LookPath("tar")
36+
return err
37+
}

internal/archive/archive_test.go

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
package archive
2+
3+
import (
4+
"bytes"
5+
"os"
6+
"os/exec"
7+
"path/filepath"
8+
"testing"
9+
)
10+
11+
func TestReTar(t *testing.T) {
12+
// Create a temporary directory
13+
tempDir, err := os.MkdirTemp("", "test")
14+
if err != nil {
15+
t.Fatalf("Failed to create temp directory: %v", err)
16+
}
17+
defer os.RemoveAll(tempDir)
18+
19+
// Create a file in the temporary directory
20+
tempFile := filepath.Join(tempDir, "testfile")
21+
origContent := []byte("test")
22+
if err := os.WriteFile(tempFile, origContent, 0644); err != nil {
23+
t.Fatalf("Failed to write temp file: %v", err)
24+
}
25+
26+
// Call the function under test
27+
tarFile, err := ReTar(tempDir)
28+
if err != nil {
29+
t.Fatalf("ReTar failed: %v", err)
30+
}
31+
32+
// Check if the tar file was created
33+
if _, err := os.Stat(tarFile); os.IsNotExist(err) {
34+
t.Fatalf("Tar file was not created: %v", err)
35+
}
36+
37+
// Ensure the tar file is removed after the test
38+
defer os.Remove(tarFile)
39+
40+
// Extract the tar file to a new directory
41+
extractDir, err := os.MkdirTemp("", "extract")
42+
if err != nil {
43+
t.Fatalf("Failed to create extract directory: %v", err)
44+
}
45+
defer os.RemoveAll(extractDir)
46+
47+
tarCmd := exec.Command("tar", "-xzf", tarFile, "-C", extractDir)
48+
err = tarCmd.Run()
49+
if err != nil {
50+
t.Fatalf("Failed to extract tar file: %v", err)
51+
}
52+
53+
// Read the contents of the extracted file
54+
extractedFile := filepath.Join(extractDir, "testfile")
55+
extractedContent, err := os.ReadFile(extractedFile)
56+
if err != nil {
57+
t.Fatalf("Failed to read extracted file: %v", err)
58+
}
59+
60+
// Compare the contents of the original file and the extracted file
61+
if !bytes.Equal(origContent, extractedContent) {
62+
t.Fatalf("Original file content and extracted file content do not match")
63+
}
64+
}

internal/commitremap/commitremap.go

+13-7
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ func ParseCommitMap(filePath string) (*[]CommitMapEntry, error) {
4646
return &commitMap, nil
4747
}
4848

49-
func ProcessFiles(archiveLocation string, prefixes []string, commitMap *[]CommitMapEntry) {
49+
func ProcessFiles(archiveLocation string, prefixes []string, commitMap *[]CommitMapEntry) error {
5050

5151
for _, prefix := range prefixes {
5252
// Get a list of all files that match the pattern
@@ -59,22 +59,26 @@ func ProcessFiles(archiveLocation string, prefixes []string, commitMap *[]Commit
5959
for _, file := range files {
6060
log.Println("Processing file:", file)
6161

62-
updateMetadataFile(file, commitMap)
62+
err := updateMetadataFile(file, commitMap)
63+
if err != nil {
64+
return fmt.Errorf("Error updating metadata file: %v; %v", file, err)
65+
}
6366
}
6467
}
68+
return nil
6569
}
6670

67-
func updateMetadataFile(filePath string, commitMap *[]CommitMapEntry) {
71+
func updateMetadataFile(filePath string, commitMap *[]CommitMapEntry) error {
6872
// Read the JSON file
6973
data, err := os.ReadFile(filePath)
7074
if err != nil {
71-
log.Fatalf("Error reading data: %v", err)
75+
return fmt.Errorf("Error reading data: %v", err)
7276
}
7377

7478
var dataMap interface{}
7579
err = json.Unmarshal(data, &dataMap)
7680
if err != nil {
77-
log.Fatalf("Error unmarshaling data: %v", err)
81+
return fmt.Errorf("Error unmarshaling data: %v", err)
7882
}
7983

8084
// Iterate over the commit map and replace the old commit hashes with the new ones
@@ -85,14 +89,16 @@ func updateMetadataFile(filePath string, commitMap *[]CommitMapEntry) {
8589
// Marshal the updated data to JSON and pretty print it
8690
updatedData, err := json.MarshalIndent(dataMap, "", " ")
8791
if err != nil {
88-
log.Fatalf("Error marshaling updated data: %v", err)
92+
return fmt.Errorf("Error marshaling updated data: %v", err)
8993
}
9094

9195
// Overwrite the original file with the updated data
9296
err = os.WriteFile(filePath, updatedData, 0644)
9397
if err != nil {
94-
log.Fatalf("Error writing updated data: %v", err)
98+
return fmt.Errorf("Error writing updated data: %v", err)
9599
}
100+
101+
return nil
96102
}
97103

98104
func replaceSHA(data interface{}, oldSHA string, newSHA string) {

0 commit comments

Comments
 (0)