Example #1
0
 def test_get_snapshot_notfounderror_negative(self):
     client = Mock()
     client.snapshot.get_repository.return_value = test_repo
     client.snapshot.get.side_effect = elasticsearch.NotFoundError
     self.assertFalse(
         curator.get_snapshot(client,
                              repository=repo_name,
                              snapshot=snap_name))
Example #2
0
 def test_get_snapshot_positive(self):
     client = Mock()
     client.snapshot.get.return_value = snapshot
     self.assertEqual(
         snapshot,
         curator.get_snapshot(client,
                              repository=repo_name,
                              snapshot=snap_name))
Example #3
0
 def test_get_snapshot_missing_repository_arg(self):
     client = Mock()
     self.assertFalse(curator.get_snapshot(client, snapshot=snap_name))
Example #4
0
 def test_get_snapshot_notfounderror_negative(self):
     client = Mock()
     client.snapshot.get_repository.return_value = test_repo
     client.snapshot.get.side_effect = elasticsearch.NotFoundError
     self.assertFalse(curator.get_snapshot(client, repository=repo_name, snapshot=snap_name))
Example #5
0
 def test_get_snapshot_positive(self):
     client = Mock()
     client.snapshot.get.return_value = snapshot
     self.assertEqual(snapshot, curator.get_snapshot(client, repository=repo_name, snapshot=snap_name))
Example #6
0
 def test_get_snapshot_missing_repository_arg(self):
     client = Mock()
     self.assertFalse(curator.get_snapshot(client, snapshot=snap_name))