Skip to content

Commit e444ab9

Browse files
committed
Added unit test and minor fixes
1 parent 6eb6869 commit e444ab9

File tree

3 files changed

+59
-14
lines changed

3 files changed

+59
-14
lines changed

src/darwin/Framework/CHIP/MTRDeviceControllerDataStore.mm

+26-14
Original file line numberDiff line numberDiff line change
@@ -556,30 +556,28 @@ - (void)_pruneEmptyStoredAttributesBranches
556556

557557
if (attributeIndex.count != attributeIndexCopy.count) {
558558
BOOL success;
559-
if (!success) {
560-
if (attributeIndexCopy.count) {
561-
success = [self _storeAttributeIndex:attributeIndexCopy forNodeID:nodeID endpointID:endpointID clusterID:clusterID];
562-
} else {
563-
[clusterIndexCopy removeObject:clusterID];
564-
success = [self _deleteAttributeIndexForNodeID:nodeID endpointID:endpointID clusterID:clusterID];
565-
}
566-
storeFailures++;
567-
MTR_LOG_INFO("Store failed in _pruneEmptyStoredAttributesBranches for attributeIndex @ 0x%016llX:0x%04X:0x%08lX", nodeID.unsignedLongLongValue, endpointID.unsignedShortValue, clusterID.unsignedLongValue);
559+
if (attributeIndexCopy.count) {
560+
success = [self _storeAttributeIndex:attributeIndexCopy forNodeID:nodeID endpointID:endpointID clusterID:clusterID];
561+
} else {
562+
[clusterIndexCopy removeObject:clusterID];
563+
success = [self _deleteAttributeIndexForNodeID:nodeID endpointID:endpointID clusterID:clusterID];
568564
}
565+
storeFailures++;
566+
MTR_LOG_INFO("Store failed in _pruneEmptyStoredAttributesBranches for attributeIndex (%lu) @ 0x%016llX:0x%04X:0x%08lX", static_cast<unsigned long>(attributeIndexCopy.count), nodeID.unsignedLongLongValue, endpointID.unsignedShortValue, clusterID.unsignedLongValue);
569567
}
570568
}
571569

572570
if (clusterIndex.count != clusterIndexCopy.count) {
573571
BOOL success;
574-
if (clusterIndex.count) {
572+
if (clusterIndexCopy.count) {
575573
success = [self _storeClusterIndex:clusterIndexCopy forNodeID:nodeID endpointID:endpointID];
576574
} else {
577575
[endpointIndexCopy removeObject:endpointID];
578576
success = [self _deleteClusterIndexForNodeID:nodeID endpointID:endpointID];
579577
}
580578
if (!success) {
581579
storeFailures++;
582-
MTR_LOG_INFO("Store failed in _pruneEmptyStoredAttributesBranches for clusterIndex @ 0x%016llX:0x%04X", nodeID.unsignedLongLongValue, endpointID.unsignedShortValue);
580+
MTR_LOG_INFO("Store failed in _pruneEmptyStoredAttributesBranches for clusterIndex (%lu) @ 0x%016llX:0x%04X", static_cast<unsigned long>(clusterIndexCopy.count), nodeID.unsignedLongLongValue, endpointID.unsignedShortValue);
583581
}
584582
}
585583
}
@@ -594,21 +592,21 @@ - (void)_pruneEmptyStoredAttributesBranches
594592
}
595593
if (!success) {
596594
storeFailures++;
597-
MTR_LOG_INFO("Store failed in _pruneEmptyStoredAttributesBranches for endpointIndex @ 0x%016llX", nodeID.unsignedLongLongValue);
595+
MTR_LOG_INFO("Store failed in _pruneEmptyStoredAttributesBranches for endpointIndex (%lu) @ 0x%016llX", static_cast<unsigned long>(endpointIndexCopy.count), nodeID.unsignedLongLongValue);
598596
}
599597
}
600598
}
601599

602600
if (nodeIndex.count != nodeIndexCopy.count) {
603601
BOOL success;
604-
if (!nodeIndex.count) {
602+
if (nodeIndexCopy.count) {
605603
success = [self _storeNodeIndex:nodeIndexCopy];
606604
} else {
607605
success = [self _deleteNodeIndex];
608606
}
609607
if (!success) {
610608
storeFailures++;
611-
MTR_LOG_INFO("Store failed in _pruneEmptyStoredAttributesBranches for nodeIndex");
609+
MTR_LOG_INFO("Store failed in _pruneEmptyStoredAttributesBranches for nodeIndex (%lu)", static_cast<unsigned long>(nodeIndexCopy.count));
612610
}
613611
}
614612

@@ -766,6 +764,20 @@ - (void)clearStoredAttributesForNodeID:(NSNumber *)nodeID
766764
{
767765
dispatch_async(_storageDelegateQueue, ^{
768766
[self _clearStoredAttributesForNodeID:nodeID];
767+
NSArray<NSNumber *> * nodeIndex = [self _fetchNodeIndex];
768+
NSMutableArray<NSNumber *> * nodeIndexCopy = nodeIndex.mutableCopy;
769+
[nodeIndexCopy removeObject:nodeID];
770+
if (nodeIndex.count != nodeIndexCopy.count) {
771+
BOOL success;
772+
if (nodeIndexCopy.count) {
773+
success = [self _storeNodeIndex:nodeIndexCopy];
774+
} else {
775+
success = [self _deleteNodeIndex];
776+
}
777+
if (!success) {
778+
MTR_LOG_INFO("Store failed in clearStoredAttributesForNodeID for nodeIndex (%lu)", static_cast<unsigned long>(nodeIndexCopy.count));
779+
}
780+
}
769781
});
770782
}
771783

src/darwin/Framework/CHIPTests/MTRPerControllerStorageTests.m

+28
Original file line numberDiff line numberDiff line change
@@ -1139,6 +1139,34 @@ - (void)test008_TestDataStoreDirect
11391139
dataStoreValues = [controller.controllerDataStore getStoredAttributesForNodeID:@(1003)];
11401140
XCTAssertEqual(dataStoreValues.count, 0);
11411141

1142+
// Test MTRDeviceControllerDataStore _pruneEmptyStoredAttributesBranches
1143+
// - Clear cache
1144+
// - Store an attribute
1145+
// - Manually delete it from the user defaults
1146+
// - Call _pruneEmptyStoredAttributesBranches
1147+
[controller.controllerDataStore clearAllStoredAttributes];
1148+
1149+
NSArray * testAttribute = @[
1150+
@{ MTRAttributePathKey : [MTRAttributePath attributePathWithEndpointID:@(1) clusterID:@(1) attributeID:@(1)], MTRDataKey : @ { MTRTypeKey : MTRUnsignedIntegerValueType, MTRValueKey : @(111) } },
1151+
];
1152+
[controller.controllerDataStore storeAttributeValues:testAttribute forNodeID:@(2001)];
1153+
NSString * testAttributeValueKey = [controller.controllerDataStore _attributeValueKeyForNodeID:@(2001) endpointID:@(1) clusterID:@(1) attributeID:@(1)];
1154+
[storageDelegate controller:controller removeValueForKey:testAttributeValueKey securityLevel:MTRStorageSecurityLevelSecure sharingType:MTRStorageSharingTypeNotShared];
1155+
[controller.controllerDataStore _pruneEmptyStoredAttributesBranches];
1156+
1157+
// Now check the indexes are pruned
1158+
NSString * testAttributeIndexKey = [controller.controllerDataStore _attributeIndexKeyForNodeID:@(2001) endpointID:@(1) clusterID:@(1)];
1159+
id testAttributeIndex = [storageDelegate controller:controller valueForKey:testAttributeIndexKey securityLevel:MTRStorageSecurityLevelSecure sharingType:MTRStorageSharingTypeNotShared];
1160+
XCTAssertNil(testAttributeIndex);
1161+
NSString * testClusterIndexKey = [controller.controllerDataStore _clusterIndexKeyForNodeID:@(2001) endpointID:@(1)];
1162+
id testClusterIndex = [storageDelegate controller:controller valueForKey:testClusterIndexKey securityLevel:MTRStorageSecurityLevelSecure sharingType:MTRStorageSharingTypeNotShared];
1163+
XCTAssertNil(testClusterIndex);
1164+
NSString * testEndpointIndexKey = [controller.controllerDataStore _endpointIndexKeyForNodeID:@(2001)];
1165+
id testEndpointIndex = [storageDelegate controller:controller valueForKey:testEndpointIndexKey securityLevel:MTRStorageSecurityLevelSecure sharingType:MTRStorageSharingTypeNotShared];
1166+
XCTAssertNil(testEndpointIndex);
1167+
id testNodeIndex = [storageDelegate controller:controller valueForKey:@"attrCacheNodeIndex" securityLevel:MTRStorageSecurityLevelSecure sharingType:MTRStorageSharingTypeNotShared];
1168+
XCTAssertNil(testNodeIndex);
1169+
11421170
[controller shutdown];
11431171
XCTAssertFalse([controller isRunning]);
11441172
}

src/darwin/Framework/CHIPTests/TestHelpers/MTRTestDeclarations.h

+5
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,11 @@ NS_ASSUME_NONNULL_BEGIN
2828
- (void)storeAttributeValues:(NSArray<NSDictionary *> *)dataValues forNodeID:(NSNumber *)nodeID;
2929
- (void)clearStoredAttributesForNodeID:(NSNumber *)nodeID;
3030
- (void)clearAllStoredAttributes;
31+
- (void)_pruneEmptyStoredAttributesBranches;
32+
- (NSString *)_endpointIndexKeyForNodeID:(NSNumber *)nodeID;
33+
- (NSString *)_clusterIndexKeyForNodeID:(NSNumber *)nodeID endpointID:(NSNumber *)endpointID;
34+
- (NSString *)_attributeIndexKeyForNodeID:(NSNumber *)nodeID endpointID:(NSNumber *)endpointID clusterID:(NSNumber *)clusterID;
35+
- (NSString *)_attributeValueKeyForNodeID:(NSNumber *)nodeID endpointID:(NSNumber *)endpointID clusterID:(NSNumber *)clusterID attributeID:(NSNumber *)attributeID;
3136
@end
3237

3338
// Declare internal methods for testing

0 commit comments

Comments
 (0)