blob: 24ee02dd7d12bcd7afa8c2121c71b39dbecd5ade [file] [log] [blame]
/**
*
* Copyright (c) 2021 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 "MTRErrorTestUtils.h"
#import <Matter/Matter.h>
#import <app/util/af-enums.h>
NS_ASSUME_NONNULL_BEGIN
@implementation MTRErrorTestUtils
+ (uint8_t)errorToZCLErrorCode:(NSError * _Nullable)error
{
// This duplicates MTRError's errorToZCLErrorCode, but I can't
// figure out a way to include/use that here.
if (error == nil) {
return EMBER_ZCL_STATUS_SUCCESS;
}
if (error.domain != MTRInteractionErrorDomain) {
return EMBER_ZCL_STATUS_FAILURE;
}
return static_cast<uint8_t>(error.code);
}
@end
NS_ASSUME_NONNULL_END