mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
3.6 KiB
Objective-C
81 lines
3.6 KiB
Objective-C
#import <XCTest/XCTest.h>
|
|
#import "DnsManager.h"
|
|
#import "TestUtil.h"
|
|
|
|
#define infrastructureTestHostName @"relay.whispersystems.org"
|
|
#define reliableHostName @"example.com"
|
|
#define invalidHostname @"∆©˙∆¨¥©©˜¨¥©˜†¥µ¬¬¨˙µ†¥∫®∂®†"
|
|
#define nonExistentHostname [NSString stringWithFormat:@"%@kfurmtludehntlgihmvnduyebntiinvbudydepqowudyfnrkt.com", \
|
|
[[CryptoTools generateSecureRandomData:10] encodedAsBase64]]
|
|
|
|
@interface DnsManagerTest : XCTestCase
|
|
|
|
@end
|
|
|
|
@implementation DnsManagerTest
|
|
|
|
-(void) testQueryAddresses_Sequential {
|
|
TOCFuture* f1 = [DnsManager asyncQueryAddressesForDomainName:reliableHostName
|
|
unlessCancelled:nil];
|
|
testChurnUntil(f1.hasResult, 5.0);
|
|
test(f1.hasResult && [(NSArray*)[f1 forceGetResult] count] > 0);
|
|
|
|
TOCFuture* f2 = [DnsManager asyncQueryAddressesForDomainName:invalidHostname
|
|
unlessCancelled:nil];
|
|
testChurnUntil(f2.hasFailed, 5.0);
|
|
|
|
TOCFuture* f3 = [DnsManager asyncQueryAddressesForDomainName:nonExistentHostname
|
|
unlessCancelled:nil];
|
|
testChurnUntil(f3.hasFailed, 5.0);
|
|
|
|
TOCFuture* f4 = [DnsManager asyncQueryAddressesForDomainName:infrastructureTestHostName
|
|
unlessCancelled:nil];
|
|
testChurnUntil(f4.hasResult, 5.0);
|
|
test(f4.hasResult && [(NSArray*)[f4 forceGetResult] count] > 0);
|
|
|
|
}
|
|
|
|
-(void) testQueryAddresses_Concurrent {
|
|
TOCFuture* f1 = [DnsManager asyncQueryAddressesForDomainName:reliableHostName
|
|
unlessCancelled:nil];
|
|
TOCFuture* f2 = [DnsManager asyncQueryAddressesForDomainName:invalidHostname
|
|
unlessCancelled:nil];
|
|
TOCFuture* f3 = [DnsManager asyncQueryAddressesForDomainName:nonExistentHostname
|
|
unlessCancelled:nil];
|
|
TOCFuture* f4 = [DnsManager asyncQueryAddressesForDomainName:infrastructureTestHostName
|
|
unlessCancelled:nil];
|
|
|
|
testChurnUntil(f1.hasResult && f2.hasFailed && f3.hasFailed && f4.hasResult, 5.0);
|
|
test(f1.hasResult && [(NSArray*)[f1 forceGetResult] count] > 0);
|
|
test(f4.hasResult && [(NSArray*)[f4 forceGetResult] count] > 0);
|
|
}
|
|
|
|
-(void) testQueryAddresses_Cancel {
|
|
TOCCancelTokenSource* c = [TOCCancelTokenSource new];
|
|
TOCFuture* f1 = [DnsManager asyncQueryAddressesForDomainName:reliableHostName
|
|
unlessCancelled:c.token];
|
|
TOCFuture* f2 = [DnsManager asyncQueryAddressesForDomainName:invalidHostname
|
|
unlessCancelled:c.token];
|
|
TOCFuture* f3 = [DnsManager asyncQueryAddressesForDomainName:nonExistentHostname
|
|
unlessCancelled:c.token];
|
|
TOCFuture* f4 = [DnsManager asyncQueryAddressesForDomainName:infrastructureTestHostName
|
|
unlessCancelled:c.token];
|
|
[c cancel];
|
|
|
|
testChurnUntil(!f1.isIncomplete && f2.hasFailed && f3.hasFailed && !f4.isIncomplete, 5.0);
|
|
test(f1.hasResult || f1.hasFailedWithCancel);
|
|
test(f2.hasFailed);
|
|
test(f3.hasFailed);
|
|
test(f4.hasResult || f4.hasFailedWithCancel);
|
|
}
|
|
|
|
-(void)testQueryAddresses_FastCancel {
|
|
TOCCancelTokenSource* c = [TOCCancelTokenSource new];
|
|
TOCFuture* f = [DnsManager asyncQueryAddressesForDomainName:reliableHostName
|
|
unlessCancelled:c.token];
|
|
[c cancel];
|
|
test(!f.isIncomplete);
|
|
}
|
|
|
|
@end
|