Giter Site home page Giter Site logo

Testing the client about candy-api HOT 2 CLOSED

getcandy avatar getcandy commented on May 3, 2024
Testing the client

from candy-api.

Comments (2)

alecritson avatar alecritson commented on May 3, 2024 2

Hey @tooshay

Sure, so you can set up the client like:

CandyClient::fake();
CandyClient::init(config('app.url'));

Then you can create a mock response like:

$response = new GetCandy\Client\Testing\Response(200, ['some' => 'data']);
CandyClient::next($response);

If your service class makes two GetCandy api requests under the hood, you can queue them up:

$firstResponse =  new GetCandy\Client\Testing\Response(200, ['some' => 'data']);
$secondResponse = new GetCandy\Client\Testing\Response(200, ['more' => 'data']);

Then just call

CandyClient::queue([$firstResponse, $secondResponse]);

It's probably worth mentioning that I realise you have to do the responses manually at the moment, but I do want to implement stubs to this so you will only need to call CandyClient::fake(); and it will automatically mock the response depending on the endpoint and give a response back with a data structure you'd expect from the live api without you having to define that yourself.

from candy-api.

tooshay avatar tooshay commented on May 3, 2024

@alecritson This is great, thanks.

I do have some functional tests that require writing to the DB, however, and while the parts of our application that do this write to the test DB when the test runs, CanyAPI still writes to the regular DB. How can I get the API to write to the test one when tests are run?

from candy-api.

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.