summaryrefslogtreecommitdiff
path: root/system/gd/storage/adapter_config_test.cc
blob: e3c3791c67b762fad683c4831d3930aa0e51d718 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*
 * Copyright 2020 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include <gmock/gmock.h>
#include <gtest/gtest.h>

#include "storage/adapter_config.h"
#include "storage/mutation.h"

using bluetooth::common::ByteArray;
using bluetooth::hci::Address;
using bluetooth::hci::DeviceType;
using bluetooth::storage::AdapterConfig;
using bluetooth::storage::ConfigCache;
using bluetooth::storage::Device;
using bluetooth::storage::Mutation;
using ::testing::Eq;
using ::testing::Optional;

TEST(AdapterConfigTest, create_new_adapter_config) {
  ConfigCache config(10, Device::kLinkKeyProperties);
  ConfigCache memory_only_config(10, {});
  AdapterConfig adapter_config(&config, &memory_only_config, "Adapter");
  ASSERT_FALSE(adapter_config.GetAddress());
}

TEST(AdapterConfigTest, set_property) {
  ConfigCache config(10, Device::kLinkKeyProperties);
  ConfigCache memory_only_config(10, {});
  Address address = {{0x01, 0x02, 0x03, 0x04, 0x05, 0x06}};
  AdapterConfig adapter_config(&config, &memory_only_config, "Adapter");
  ASSERT_FALSE(adapter_config.GetAddress());
  Mutation mutation(&config, &memory_only_config);
  mutation.Add(adapter_config.SetAddress(address));
  mutation.Commit();
  ASSERT_THAT(adapter_config.GetAddress(), Optional(Eq(address)));
}

TEST(AdapterConfigTest, equality_test) {
  ConfigCache config(10, Device::kLinkKeyProperties);
  ConfigCache memory_only_config(10, {});
  bluetooth::hci::Address address = {{0x01, 0x02, 0x03, 0x04, 0x05, 0x06}};
  AdapterConfig adapter_config_1(&config, &memory_only_config, "Adapter");
  AdapterConfig adapter_config_2(&config, &memory_only_config, "Adapter");
  ASSERT_EQ(adapter_config_1, adapter_config_2);
  ConfigCache memory_only_config_2(10, {});
  AdapterConfig adapter_config_3(&config, &memory_only_config_2, "Adapter");
  ASSERT_NE(adapter_config_1, adapter_config_3);
}