[
https://issues.apache.org/jira/browse/CB-96?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Shazron Abdullah resolved CB-96.
--------------------------------
Resolution: Fixed
Fix Version/s: 1.3.0
fixed in commit
https://github.com/callback/callback-ios/commit/68c2a010cf46994a754abba5f6e999766bf3fba7
> [PGWhitelist processWhitelist] IP adresses handling
> ---------------------------------------------------
>
> Key: CB-96
> URL: https://issues.apache.org/jira/browse/CB-96
> Project: Apache Callback
> Issue Type: Bug
> Components: iOS
> Environment: Xcode 4
> Reporter: STB Land
> Assignee: Shazron Abdullah
> Priority: Critical
> Labels: objective-c, phonegap, regex, wildcard
> Fix For: 1.3.0
>
> Original Estimate: 4h
> Remaining Estimate: 4h
>
> Theses tests fail with version 1.2.0 (not tested before) :
> {code:title=PGWhitelistTests.h|borderStyle=solid}
> @interface PGWhitelistTests : SenTestCase {
> }
> {code}
> {code:title=PGWhitelistTests.m|borderStyle=solid}
> #import "PGWhitelistTests.h"
> #import <PhoneGap/PGWhitelist.h>
> @implementation PGWhitelistTests
> - (void)setUp
> {
> [super setUp];
> }
> - (void)tearDown
> {
> [super tearDown];
> }
> - (void) testIpExactMatch
> {
> NSArray* allowedHosts = [NSArray arrayWithObjects:
> @"162.168.1.1",
> @"162.168.2.1",
> nil];
> PGWhitelist* whitelist = [[PGWhitelist alloc] initWithArray:allowedHosts];
> STAssertFalse([whitelist URLIsAllowed:[NSURL
> URLWithString:@"http://mydomain.com"]], nil);
> STAssertTrue([whitelist URLIsAllowed:[NSURL
> URLWithString:@"http://192.168.1.1"]], nil);
> STAssertTrue([whitelist URLIsAllowed:[NSURL
> URLWithString:@"http://192.168.2.1"]], nil);
> STAssertFalse([whitelist URLIsAllowed:[NSURL
> URLWithString:@"http://192.168.3.1"]], nil);
> [whitelist release];
> }
> - (void) testIpWildcardMatch
> {
> NSArray* allowedHosts = [NSArray arrayWithObjects:
> @"162.168.1.*",
> @"162.168.2.*",
> nil];
> PGWhitelist* whitelist = [[PGWhitelist alloc] initWithArray:allowedHosts];
> STAssertFalse([whitelist URLIsAllowed:[NSURL
> URLWithString:@"http://mydomain.com"]], nil);
> STAssertTrue([whitelist URLIsAllowed:[NSURL
> URLWithString:@"http://192.168.1.1"]], nil);
> STAssertTrue([whitelist URLIsAllowed:[NSURL
> URLWithString:@"http://192.168.1.2"]], nil);
> STAssertTrue([whitelist URLIsAllowed:[NSURL
> URLWithString:@"http://192.168.2.1"]], nil);
> STAssertTrue([whitelist URLIsAllowed:[NSURL
> URLWithString:@"http://192.168.2.2"]], nil);
> STAssertFalse([whitelist URLIsAllowed:[NSURL
> URLWithString:@"http://192.168.3.1"]], nil);
> [whitelist release];
> }
> @end
> {code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira