20
20
21
21
#import " MTRDeviceTestDelegate.h"
22
22
#import " MTRErrorTestUtils.h"
23
+ #import " MTRTestCase.h"
23
24
#import " MTRTestKeys.h"
24
25
#import " MTRTestResetCommissioneeHelper.h"
26
+ #import " MTRTestServerAppRunner.h"
25
27
#import " MTRTestStorage.h"
26
28
27
29
// system dependencies
73
75
74
76
static NSString * kUpdatedSoftwareVersionString_10 = @" 10.0" ;
75
77
76
- // kOtaRequestorBasePort gets the discriminator added to it to figure out the
77
- // port the ota-requestor app should be using. This ensures that apps with
78
- // distinct discriminators use distinct ports.
79
- static const uint16_t kOtaRequestorBasePort = 5542 - 1111 ;
80
-
81
- @class MTROTARequestorAppRunner;
82
-
83
- @interface MTROTAProviderTests : XCTestCase
84
- - (NSTask *)createTaskForPath : (NSString *)path ;
78
+ @interface MTROTAProviderTests : MTRTestCase
85
79
- (NSString *)createImageFromRawImage : (NSString *)rawImage withVersion : (NSNumber *)version ;
86
80
- (MTRDevice *)commissionDeviceWithPayload : (NSString *)payloadString nodeID : (NSNumber *)nodeID ;
87
- - (void )registerRunningRequestor : (MTROTARequestorAppRunner *)requestor ;
88
81
@end
89
82
90
- static unsigned sAppRunnerIndex = 1 ;
91
-
92
- @interface MTROTARequestorAppRunner : NSObject
83
+ @interface MTROTARequestorAppRunner : MTRTestServerAppRunner
93
84
@property (nonatomic , copy ) NSString * downloadFilePath;
94
85
95
86
- (instancetype )initWithPayload : (NSString *)payload testcase : (MTROTAProviderTests *)testcase ;
96
87
- (MTRDevice *)commissionWithNodeID : (NSNumber *)nodeID ;
97
88
@end
98
89
99
90
@implementation MTROTARequestorAppRunner {
100
- unsigned _uniqueIndex;
101
- NSTask * _appTask;
102
91
MTROTAProviderTests * _testcase;
103
92
NSString * _payload;
104
- MTRDevice * commissionedDevice;
105
93
}
106
94
107
95
- (MTRDevice *)commissionWithNodeID : (NSNumber *)nodeID
@@ -111,67 +99,24 @@ - (MTRDevice *)commissionWithNodeID:(NSNumber *)nodeID
111
99
112
100
- (instancetype )initWithPayload : (NSString *)payload testcase : (MTROTAProviderTests *)testcase
113
101
{
114
- if (!(self = [super init ])) {
115
- return nil ;
116
- }
117
-
118
- _uniqueIndex = sAppRunnerIndex ++;
119
- _testcase = testcase;
120
- _payload = payload;
121
- _downloadFilePath = [NSString stringWithFormat: @" /tmp/chip-ota-requestor-downloaded-image%u " , _uniqueIndex];
122
-
123
- NSError * error;
124
- __auto_type * parsedPayload = [MTRSetupPayload setupPayloadWithOnboardingPayload: payload error: &error];
125
- XCTAssertNotNil (parsedPayload);
126
- XCTAssertNil (error);
127
-
128
- XCTAssertFalse (parsedPayload.hasShortDiscriminator );
129
-
130
- __auto_type * discriminator = parsedPayload.discriminator ;
131
-
132
- _appTask = [testcase createTaskForPath: @" out/debug/ota-requestor-app/chip-ota-requestor-app" ];
133
-
134
- __auto_type * arguments = @[
135
- @" --interface-id" ,
136
- @" -1" ,
137
- @" --secured-device-port" ,
138
- [NSString stringWithFormat: @" %u " , kOtaRequestorBasePort + discriminator.unsignedShortValue],
139
- @" --discriminator" ,
140
- [NSString stringWithFormat: @" %u " , discriminator.unsignedShortValue],
141
- @" --KVS" ,
142
- [NSString stringWithFormat: @" /tmp/chip-ota-requestor-kvs%u " , _uniqueIndex],
102
+ __auto_type * downloadFilePath = [NSString stringWithFormat: @" /tmp/chip-ota-requestor-downloaded-image%u " , [MTRTestServerAppRunner nextUniqueIndex ]];
103
+ __auto_type * extraArguments = @[
143
104
@" --otaDownloadPath" ,
144
- _downloadFilePath ,
105
+ downloadFilePath ,
145
106
@" --autoApplyImage" ,
146
107
];
147
108
148
- [_appTask setArguments: arguments];
149
-
150
- NSString * outFile = [NSString stringWithFormat: @" /tmp/darwin/framework-tests/ota-requestor-app-%u .log" , _uniqueIndex];
151
- NSString * errorFile = [NSString stringWithFormat: @" /tmp/darwin/framework-tests/ota-requestor-app-err-%u .log" , _uniqueIndex];
152
-
153
- // Make sure the files exist.
154
- [[NSFileManager defaultManager ] createFileAtPath: outFile contents: nil attributes: nil ];
155
- [[NSFileManager defaultManager ] createFileAtPath: errorFile contents: nil attributes: nil ];
156
-
157
- _appTask.standardOutput = [NSFileHandle fileHandleForWritingAtPath: outFile];
158
- _appTask.standardError = [NSFileHandle fileHandleForWritingAtPath: errorFile];
159
-
160
- [_appTask launchAndReturnError: &error];
161
- XCTAssertNil (error);
162
-
163
- NSLog (@" Started requestor with arguments %@ stdout=%@ and stderr=%@ " , arguments, outFile, errorFile);
109
+ if (!(self = [super initWithAppName: @" ota-requestor" arguments: extraArguments payload: payload testcase: testcase])) {
110
+ return nil ;
111
+ }
164
112
165
- [_testcase registerRunningRequestor: self ];
113
+ _testcase = testcase;
114
+ _payload = payload;
115
+ _downloadFilePath = downloadFilePath;
166
116
167
117
return self;
168
118
}
169
119
170
- - (void )terminate
171
- {
172
- [_appTask terminate ];
173
- }
174
-
175
120
@end
176
121
177
122
@interface MTROTAProviderTestControllerDelegate : NSObject <MTRDeviceControllerDelegate>
@@ -579,7 +524,6 @@ - (instancetype)initWithRawImagePath:(NSString *)rawImagePath
579
524
580
525
@implementation MTROTAProviderTests {
581
526
NSMutableSet <NSNumber *> * _commissionedNodeIDs;
582
- NSMutableSet <MTROTARequestorAppRunner *> * _runningRequestors;
583
527
}
584
528
585
529
+ (void )tearDown
@@ -605,7 +549,6 @@ - (void)setUp
605
549
}
606
550
607
551
_commissionedNodeIDs = [[NSMutableSet alloc ] init ];
608
- _runningRequestors = [[NSMutableSet alloc ] init ];
609
552
610
553
XCTAssertNil (sOTAProviderDelegate .queryImageHandler );
611
554
XCTAssertNil (sOTAProviderDelegate .applyUpdateRequestHandler );
@@ -637,12 +580,6 @@ - (void)tearDown
637
580
ResetCommissionee (device, dispatch_get_main_queue (), self, kTimeoutInSeconds );
638
581
}
639
582
640
- for (MTROTARequestorAppRunner * runner in _runningRequestors) {
641
- [runner terminate ];
642
- }
643
- // Break cycle.
644
- _runningRequestors = nil ;
645
-
646
583
if (sController != nil ) {
647
584
[sController shutdown ];
648
585
XCTAssertFalse ([sController isRunning ]);
@@ -686,11 +623,6 @@ - (MTRDevice *)commissionDeviceWithPayload:(NSString *)payloadString nodeID:(NSN
686
623
return [MTRDevice deviceWithNodeID: nodeID controller: sController ];
687
624
}
688
625
689
- - (void )registerRunningRequestor : (MTROTARequestorAppRunner *)requestor
690
- {
691
- [_runningRequestors addObject: requestor];
692
- }
693
-
694
626
- (void )initStack
695
627
{
696
628
sStackInitRan = YES ;
@@ -717,43 +649,6 @@ + (void)shutdownStack
717
649
[[MTRDeviceControllerFactory sharedInstance ] stopControllerFactory ];
718
650
}
719
651
720
- /* *
721
- * Given a path relative to the Matter root, create an absolute path to the file.
722
- */
723
- - (NSString *)absolutePathFor : (NSString *)matterRootRelativePath
724
- {
725
- // Start with the absolute path to our file, then remove the suffix that
726
- // comes after the path to the Matter SDK root.
727
- NSString * pathToTest = [NSString stringWithUTF8String: __FILE__];
728
- NSMutableArray * pathComponents = [[NSMutableArray alloc ] init ];
729
- [pathComponents addObject: [pathToTest substringToIndex: (pathToTest.length - @" src/darwin/Framework/CHIPTests/MTROTAProviderTests.m" .length)]];
730
- [pathComponents addObjectsFromArray: [matterRootRelativePath pathComponents ]];
731
- return [NSString pathWithComponents: pathComponents];
732
- }
733
-
734
- /* *
735
- * Create a task given a path relative to the Matter root.
736
- */
737
- - (NSTask *)createTaskForPath : (NSString *)path
738
- {
739
- NSTask * task = [[NSTask alloc ] init ];
740
- [task setLaunchPath: [self absolutePathFor: path]];
741
- return task;
742
- }
743
-
744
- /* *
745
- * Runs a task to completion and makes sure it succeeds.
746
- */
747
- - (void )runTask : (NSTask *)task
748
- {
749
- NSError * launchError;
750
- [task launchAndReturnError: &launchError];
751
- XCTAssertNil (launchError);
752
-
753
- [task waitUntilExit ];
754
- XCTAssertEqual ([task terminationStatus ], 0 );
755
- }
756
-
757
652
/* *
758
653
* Returns path to the raw image.
759
654
*/
0 commit comments