mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-16 07:36:10 -04:00
56 lines
1.8 KiB
Objective-C
56 lines
1.8 KiB
Objective-C
// Copyright 2025 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.
|
|
|
|
#import "internal/platform/implementation/apple/Mediums/BLE/Sockets/Source/Shared/GNSSocket.h"
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import <XCTest/XCTest.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
/** A fake implementation of @c GNSSocket to inject for testing. */
|
|
@interface GNCFakeSocket : NSObject
|
|
|
|
/** An expectation to fulfill when -sendData:progressHandler:completion: is called. */
|
|
@property(nonatomic, nullable) XCTestExpectation *sendDataExpectation;
|
|
|
|
/** The socket's delegate. */
|
|
@property(nonatomic, weak) id<GNSSocketDelegate> delegate;
|
|
|
|
/** The last data that was sent to the socket. */
|
|
@property(nonatomic, copy, nullable) NSData *sentData;
|
|
|
|
/** The completion handler for the last sent data. */
|
|
@property(nonatomic, nullable) GNSErrorHandler sentDataCompletion;
|
|
|
|
/** Simulates a socket connection event. */
|
|
- (void)simulateSocketDidConnect;
|
|
|
|
/** Simulates a socket disconnection event. */
|
|
- (void)simulateSocketDidDisconnectWithError:(nullable NSError *)error;
|
|
|
|
/** Simulates a socket receiving data event. */
|
|
- (void)simulateSocketDidReceiveData:(NSData *)data;
|
|
|
|
- (void)sendData:(NSData *)data
|
|
progressHandler:(GNSProgressHandler)progressHandler
|
|
completion:(GNSErrorHandler)completion;
|
|
|
|
- (void)disconnect;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|