mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-16 15:36:12 -04:00
65 lines
2.0 KiB
C++
65 lines
2.0 KiB
C++
// Copyright 2020 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/presence_service.h"
|
|
|
|
#include "gmock/gmock.h"
|
|
#include "protobuf-matchers/protocol-buffer-matchers.h"
|
|
#include "gtest/gtest.h"
|
|
#include "internal/platform/medium_environment.h"
|
|
#include "presence/presence_client.h"
|
|
|
|
namespace nearby {
|
|
namespace presence {
|
|
namespace {
|
|
|
|
class PresenceServiceTest : public testing::Test {
|
|
protected:
|
|
nearby::MediumEnvironment& env_{nearby::MediumEnvironment::Instance()};
|
|
};
|
|
|
|
TEST_F(PresenceServiceTest, DefaultConstructorWorks) {
|
|
PresenceService presence_service;
|
|
}
|
|
|
|
TEST_F(PresenceServiceTest, StartThenStopScan) {
|
|
env_.Start();
|
|
absl::Status scan_result;
|
|
ScanCallback scan_callback = {
|
|
.start_scan_cb = [&](absl::Status status) { scan_result = status; },
|
|
};
|
|
PresenceService presence_service;
|
|
PresenceClient client = presence_service.CreatePresenceClient();
|
|
|
|
absl::StatusOr<ScanSessionId> scan_session = client.StartScan(
|
|
{},
|
|
{
|
|
.start_scan_cb = [&](absl::Status status) { scan_result = status; },
|
|
});
|
|
absl::StatusOr<ScanSessionId> scan_session_with_default_params =
|
|
client.StartScan(ScanRequest(), ScanCallback());
|
|
|
|
ASSERT_OK(scan_session);
|
|
ASSERT_OK(scan_session_with_default_params);
|
|
EXPECT_NE(*scan_session, *scan_session_with_default_params);
|
|
|
|
client.StopScan(*scan_session);
|
|
client.StopScan(*scan_session_with_default_params);
|
|
env_.Stop();
|
|
}
|
|
|
|
} // namespace
|
|
} // namespace presence
|
|
} // namespace nearby
|