Git Product home page Git Product logo

manualreaderobjc's Introduction

ManualReaderObjC

ManualReaderObjC parses fixtures generated by Manual and provides methods to easily get example JSON payloads for particular object schemas, get request and response information for endpoints, and even stub request responses (powered by Nocilla).

Usage

Stub a network request/response.

// Use a test target class to get the bundle which contains the test fixtures.
NSBundle *bundle = [NSBundle bundleForClass:SomeTestTargetClass.class];
NSString *path = @"Fixtures/example.automatic.com";
AUTAPIServiceFixtures *serviceFixtures = [AUTAPIServiceFixtures fixturesInBundle:bundle atPath:path];

[serviceFixtures stubRequestWithMethod:@"GET" pathTemplate:@"test/{test_id}/" statusCode:200];

// Perform network request and verify response is valid.

Get example JSON for model generation testing.

// Where "Base_A" is the name of the object schema being tested.
NSDictionary *json = serviceFixtures.examples[@"Base_A"];

// Perform JSON object deserialization and validate fields.

Get a type safe representation of an endpoint fixture.

AUTAPIFixtureEndpointInfo *endpointInfo = serviceFixtures.endpoints[@"test/{test_id}/"];
AUTAPIFixture *fixture = endpointInfo[@"GET-200"];

// Now we can query values within the test fixture with type safety.
// For example:
NSDictionary<NSString *, id> *responseJSONBody = fixture.response.jsonBody;

Installing

ManualReaderObjC supports Carthage.

Setup the project by running:

$ make bootstrap

Built With

  • Nocilla - HTTP stubbing for iOS and Mac OS X

Contributing

Fork the repository and and open a pull request to the master branch.

Please report any issues found on Github in the issues section.

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

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.