-
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.
Add a Swift XCTest for commissioning. (#27998)
* Add a Swift XCTest for commissioning. * Address review comments. Also fixes some bits that did not set the error outparam when returning nil.
- Loading branch information
1 parent
3c61efe
commit 08aedeb
Showing
4 changed files
with
142 additions
and
0 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
109 changes: 109 additions & 0 deletions
109
src/darwin/Framework/CHIPTests/MTRSwiftPairingTests.swift
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,109 @@ | ||
import Matter | ||
import XCTest | ||
|
||
// This more or less parallels the "no delegate" case in MTRPairingTests | ||
|
||
struct Constants { | ||
static let localPort = 5541 | ||
static let vendorID = 0xFFF1 | ||
static let onboardingPayload = "MT:Y.K90SO527JA0648G00" | ||
static let deviceID = 0x12344321 | ||
static let timeoutInSeconds : UInt16 = 3 | ||
} | ||
|
||
class MTRSwiftPairingTestControllerDelegate : NSObject, MTRDeviceControllerDelegate { | ||
let expectation: XCTestExpectation | ||
|
||
init(withExpectation providedExpectation: XCTestExpectation) { | ||
expectation = providedExpectation | ||
} | ||
|
||
@available(macOS, introduced: 13.3) | ||
func controller(_ controller: MTRDeviceController, statusUpdate status: MTRCommissioningStatus) { | ||
XCTAssertNotEqual(status, MTRCommissioningStatus.failed) | ||
} | ||
|
||
@available(macOS, introduced: 13.3) | ||
func controller(_ controller: MTRDeviceController, commissioningSessionEstablishmentDone error: Error?) { | ||
XCTAssertNil(error) | ||
|
||
do { | ||
try controller.commissionNode(withID: Constants.deviceID as NSNumber, commissioningParams: MTRCommissioningParameters()) | ||
} catch { | ||
XCTFail("Could not start commissioning of node: \(error)") | ||
} | ||
|
||
// Keep waiting for commissioningComplete | ||
} | ||
|
||
func controller(_ controller: MTRDeviceController, commissioningComplete error: Error?, nodeID: NSNumber?) { | ||
XCTAssertNil(error) | ||
XCTAssertEqual(nodeID, Constants.deviceID as NSNumber) | ||
expectation.fulfill() | ||
} | ||
} | ||
|
||
class MTRSwiftPairingTests : XCTestCase { | ||
@available(macOS, introduced: 13.3) | ||
func test001_BasicPairing() { | ||
let factory = MTRDeviceControllerFactory.sharedInstance() | ||
|
||
let storage = MTRTestStorage() | ||
let factoryParams = MTRDeviceControllerFactoryParams(storage: storage) | ||
factoryParams.port = Constants.localPort as NSNumber | ||
|
||
do { | ||
try factory.start(factoryParams) | ||
} catch { | ||
XCTFail("Could not start controller factory: \(error)") | ||
return | ||
} | ||
XCTAssertTrue(factory.isRunning) | ||
|
||
let testKeys = MTRTestKeys() | ||
|
||
let params = MTRDeviceControllerStartupParams(ipk: testKeys.ipk, fabricID: 1, nocSigner: testKeys) | ||
params.vendorID = Constants.vendorID as NSNumber | ||
|
||
let controller: MTRDeviceController | ||
do { | ||
controller = try factory.createController(onNewFabric: params) | ||
} catch { | ||
XCTFail("Could not create controller: \(error)") | ||
return | ||
} | ||
XCTAssertTrue(controller.isRunning) | ||
|
||
let expectation = expectation(description: "Commissioning Complete") | ||
|
||
let controllerDelegate = MTRSwiftPairingTestControllerDelegate(withExpectation: expectation) | ||
let serialQueue = DispatchQueue(label: "com.chip.pairing") | ||
|
||
controller.setDeviceControllerDelegate(controllerDelegate, queue: serialQueue) | ||
|
||
let payload : MTRSetupPayload | ||
do { | ||
payload = try MTRSetupPayload(onboardingPayload: Constants.onboardingPayload) | ||
} catch { | ||
XCTFail("Could not parse setup payload: \(error)") | ||
return | ||
} | ||
|
||
do { | ||
try controller.setupCommissioningSession(with: payload, newNodeID: Constants.deviceID as NSNumber) | ||
} catch { | ||
XCTFail("Could not start setting up PASE session: \(error)") | ||
return | ||
} | ||
|
||
wait(for: [expectation], timeout: TimeInterval(Constants.timeoutInSeconds)) | ||
|
||
ResetCommissionee(MTRBaseDevice(nodeID: Constants.deviceID as NSNumber, controller: controller), DispatchQueue.main, self, Constants.timeoutInSeconds) | ||
|
||
controller.shutdown() | ||
XCTAssertFalse(controller.isRunning) | ||
|
||
factory.stop() | ||
XCTAssertFalse(factory.isRunning) | ||
} | ||
} |
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,7 @@ | ||
// | ||
// Use this file to import your target's public headers that you would like to expose to Swift. | ||
// | ||
|
||
#import "MTRTestKeys.h" | ||
#import "MTRTestResetCommissioneeHelper.h" | ||
#import "MTRTestStorage.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