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))
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))
def test_get_snapshot_missing_repository_arg(self): client = Mock() self.assertFalse(curator.get_snapshot(client, snapshot=snap_name))
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))
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))