YugabyteDB (2.13.1.0-b60, 21121d69985fbf76aa6958d8f04a9bfa936293b5)

Coverage Report

Created: 2022-03-22 16:43

/Users/deen/code/yugabyte-db/src/yb/encryption/encryption_test_util.cc
Line
Count
Source
1
// Copyright (c) YugaByte, Inc.
2
//
3
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
4
// in compliance with the License.  You may obtain a copy of the License at
5
//
6
// http://www.apache.org/licenses/LICENSE-2.0
7
//
8
// Unless required by applicable law or agreed to in writing, software distributed under the License
9
// is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
10
// or implied.  See the License for the specific language governing permissions and limitations
11
// under the License.
12
//
13
14
#include "yb/encryption/encryption_test_util.h"
15
16
#include "yb/util/random_util.h"
17
#include "yb/util/test_macros.h"
18
19
namespace yb {
20
namespace encryption {
21
22
constexpr uint32_t kEncryptionTestNumIterations = 10;
23
24
10
void DoTest(const std::function<void(size_t, size_t)>& file_op, size_t size) {
25
10
  auto indices = RandomUniformVector<size_t>(0, size - 1, kEncryptionTestNumIterations);
26
10
  std::sort(indices.begin(), indices.end());
27
10
  size_t last_idx = 0;
28
100
  for (auto i : indices) {
29
100
    if (last_idx == i) {
30
1
      continue;
31
1
    }
32
99
    ASSERT_NO_FATALS(file_op(last_idx, i));
33
99
    last_idx = i;
34
99
  }
35
10
  ASSERT_NO_FATALS(file_op(last_idx, size));
36
10
}
37
38
} // namespace encryption
39
} // namespace yb