|
| 1 | +package cmd |
| 2 | + |
| 3 | +import ( |
| 4 | + "os" |
| 5 | + "path" |
| 6 | + "testing" |
| 7 | + |
| 8 | + "github.com/spf13/viper" |
| 9 | + "github.com/stretchr/testify/assert" |
| 10 | + "gopkg.in/yaml.v3" |
| 11 | +) |
| 12 | + |
| 13 | +func runCmd(t *testing.T, args ...string) error { |
| 14 | + t.Helper() |
| 15 | + |
| 16 | + viper.Reset() |
| 17 | + rootCmd.SetArgs(args) |
| 18 | + |
| 19 | + err := rootCmd.Execute() |
| 20 | + return err |
| 21 | +} |
| 22 | + |
| 23 | +func TestBackupCmd(t *testing.T) { |
| 24 | + t.Run("simple local backup and restore", func(t *testing.T) { |
| 25 | + workDir := t.TempDir() |
| 26 | + |
| 27 | + // Prepare content to be backed up |
| 28 | + locationDir := path.Join(workDir, "my-location") |
| 29 | + err := os.Mkdir(locationDir, 0750) |
| 30 | + assert.Nil(t, err) |
| 31 | + err = os.WriteFile(path.Join(locationDir, "back-me-up.txt"), []byte("hello world"), 0640) |
| 32 | + assert.Nil(t, err) |
| 33 | + |
| 34 | + // Write config file |
| 35 | + config, err := yaml.Marshal(map[string]interface{}{ |
| 36 | + "version": 2, |
| 37 | + "locations": map[string]map[string]interface{}{ |
| 38 | + "my-location": { |
| 39 | + "type": "local", |
| 40 | + "from": []string{locationDir}, |
| 41 | + "to": []string{"test"}, |
| 42 | + }, |
| 43 | + }, |
| 44 | + "backends": map[string]map[string]interface{}{ |
| 45 | + "test": { |
| 46 | + "type": "local", |
| 47 | + "path": path.Join(workDir, "test-backend"), |
| 48 | + "key": "supersecret", |
| 49 | + }, |
| 50 | + }, |
| 51 | + }) |
| 52 | + assert.Nil(t, err) |
| 53 | + configPath := path.Join(workDir, ".autorestic.yml") |
| 54 | + err = os.WriteFile(configPath, config, 0640) |
| 55 | + assert.Nil(t, err) |
| 56 | + |
| 57 | + // Init repo (not initialized by default) |
| 58 | + err = runCmd(t, "exec", "--ci", "-a", "-c", configPath, "init") |
| 59 | + assert.Nil(t, err) |
| 60 | + |
| 61 | + // Do the backup |
| 62 | + err = runCmd(t, "backup", "--ci", "-a", "-c", configPath) |
| 63 | + assert.Nil(t, err) |
| 64 | + |
| 65 | + // Restore in a separate dir |
| 66 | + restoreDir := path.Join(workDir, "restore") |
| 67 | + err = runCmd(t, "restore", "--ci", "-c", configPath, "-l", "my-location", "--to", restoreDir) |
| 68 | + assert.Nil(t, err) |
| 69 | + |
| 70 | + // Check restored file |
| 71 | + restoredContent, err := os.ReadFile(path.Join(restoreDir, locationDir, "back-me-up.txt")) |
| 72 | + assert.Nil(t, err) |
| 73 | + assert.Equal(t, "hello world", string(restoredContent)) |
| 74 | + }) |
| 75 | +} |
0 commit comments