Sha256: 3444fe21c80ec6783b4a97a95651c205f8f41aaadc1c98bbf85fa9af8f1aadb9

Contents?: true

Size: 1.5 KB

Versions: 14

Compression:

Stored size: 1.5 KB

Contents

require 'spec_helper'
require 'cucumber/wire_support/wire_language'
require 'tempfile'

module Cucumber
  module WireSupport
    describe Configuration do
      let(:wire_file) { Tempfile.new('wire') }
      let(:config) { Configuration.from_file(wire_file.path) }

      def write_wire_file(contents)
        wire_file << contents
        wire_file.close
      end

      it "reads the hostname / port from the file" do
        write_wire_file %q{
          host: localhost
          port: 54321
        }

        expect(config.host).to eq 'localhost'
        expect(config.port).to eq 54321
      end

      it "reads the timeout for a specific message" do
        write_wire_file %q{
          host: localhost
          port: 54321
          timeout:
            invoke: 99
        }

        expect(config.timeout('invoke')).to eq 99
      end

      it "reads the timeout for a connect message" do
        write_wire_file %q{
          host: localhost
          port: 54321
          timeout:
            connect: 99
        }

        expect(config.timeout('connect')).to eq 99
      end

      describe "a wire file with no timeouts specified" do
        before(:each) do
          write_wire_file %q{
            host: localhost
            port: 54321
          }
        end

        %w(invoke begin_scenario end_scenario).each do |message|
          it "sets the default timeout for '#{message}' to 120 seconds" do
            expect(config.timeout(message)).to eq 120
          end
        end
      end
    end
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
cucumber-2.1.0 spec/cucumber/wire_support/configuration_spec.rb
cucumber-2.0.2 spec/cucumber/wire_support/configuration_spec.rb
cucumber-2.0.1 spec/cucumber/wire_support/configuration_spec.rb
cucumber-2.0.0 spec/cucumber/wire_support/configuration_spec.rb
cucumber-2.0.0.rc.5 spec/cucumber/wire_support/configuration_spec.rb
cucumber-2.0.0.rc.4 spec/cucumber/wire_support/configuration_spec.rb
cucumber-2.0.0.rc.3 spec/cucumber/wire_support/configuration_spec.rb
cucumber-2.0.0.rc.2 spec/cucumber/wire_support/configuration_spec.rb
cucumber-2.0.0.rc.1 spec/cucumber/wire_support/configuration_spec.rb
cucumber-2.0.0.beta.5 spec/cucumber/wire_support/configuration_spec.rb
cucumber-2.0.0.beta.4 spec/cucumber/wire_support/configuration_spec.rb
cucumber-2.0.0.beta.3 spec/cucumber/wire_support/configuration_spec.rb
cucumber-2.0.0.beta.2 spec/cucumber/wire_support/configuration_spec.rb
cucumber-2.0.0.beta.1 spec/cucumber/wire_support/configuration_spec.rb