summaryrefslogtreecommitdiffstats
path: root/t/find_archives_mocked.t
diff options
context:
space:
mode:
Diffstat (limited to 't/find_archives_mocked.t')
-rw-r--r--t/find_archives_mocked.t29
1 files changed, 29 insertions, 0 deletions
diff --git a/t/find_archives_mocked.t b/t/find_archives_mocked.t
new file mode 100644
index 0000000..7f0186a
--- /dev/null
+++ b/t/find_archives_mocked.t
@@ -0,0 +1,29 @@
+use strict;
+use warnings;
+
+use Test::More;
+use Test::MockObject;
+use Test::Differences;
+
+use App::BorgRestore;
+
+my $db = Test::MockObject->new();
+$db->mock('get_archives_for_path', sub {return [
+ { modification_time => 5, archive => "test2"},
+ { modification_time => 2, archive => "test1"},
+ { modification_time => 10, archive => "test3"},
+ { modification_time => 10, archive => "test4"},
+ { modification_time => 2, archive => "test1-1"},
+ { modification_time => 15, archive => "test5"},
+ ];});
+
+my $app = App::BorgRestore->new_no_defaults({db => $db});
+
+eq_or_diff($app->find_archives('test/path'), [
+ {archive => 'test1', modification_time => 2},
+ {archive => 'test2', modification_time => 5},
+ {archive => 'test3', modification_time => 10},
+ {archive => 'test5', modification_time => 15},
+]);
+
+done_testing;