Giter Club home page Giter Club logo

Comments (3)

jjohnson4014 avatar jjohnson4014 commented on September 21, 2024

I'm running into this as well using Xcode 6.0.1 targetting 8.0, trying to verify that a header with a UUID is matched. Could be I'm missing something?

#define EXP_SHORTHAND
#import "Expecta.h"
#import "Specta.h"
#import "Nocilla.h"

SpecBegin(Requests)

describe(@"Nocilla", ^{

    __block NSString *fakeURL;

    beforeAll(^{
        fakeURL = @"http://somefakeplace.com";
        [[LSNocilla sharedInstance] start];
    });

    afterAll(^{
        [[LSNocilla sharedInstance] stop];
    });
    afterEach(^{
        [[LSNocilla sharedInstance] clearStubs];
    });

    it(@"control to verify regex is valid", ^{
        NSRegularExpression *headerRegex = [NSRegularExpression regularExpressionWithPattern:@"[\\w]{8}(-[\\w]{4}){3}-[\\w]{12}" options:0 error:nil];
        NSString *uuid = [[NSUUID UUID] UUIDString];
        NSArray *matches = [headerRegex matchesInString:uuid options:0 range:NSMakeRange(0, [uuid length])];
        expect([matches count]).to.beGreaterThan(0);
    });

    it(@"should match a stub that has a UUID in a header", ^AsyncBlock {
        NSRegularExpression *headerRegex = [NSRegularExpression regularExpressionWithPattern:@"[\\w]{8}(-[\\w]{4}){3}-[\\w]{12}" options:0 error:nil];
        stubRequest(@"GET", fakeURL)
        .withHeaders(@{@"Accept": @"application/json", @"TraceContext":headerRegex})
        .andReturn(200).withBody(@"{\"ok\":true}");

        NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:[NSURL URLWithString:fakeURL]];
        [request setValue:@"application/json" forHTTPHeaderField:@"Accept"];
        [request setValue:[[NSUUID UUID] UUIDString] forHTTPHeaderField:@"TraceContext"];
        [NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue currentQueue] completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) {
            expect(data).to.equal(@"{\"ok\":true}".data);
            done();
        }];
    });
});

SpecEnd

from nocilla.

itspage avatar itspage commented on September 21, 2024

@jjohnson4014 This is because you can't put regular expressions in the header matching - you can only use regular expressions to match the URL.

from nocilla.

itspage avatar itspage commented on September 21, 2024

OK further update on this it seems to happen with the iOS7 introduced NSURLSession dataTaskWithURL but not with the old school NSURLConnection requests.

from nocilla.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.