Giter Club home page Giter Club logo

Comments (4)

maximebeaudoin avatar maximebeaudoin commented on August 15, 2024

Possible duplicate of #31 and https://github.com/ellipsesynergie/api-response#testing-within-laravel

from api-response.

jminkler avatar jminkler commented on August 15, 2024

Yeah, seems to be duplicate.

from api-response.

jminkler avatar jminkler commented on August 15, 2024

However, I am not having much luck with the Trait

I get:
Call to undefined method Feature\CartTest::resetPageContext()

Digging into the 5.4.35 Illuminate\Foundation\Testing\Concerns\MakesHttpRequests::call I see it may have changed from what the Trait does.

Tried putting this into TestCase:
`public function call($method, $uri, $parameters = [], $cookies = [], $files = [], $server = [], $content = null)
{
$kernel = $this->app->make(HttpKernel::class);

    $files = array_merge($files, $this->extractFilesFromDataArray($parameters));

    $symfonyRequest = SymfonyRequest::create(
        $this->prepareUrlForRequest($uri), $method, $parameters,
        $cookies, $files, array_replace($this->serverVariables, $server), $content
    );

    $response = app(\EllipseSynergie\ApiResponse\Contracts\Response::class);

    $response
       ->getManager()
       ->parseIncludes(explode(',', $symfonyRequest->get('include')));

    $response = $kernel->handle($symfonyRequest);

    $kernel->terminate($request, $response);

    return $this->createTestResponse($response);
}`

But getting:
testing.ERROR: exception 'Symfony\Component\Debug\Exception\FatalErrorException' with message 'Call to undefined method Symfony\Component\HttpFoundation\Request::setUserResolver()' in /var/www/html/api/vendor/laravel/framework/src/Illuminate/Auth/AuthServiceProvider.php:85 Stack trace: #0 {main}

Stuck a bit here

from api-response.

jminkler avatar jminkler commented on August 15, 2024

I see what I did

Final call()

`public function call($method, $uri, $parameters = [], $cookies = [], $files = [], $server = [], $content = null)
{
$kernel = $this->app->make(HttpKernel::class);

    $files = array_merge($files, $this->extractFilesFromDataArray($parameters));

    $symfonyRequest = SymfonyRequest::create(
        $this->prepareUrlForRequest($uri), $method, $parameters,
        $cookies, $files, array_replace($this->serverVariables, $server), $content
    );

    $request = Request::createFromBase($symfonyRequest);

    $response = app(\EllipseSynergie\ApiResponse\Contracts\Response::class);

    $response
       ->getManager()
       ->parseIncludes(explode(',', $request->get('include')));

    $response = $kernel->handle($request);

    $kernel->terminate($request, $response);

    return $this->createTestResponse($response);
}`

Actually have no idea how this works since $response gets reset ...

from api-response.

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.