mirror of
https://github.com/hashicorp/terraform.git
synced 2026-02-19 02:39:17 -05:00
46 lines
1.1 KiB
Go
46 lines
1.1 KiB
Go
// Copyright IBM Corp. 2014, 2026
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package command
|
|
|
|
import (
|
|
"path/filepath"
|
|
"regexp"
|
|
"sort"
|
|
"testing"
|
|
|
|
"github.com/hashicorp/terraform/internal/command/arguments"
|
|
"github.com/hashicorp/terraform/internal/states/statemgr"
|
|
)
|
|
|
|
// testStateBackups returns the list of backups in order of creation
|
|
// (oldest first) in the given directory.
|
|
func testStateBackups(t *testing.T, dir string) []string {
|
|
// Find all the backups
|
|
list, err := filepath.Glob(filepath.Join(dir, "*"+DefaultBackupExtension))
|
|
if err != nil {
|
|
t.Fatalf("err: %s", err)
|
|
}
|
|
|
|
// Sort them which will put them naturally in the right order
|
|
sort.Strings(list)
|
|
|
|
return list
|
|
}
|
|
|
|
func TestStateDefaultBackupExtension(t *testing.T) {
|
|
tmp := t.TempDir()
|
|
t.Chdir(tmp)
|
|
|
|
view := arguments.ViewHuman
|
|
s, err := (&StateMeta{}).State(view)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
backupPath := s.(*statemgr.Filesystem).BackupPath()
|
|
match := regexp.MustCompile(`terraform\.tfstate\.\d+\.backup$`).MatchString
|
|
if !match(backupPath) {
|
|
t.Fatal("Bad backup path:", backupPath)
|
|
}
|
|
}
|