blob: 99d5d3e393e43d13938f70a49a56c650c86cff34 [file] [log] [blame]
Gaurav Gandhia49a3f72021-10-26 20:43:25 +00001// Copyright 2021 Google Inc.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15#include "log_handler.hpp"
16#include "log_mock.hpp"
17
18#include <array>
19#include <utility>
20
21#include <gtest/gtest.h>
22
23namespace ipmi_flash
24{
25
26TEST(LogHandlerCanHandleTest, VerifyGoodInfoMapPasses)
27{
28 constexpr std::array blobs{"blob0", "blob1"};
29 LogBlobHandler handler(createMockLogConfigs(blobs));
30 EXPECT_THAT(handler.getBlobIds(),
31 testing::UnorderedElementsAreArray(blobs));
32}
33
34TEST(LogHandlerCanHandleTest, VerifyDuplicatesIgnored)
35{
36 constexpr std::array blobs{"blob0"};
37 auto configs = createMockLogConfigs(blobs);
38 configs.push_back(createMockLogConfig(blobs[0]));
39 LogBlobHandler handler(std::move(configs));
40 EXPECT_THAT(handler.getBlobIds(),
41 testing::UnorderedElementsAreArray(blobs));
42}
43
44} // namespace ipmi_flash