-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Kai Song
authored and
Kai Song
committed
Feb 25, 2025
1 parent
d0fc33f
commit 8eb7867
Showing
3 changed files
with
206 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
158 changes: 158 additions & 0 deletions
158
IdentityCore/tests/MSIDAADTokenRequestServerTelemetryTests.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,158 @@ | ||
// | ||
// Copyright (c) Microsoft Corporation. | ||
// All rights reserved. | ||
// | ||
// This code is licensed under the MIT License. | ||
// | ||
// Permission is hereby granted, free of charge, to any person obtaining a copy | ||
// of this software and associated documentation files(the "Software"), to deal | ||
// in the Software without restriction, including without limitation the rights | ||
// to use, copy, modify, merge, publish, distribute, sublicense, and / or sell | ||
// copies of the Software, and to permit persons to whom the Software is | ||
// furnished to do so, subject to the following conditions : | ||
// | ||
// The above copyright notice and this permission notice shall be included in | ||
// all copies or substantial portions of the Software. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
// THE SOFTWARE. | ||
|
||
|
||
#import <XCTest/XCTest.h> | ||
#import "MSIDLastRequestTelemetry+Tests.h" | ||
#import "MSIDAADTokenRequestServerTelemetry.h" | ||
#import "MSIDTestSwizzle.h" | ||
#import "MSIDTestContext.h" | ||
|
||
@interface MSIDAADTokenRequestServerTelemetryTests : XCTestCase | ||
|
||
@property (nonatomic) MSIDTestContext *context; | ||
|
||
@end | ||
|
||
@implementation MSIDAADTokenRequestServerTelemetryTests | ||
|
||
- (void)setUp { | ||
// Put setup code here. This method is called before the invocation of each test method in the class. | ||
[MSIDTestSwizzle reset]; | ||
__auto_type context = [MSIDTestContext new]; | ||
context.correlationId = [[NSUUID alloc] initWithUUIDString:@"00000000-0000-0000-0000-000000000001"]; | ||
self.context = context; | ||
} | ||
|
||
- (void)tearDown { | ||
// Put teardown code here. This method is called after the invocation of each test method in the class. | ||
[MSIDTestSwizzle reset]; | ||
} | ||
|
||
- (void)test_whenNoError_passIn_handleErrorWithContext_shouldResetTelemetry | ||
{ | ||
MSIDAADTokenRequestServerTelemetry *telemetry = [MSIDAADTokenRequestServerTelemetry new]; | ||
MSIDLastRequestTelemetry *telemetryObject = [MSIDLastRequestTelemetry sharedInstance]; | ||
[telemetry setValue:telemetryObject forKey:@"lastRequestTelemetry"]; | ||
|
||
XCTestExpectation *expectation = [self expectationWithDescription:@"resetTelemetry triggerred"]; | ||
[MSIDTestSwizzle instanceMethod:@selector(resetTelemetry) | ||
class:[MSIDLastRequestTelemetry class] | ||
block:(id)^(void) | ||
{ | ||
[expectation fulfill]; | ||
|
||
}]; | ||
|
||
[MSIDTestSwizzle instanceMethod:@selector(addErrorInfo:) | ||
class:[MSIDLastRequestTelemetry class] | ||
block:(id)^(void) | ||
{ | ||
XCTFail(@"addErrorInfo should not be triggerred"); | ||
}]; | ||
|
||
[telemetry handleError:nil context:self.context]; | ||
|
||
[self waitForExpectationsWithTimeout:1 handler:nil]; | ||
} | ||
|
||
- (void)test_whenError_passIn_handleErrorWithContext_shouldAddErrorInfo | ||
{ | ||
MSIDAADTokenRequestServerTelemetry *telemetry = [MSIDAADTokenRequestServerTelemetry new]; | ||
MSIDLastRequestTelemetry *telemetryObject = [MSIDLastRequestTelemetry sharedInstance]; | ||
[telemetry setValue:telemetryObject forKey:@"lastRequestTelemetry"]; | ||
|
||
XCTestExpectation *expectation = [self expectationWithDescription:@"addErrorInfo triggerred"]; | ||
[MSIDTestSwizzle instanceMethod:@selector(resetTelemetry) | ||
class:[MSIDLastRequestTelemetry class] | ||
block:(id)^(void) | ||
{ | ||
XCTFail(@"resetTelemetry should not be triggerred"); | ||
}]; | ||
|
||
[MSIDTestSwizzle instanceMethod:@selector(addErrorInfo:) | ||
class:[MSIDLastRequestTelemetry class] | ||
block:(id)^(void) | ||
{ | ||
[expectation fulfill]; | ||
}]; | ||
|
||
[telemetry handleError:[NSError new] context:self.context]; | ||
|
||
[self waitForExpectationsWithTimeout:1 handler:nil]; | ||
} | ||
|
||
- (void)test_whenNoError_passIn_handleErrorWithMessageAndContext_shouldAddErrorInfo | ||
{ | ||
MSIDAADTokenRequestServerTelemetry *telemetry = [MSIDAADTokenRequestServerTelemetry new]; | ||
MSIDLastRequestTelemetry *telemetryObject = [MSIDLastRequestTelemetry sharedInstance]; | ||
[telemetry setValue:telemetryObject forKey:@"lastRequestTelemetry"]; | ||
|
||
XCTestExpectation *expectation = [self expectationWithDescription:@"resetTelemetry triggerred"]; | ||
[MSIDTestSwizzle instanceMethod:@selector(resetTelemetry) | ||
class:[MSIDLastRequestTelemetry class] | ||
block:(id)^(void) | ||
{ | ||
XCTFail(@"resetTelemetry should not be triggerred"); | ||
}]; | ||
|
||
[MSIDTestSwizzle instanceMethod:@selector(addErrorInfo:) | ||
class:[MSIDLastRequestTelemetry class] | ||
block:(id)^(void) | ||
{ | ||
[expectation fulfill]; | ||
}]; | ||
|
||
[telemetry handleError:nil errorString:@"error string" context:self.context]; | ||
|
||
[self waitForExpectationsWithTimeout:1 handler:nil]; | ||
} | ||
|
||
- (void)test_whenError_passIn_handleErrorWithMessageAndContext_shouldAddErrorInfo | ||
{ | ||
MSIDAADTokenRequestServerTelemetry *telemetry = [MSIDAADTokenRequestServerTelemetry new]; | ||
MSIDLastRequestTelemetry *telemetryObject = [MSIDLastRequestTelemetry sharedInstance]; | ||
[telemetry setValue:telemetryObject forKey:@"lastRequestTelemetry"]; | ||
|
||
XCTestExpectation *expectation = [self expectationWithDescription:@"resetTelemetry triggerred"]; | ||
[MSIDTestSwizzle instanceMethod:@selector(resetTelemetry) | ||
class:[MSIDLastRequestTelemetry class] | ||
block:(id)^(void) | ||
{ | ||
XCTFail(@"resetTelemetry should not be triggerred"); | ||
}]; | ||
|
||
[MSIDTestSwizzle instanceMethod:@selector(addErrorInfo:) | ||
class:[MSIDLastRequestTelemetry class] | ||
block:(id)^(void) | ||
{ | ||
[expectation fulfill]; | ||
}]; | ||
|
||
[telemetry handleError:[NSError new] errorString:@"error string" context:self.context]; | ||
|
||
[self waitForExpectationsWithTimeout:1 handler:nil]; | ||
} | ||
|
||
@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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
// | ||
// Copyright (c) Microsoft Corporation. | ||
// All rights reserved. | ||
// | ||
// This code is licensed under the MIT License. | ||
// | ||
// Permission is hereby granted, free of charge, to any person obtaining a copy | ||
// of this software and associated documentation files(the "Software"), to deal | ||
// in the Software without restriction, including without limitation the rights | ||
// to use, copy, modify, merge, publish, distribute, sublicense, and / or sell | ||
// copies of the Software, and to permit persons to whom the Software is | ||
// furnished to do so, subject to the following conditions : | ||
// | ||
// The above copyright notice and this permission notice shall be included in | ||
// all copies or substantial portions of the Software. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
// THE SOFTWARE. | ||
|
||
|
||
#import "MSIDLastRequestTelemetry.h" | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
@interface MSIDLastRequestTelemetry () | ||
|
||
- (void)resetTelemetry; | ||
|
||
- (void)addErrorInfo:(MSIDRequestTelemetryErrorInfo *)errorInfo; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |