Sha256: f1c9c2f654b8e2b916895f05355009817c23514933169fa6d80f156391151425

Contents?: true

Size: 1.32 KB

Versions: 23

Compression:

Stored size: 1.32 KB

Contents

require 'test/unit'
require 'promise/v2'

class TestPromiseAlways < Test::Unit::TestCase
  def test_calls_the_block_when_it_was_resolved
    x = 42
    PromiseV2.value(23)
      .then { |v| x = v }
      .always { |v| x = 2 }
      .then { assert_equal(x, 2) }
  end

  def test_calls_the_block_when_it_was_rejected
    x = 42
    PromiseV2.error(23)
      .rescue { |v| x = v }
      .always { |v| x = 2 }
      .always { assert_equal(x, 2) }
  end

  def test_acts_as_resolved
    x = 42
    PromiseV2.error(23)
      .rescue { |v| x = v }
      .always { x = 2 }
      .then { x = 3 }
      .always { assert_equal(x, 3) }
  end

  def test_can_be_called_multiple_times_on_resolved_promises
    p = PromiseV2.value(2)
    x = 1
    ps = []
    ps << p.then { x += 1 }
    ps << p.fail { x += 2 }
    ps << p.always { x += 3 }

    PromiseV2.when(ps).always do
      assert_equal(x, 5)
    end
  end

  def test_can_be_called_multiple_times_on_rejected_promises
    p = PromiseV2.error(2)
    x = 1
    ps = []
    ps << p.then { x += 1 }.fail{}
    ps << p.fail { x += 2 }
    ps << p.always { x += 3 }.fail{}

    PromiseV2.when(ps).then do
      assert_equal(x, 6)
    end
  end

  def test_raises_with_alwaysB_if_a_promise_has_already_been_chained
    p = PromiseV2.new

    p.then! {}

    assert_raise(ArgumentError) { p.always! {} }
  end
end

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
opal-1.7.4 test/opal/promisev2/test_always.rb
opal-1.8.0.alpha1 test/opal/promisev2/test_always.rb
opal-1.7.3 test/opal/promisev2/test_always.rb
opal-1.7.2 test/opal/promisev2/test_always.rb
opal-1.7.1 test/opal/promisev2/test_always.rb
opal-1.7.0 test/opal/promisev2/test_always.rb
opal-1.7.0.rc1 test/opal/promisev2/test_always.rb
opal-1.6.1 test/opal/promisev2/test_always.rb
opal-1.6.0 test/opal/promisev2/test_always.rb
opal-1.6.0.rc1 test/opal/promisev2/test_always.rb
opal-1.6.0.alpha1 test/opal/promisev2/test_always.rb
opal-1.5.1 test/opal/promisev2/test_always.rb
opal-1.5.0 test/opal/promisev2/test_always.rb
opal-1.5.0.rc1 test/opal/promisev2/test_always.rb
opal-1.4.1 test/opal/promisev2/test_always.rb
opal-1.4.0 test/opal/promisev2/test_always.rb
opal-1.4.0.alpha1 test/opal/promisev2/test_always.rb
opal-1.3.2 test/opal/promisev2/test_always.rb
opal-1.3.1 test/opal/promisev2/test_always.rb
opal-1.3.0 test/opal/promisev2/test_always.rb