Sha256: 6d89049f27ad58b134fdb9eba3180ea577424728d7016394a71af734d2d49607

Contents?: true

Size: 1.1 KB

Versions: 27

Compression:

Stored size: 1.1 KB

Contents

require 'test_helper'

module Workarea
  module Storefront
    class DownloadsIntegrationTest < Workarea::IntegrationTest
      def test_show
        token = create_fulfillment_token(sku: 'SKU1')
        sku = create_fulfillment_sku(id: 'SKU1', policy: :download, file: product_image_file)

        get storefront.download_path(token)
        assert(response.ok?)
        assert_equal(1, token.reload.downloads)

        token.update!(enabled: false)

        get storefront.download_path(token)
        assert_redirected_to(storefront.root_path)
        assert(flash[:info].present?)
        assert_equal(1, token.reload.downloads)

        token.update!(enabled: true)
        sku.update!(policy: 'shipping')

        get storefront.download_path(token)
        assert_redirected_to(storefront.root_path)
        assert(flash[:info].present?)
        assert_equal(1, token.reload.downloads)

        sku.destroy!

        get storefront.download_path(token)
        assert_redirected_to(storefront.root_path)
        assert(flash[:info].present?)
        assert_equal(1, token.reload.downloads)
      end
    end
  end
end

Version data entries

27 entries across 27 versions & 1 rubygems

Version Path
workarea-storefront-3.5.27 test/integration/workarea/storefront/downloads_integration_test.rb
workarea-storefront-3.5.26 test/integration/workarea/storefront/downloads_integration_test.rb
workarea-storefront-3.5.25 test/integration/workarea/storefront/downloads_integration_test.rb
workarea-storefront-3.5.23 test/integration/workarea/storefront/downloads_integration_test.rb
workarea-storefront-3.5.22 test/integration/workarea/storefront/downloads_integration_test.rb
workarea-storefront-3.5.21 test/integration/workarea/storefront/downloads_integration_test.rb
workarea-storefront-3.5.20 test/integration/workarea/storefront/downloads_integration_test.rb
workarea-storefront-3.5.19 test/integration/workarea/storefront/downloads_integration_test.rb
workarea-storefront-3.5.18 test/integration/workarea/storefront/downloads_integration_test.rb
workarea-storefront-3.5.17 test/integration/workarea/storefront/downloads_integration_test.rb
workarea-storefront-3.5.16 test/integration/workarea/storefront/downloads_integration_test.rb
workarea-storefront-3.5.15 test/integration/workarea/storefront/downloads_integration_test.rb
workarea-storefront-3.5.14 test/integration/workarea/storefront/downloads_integration_test.rb
workarea-storefront-3.5.13 test/integration/workarea/storefront/downloads_integration_test.rb
workarea-storefront-3.5.12 test/integration/workarea/storefront/downloads_integration_test.rb
workarea-storefront-3.5.11 test/integration/workarea/storefront/downloads_integration_test.rb
workarea-storefront-3.5.10 test/integration/workarea/storefront/downloads_integration_test.rb
workarea-storefront-3.5.9 test/integration/workarea/storefront/downloads_integration_test.rb
workarea-storefront-3.5.8 test/integration/workarea/storefront/downloads_integration_test.rb
workarea-storefront-3.5.7 test/integration/workarea/storefront/downloads_integration_test.rb