summaryrefslogtreecommitdiffstats
path: root/src/test/librbd/mock/crypto/MockCryptoInterface.h
blob: 027ebde627cdecb7d63fe9ae40f31ea6234d8d58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab

#ifndef CEPH_TEST_LIBRBD_MOCK_CRYPTO_MOCK_CRYPTO_INTERFACE_H
#define CEPH_TEST_LIBRBD_MOCK_CRYPTO_MOCK_CRYPTO_INTERFACE_H

#include "include/buffer.h"
#include "gmock/gmock.h"
#include "librbd/crypto/CryptoInterface.h"

namespace librbd {
namespace crypto {

struct MockCryptoInterface : CryptoInterface {

  MOCK_METHOD2(encrypt, int(ceph::bufferlist*, uint64_t));
  MOCK_METHOD2(decrypt, int(ceph::bufferlist*, uint64_t));
  MOCK_CONST_METHOD0(get_key, const unsigned char*());
  MOCK_CONST_METHOD0(get_key_length, int());

  uint64_t get_block_size() const override {
    return 4096;
  }

  uint64_t get_data_offset() const override {
    return 4 * 1024 * 1024;
  }
};

} // namespace crypto
} // namespace librbd

#endif // CEPH_TEST_LIBRBD_MOCK_CRYPTO_MOCK_CRYPTO_INTERFACE_H