mirror of
https://github.com/octoleo/restic.git
synced 2024-11-23 21:27:34 +00:00
76 lines
2.3 KiB
Go
76 lines
2.3 KiB
Go
package restore
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/restic/restic/internal/test"
|
|
)
|
|
|
|
type mockTerm struct {
|
|
output []string
|
|
}
|
|
|
|
func (m *mockTerm) Print(line string) {
|
|
m.output = append(m.output, line)
|
|
}
|
|
|
|
func (m *mockTerm) SetStatus(lines []string) {
|
|
m.output = append([]string{}, lines...)
|
|
}
|
|
|
|
func createTextProgress() (*mockTerm, ProgressPrinter) {
|
|
term := &mockTerm{}
|
|
printer := NewTextProgress(term, 3)
|
|
return term, printer
|
|
}
|
|
|
|
func TestPrintUpdate(t *testing.T) {
|
|
term, printer := createTextProgress()
|
|
printer.Update(State{3, 11, 0, 29, 47, 0}, 5*time.Second)
|
|
test.Equals(t, []string{"[0:05] 61.70% 3 files/dirs 29 B, total 11 files/dirs 47 B"}, term.output)
|
|
}
|
|
|
|
func TestPrintUpdateWithSkipped(t *testing.T) {
|
|
term, printer := createTextProgress()
|
|
printer.Update(State{3, 11, 2, 29, 47, 59}, 5*time.Second)
|
|
test.Equals(t, []string{"[0:05] 61.70% 3 files/dirs 29 B, total 11 files/dirs 47 B, skipped 2 files/dirs 59 B"}, term.output)
|
|
}
|
|
|
|
func TestPrintSummaryOnSuccess(t *testing.T) {
|
|
term, printer := createTextProgress()
|
|
printer.Finish(State{11, 11, 0, 47, 47, 0}, 5*time.Second)
|
|
test.Equals(t, []string{"Summary: Restored 11 files/dirs (47 B) in 0:05"}, term.output)
|
|
}
|
|
|
|
func TestPrintSummaryOnErrors(t *testing.T) {
|
|
term, printer := createTextProgress()
|
|
printer.Finish(State{3, 11, 0, 29, 47, 0}, 5*time.Second)
|
|
test.Equals(t, []string{"Summary: Restored 3 / 11 files/dirs (29 B / 47 B) in 0:05"}, term.output)
|
|
}
|
|
|
|
func TestPrintSummaryOnSuccessWithSkipped(t *testing.T) {
|
|
term, printer := createTextProgress()
|
|
printer.Finish(State{11, 11, 2, 47, 47, 59}, 5*time.Second)
|
|
test.Equals(t, []string{"Summary: Restored 11 files/dirs (47 B) in 0:05, skipped 2 files/dirs 59 B"}, term.output)
|
|
}
|
|
|
|
func TestPrintCompleteItem(t *testing.T) {
|
|
for _, data := range []struct {
|
|
action ItemAction
|
|
size uint64
|
|
expected string
|
|
}{
|
|
{ActionDirRestored, 0, "restored test"},
|
|
{ActionFileRestored, 123, "restored test with size 123 B"},
|
|
{ActionOtherRestored, 0, "restored test"},
|
|
{ActionFileUpdated, 123, "updated test with size 123 B"},
|
|
{ActionFileUnchanged, 123, "unchanged test with size 123 B"},
|
|
{ActionDeleted, 0, "deleted test"},
|
|
} {
|
|
term, printer := createTextProgress()
|
|
printer.CompleteItem(data.action, "test", data.size)
|
|
test.Equals(t, []string{data.expected}, term.output)
|
|
}
|
|
}
|