Files
nearby/presence/implementation/base_broadcast_request_test.cc
T
Janusz Sobczak a92abac83a Update advertisement encoder/decoder
1. Update the API to accept the credentials on input instead of credential manager.
2. Update the test with values using the LDT encryption.

These changes allow us to have a more asynchronous implementaion.
When broadcasting we can:
1. Fetch the private credentials asynchronously.
2. Create the advertisement and start broadcasting when the credentials have been fetched.

When scanning we can:
1. Fetch public credentials asynchronously.
2. Start scanning for advertisements.
3. Update the decoder when new credentials are fetched.

PiperOrigin-RevId: 493998041
2022-12-08 14:36:44 -08:00

93 lines
3.3 KiB
C++

// Copyright 2022 Google LLC
//
// 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
//
// https://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 "presence/implementation/base_broadcast_request.h"
#include <string>
#include "gmock/gmock.h"
#include "protobuf-matchers/protocol-buffer-matchers.h"
#include "gtest/gtest.h"
#include "absl/types/variant.h"
#include "presence/broadcast_request.h"
#include "presence/data_element.h"
namespace nearby {
namespace presence {
namespace {
using ::testing::status::StatusIs;
TEST(BroadcastRequestTest, CreateBasePresenceRequest) {
nearby::internal::IdentityType identity;
constexpr int8_t kTxPower = -13;
BaseBroadcastRequest request = BaseBroadcastRequest(
BasePresenceRequestBuilder(identity).SetTxPower(kTxPower).SetPowerMode(
PowerMode::kBalanced));
EXPECT_TRUE(absl::holds_alternative<BaseBroadcastRequest::BasePresence>(
request.variant));
EXPECT_EQ(request.salt.size(), 2);
EXPECT_EQ(request.tx_power, kTxPower);
EXPECT_EQ(request.power_mode, PowerMode::kBalanced);
}
TEST(BroadcastRequestTest, CreateFromPresenceRequest) {
constexpr int8_t kTxPower = 30;
constexpr uint32_t kExpectedAction =
(1 << 23); // encoded kActiveUnlockAction
std::string account_name = "Test account";
std::string manager_app_id = "Manager app id";
PresenceBroadcast::BroadcastSection section = {
.identity = internal::IDENTITY_TYPE_PUBLIC,
.extended_properties = {DataElement(
DataElement(ActionBit::kActiveUnlockAction))},
.account_name = account_name,
.manager_app_id = manager_app_id};
PresenceBroadcast presence_request = {.sections = {section}};
BroadcastRequest input = {.tx_power = kTxPower, .variant = presence_request};
absl::StatusOr<BaseBroadcastRequest> request =
BaseBroadcastRequest::Create(input);
ASSERT_OK(request);
EXPECT_THAT(request->tx_power, kTxPower);
EXPECT_THAT(absl::get<BaseBroadcastRequest::BasePresence>(request->variant)
.credential_selector.identity_type,
internal::IDENTITY_TYPE_PUBLIC);
EXPECT_THAT(absl::get<BaseBroadcastRequest::BasePresence>(request->variant)
.action.action,
kExpectedAction);
EXPECT_THAT(absl::get<BaseBroadcastRequest::BasePresence>(request->variant)
.credential_selector.account_name,
account_name);
EXPECT_THAT(absl::get<BaseBroadcastRequest::BasePresence>(request->variant)
.credential_selector.manager_app_id,
manager_app_id);
}
TEST(BroadcastRequestTest, CreateFromEmptyPresenceRequestFails) {
BroadcastRequest empty = {
.variant = PresenceBroadcast(),
};
EXPECT_THAT(BaseBroadcastRequest::Create(empty),
StatusIs(absl::StatusCode::kInvalidArgument));
}
} // namespace
} // namespace presence
} // namespace nearby