Files
nearby/sharing/internal/test/fake_wifi_adapter_observer.h
T
Francis Tsui 1072030be8 Copy sharing/internal, sharing/common and sharing/scheduling to github.
- Move Abseil pin to same as that used in Chromium.
- Disabled layering_check due to build failure in absl.

PiperOrigin-RevId: 596631921
2024-01-08 10:20:37 -08:00

62 lines
2.1 KiB
C++

// Copyright 2023 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.
#ifndef THIRD_PARTY_NEARBY_SHARING_INTERNAL_TEST_FAKE_WIFI_ADAPTER_OBSERVER_H_
#define THIRD_PARTY_NEARBY_SHARING_INTERNAL_TEST_FAKE_WIFI_ADAPTER_OBSERVER_H_
#include "sharing/internal/api/wifi_adapter.h"
namespace nearby {
class FakeWifiAdapterObserver : public sharing::api::WifiAdapter::Observer {
public:
explicit FakeWifiAdapterObserver(sharing::api::WifiAdapter* adapter) {
adapter_ = adapter;
num_adapter_present_changed_ = 0;
num_adapter_powered_changed_ = 0;
}
void AdapterPresentChanged(sharing::api::WifiAdapter* adapter,
bool present) override {
if (adapter == adapter_) {
observed_present_value_ = present;
num_adapter_present_changed_ += 1;
}
}
void AdapterPoweredChanged(nearby::sharing::api::WifiAdapter* adapter,
bool powered) override {
if (adapter == adapter_) {
observed_powered_value_ = powered;
num_adapter_powered_changed_ += 1;
}
}
bool GetObservedPresentValue() { return observed_present_value_; }
bool GetObservedPoweredValue() { return observed_powered_value_; }
int GetNumAdapterPresentChanged() { return num_adapter_present_changed_; }
int GetNumAdapterPoweredChanged() { return num_adapter_powered_changed_; }
private:
sharing::api::WifiAdapter* adapter_;
bool observed_present_value_ = true;
bool observed_powered_value_ = true;
int num_adapter_present_changed_;
int num_adapter_powered_changed_;
};
} // namespace nearby
#endif // THIRD_PARTY_NEARBY_SHARING_INTERNAL_TEST_FAKE_WIFI_ADAPTER_OBSERVER_H_