Giter Club home page Giter Club logo

Comments (4)

mtdowling avatar mtdowling commented on May 6, 2024

You need to call wait on the promise or manually tick the promise queue.

On Jul 7, 2016, at 8:06 AM, Aron Beal [email protected] wrote:

Hi,

I'm attempting to do some unit testing using a class that utilizes the promises library. Here's the general approach (in a file MyTest.php):

use PHPUnit\Framework\TestCase;

class MyTest extends TestCase {

/**

  • Tests unit testing with callbacks.
    */
    public function testFoo() {
    $p = new FulfilledPromise("");
    $me = $this;
    $p->then(function() use ($me) {
    $me->assertTrue(TRUE, "Foo promise returning method succeeded.");
    print (sprintf("%s::%s line %s: Success callback executed\n", get_class($this), FUNCTION, LINE));
    }, function() use ($me) {
    $me->assertTrue(FALSE, "Foo promise returning method succeeded.");
    print (sprintf("%s::%s line %s: Failure callback executed\n", get_class($this), FUNCTION, LINE));
    });
    }
    }
    The test completes without any assertions occurring (at least, none whose output is recognized by the testing suite). It appears the callbacks execute after the unit test completes:

PHPUnit 5.2.9 by Sebastian Bergmann and contributors.

Runtime: PHP 5.6.18 with Xdebug 2.3.3
Configuration: [excluded]

. 1 / 1 (100%)

Time: 154 ms, Memory: 5.25Mb

OK (1 test, 0 assertions)
MyTest::{closure} line 91: Success callback executed
Do you know of a decent approach to using PHPUnit with Guzzle promises?


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.

from promises.

aronbeal avatar aronbeal commented on May 6, 2024

Can you tell me where? I tried changing the method to:

  /**
   * Tests unit testing with callbacks.
   */
  public function testFoo() {
    $p = new FulfilledPromise("");
    $me = $this;
    $p->then(function() use ($me) {
        $me->assertTrue(TRUE, "Foo promise returning method succeeded.");
        print (sprintf("%s::%s line %s: Success callback executed\n", get_class($this), __FUNCTION__, __LINE__));
    }, function() use ($me) {
        $me->assertTrue(FALSE, "Foo promise returning method succeeded.");
        print (sprintf("%s::%s line %s: Failure callback executed\n", get_class($this), __FUNCTION__, __LINE__));
    });
    $p->wait();
  }

but the problem remains. 1 test, 0 assertions

from promises.

aronbeal avatar aronbeal commented on May 6, 2024

Oh wow. I'm highly overcomplicating this.

  /**
   * Tests unit testing with callbacks.
   */
  public function testFoo() {
    $p = new FulfilledPromise(TRUE);
    $result = $p->then(function() {
        return TRUE;
    }, function() {
        return FALSE;
    })->wait();
    $this->assertTrue($result, "Testing foo");
  }

Nm. :)

from promises.

aronbeal avatar aronbeal commented on May 6, 2024

And thank you, by the way. Appreciate the help.

from promises.

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.