-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Factor out per-controller storage into test helper. (#28999)
- Loading branch information
1 parent
55b8559
commit 3014759
Showing
4 changed files
with
148 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
43 changes: 43 additions & 0 deletions
43
src/darwin/Framework/CHIPTests/TestHelpers/MTRTestPerControllerStorage.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/** | ||
* Copyright (c) 2023 Project CHIP Authors | ||
* | ||
* 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. | ||
*/ | ||
|
||
#import <Foundation/Foundation.h> | ||
#import <Matter/Matter.h> | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
@interface MTRTestPerControllerStorage : NSObject <MTRDeviceControllerStorageDelegate> | ||
|
||
- (instancetype)initWithControllerID:(NSUUID *)controllerID; | ||
|
||
@property (nonatomic, readonly) NSUUID * controllerID; | ||
|
||
- (nullable id<NSSecureCoding>)controller:(MTRDeviceController *)controller | ||
valueForKey:(NSString *)key | ||
securityLevel:(MTRStorageSecurityLevel)securityLevel | ||
sharingType:(MTRStorageSharingType)sharingType; | ||
- (BOOL)controller:(MTRDeviceController *)controller | ||
storeValue:(id<NSSecureCoding>)value | ||
forKey:(NSString *)key | ||
securityLevel:(MTRStorageSecurityLevel)securityLevel | ||
sharingType:(MTRStorageSharingType)sharingType; | ||
- (BOOL)controller:(MTRDeviceController *)controller | ||
removeValueForKey:(NSString *)key | ||
securityLevel:(MTRStorageSecurityLevel)securityLevel | ||
sharingType:(MTRStorageSharingType)sharingType; | ||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
85 changes: 85 additions & 0 deletions
85
src/darwin/Framework/CHIPTests/TestHelpers/MTRTestPerControllerStorage.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
/** | ||
* Copyright (c) 2023 Project CHIP Authors | ||
* | ||
* 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. | ||
*/ | ||
|
||
#import <XCTest/XCTest.h> | ||
|
||
#import "MTRTestPerControllerStorage.h" | ||
|
||
@interface MTRTestPerControllerStorage () | ||
@property (nonatomic, readonly) NSMutableDictionary<NSString *, NSData *> * storage; | ||
@end | ||
|
||
@implementation MTRTestPerControllerStorage | ||
|
||
- (instancetype)initWithControllerID:(NSUUID *)controllerID | ||
{ | ||
if (!(self = [super init])) { | ||
return nil; | ||
} | ||
|
||
_storage = [[NSMutableDictionary alloc] init]; | ||
_controllerID = controllerID; | ||
return self; | ||
} | ||
|
||
- (nullable id<NSSecureCoding>)controller:(MTRDeviceController *)controller | ||
valueForKey:(NSString *)key | ||
securityLevel:(MTRStorageSecurityLevel)securityLevel | ||
sharingType:(MTRStorageSharingType)sharingType | ||
{ | ||
XCTAssertEqualObjects(_controllerID, controller.uniqueIdentifier); | ||
|
||
__auto_type * data = self.storage[key]; | ||
if (data == nil) { | ||
return data; | ||
} | ||
|
||
NSError * error; | ||
id value = [NSKeyedUnarchiver unarchivedObjectOfClasses:MTRDeviceControllerStorageClasses() fromData:data error:&error]; | ||
XCTAssertNil(error); | ||
XCTAssertNotNil(data); | ||
|
||
return value; | ||
} | ||
|
||
- (BOOL)controller:(MTRDeviceController *)controller | ||
storeValue:(id<NSSecureCoding>)value | ||
forKey:(NSString *)key | ||
securityLevel:(MTRStorageSecurityLevel)securityLevel | ||
sharingType:(MTRStorageSharingType)sharingType | ||
{ | ||
XCTAssertEqualObjects(_controllerID, controller.uniqueIdentifier); | ||
|
||
NSError * error; | ||
NSData * data = [NSKeyedArchiver archivedDataWithRootObject:value requiringSecureCoding:YES error:&error]; | ||
XCTAssertNil(error); | ||
XCTAssertNotNil(data); | ||
|
||
self.storage[key] = data; | ||
return YES; | ||
} | ||
|
||
- (BOOL)controller:(MTRDeviceController *)controller | ||
removeValueForKey:(NSString *)key | ||
securityLevel:(MTRStorageSecurityLevel)securityLevel | ||
sharingType:(MTRStorageSharingType)sharingType | ||
{ | ||
XCTAssertEqualObjects(_controllerID, controller.uniqueIdentifier); | ||
self.storage[key] = nil; | ||
return YES; | ||
} | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters