Sha256: 9c58bb28349594be12575081f18ce2c9ecadcc8ca6e5fc0f5d4b9ac53b6fca68

Contents?: true

Size: 1.18 KB

Versions: 14

Compression:

Stored size: 1.18 KB

Contents

Feature: Features

  As a client
  I want to know what FTP extension the server supports
  So that I can use them without trial-and-error

  Background:

  Scenario: TLS Disabled
    Given the test server is started
    And the client connects
    When the client successfully requests features
    Then the response should not include TLS features

  Scenario: TLS Enabled
    Given the test server has TLS mode "explicit"
    And the test server is started
    And the client connects
    When the client successfully requests features
    Then the response should include TLS features

  Scenario: Argument given
    Given the test server is started
    And the client connects
    When the client sends "FEAT FOO"
    Then the server returns a syntax error

  Scenario: IPV6 Extensions
    Given the test server is started
    When the client successfully requests features
    Then the response should include feature "EPRT"
    And the response should include feature "EPSV"

  Scenario: RFC 3659 Extensions
    Given the test server is started
    When the client successfully requests features
    Then the response should include feature "SIZE"
    Then the response should include feature "MDTM"

Version data entries

14 entries across 14 versions & 2 rubygems

Version Path
ftpd-2.0.1 features/ftp_server/features.feature
ftpd-2.0.0 features/ftp_server/features.feature
ftpd-1.1.1 features/ftp_server/features.feature
ftpd-1.1.0 features/ftp_server/features.feature
investtools-ftpd-1.0.1 features/ftp_server/features.feature
ftpd-1.0.1 features/ftp_server/features.feature
ftpd-1.0.0 features/ftp_server/features.feature
ftpd-0.17.0 features/ftp_server/features.feature
ftpd-0.16.0 features/ftp_server/features.feature
ftpd-0.15.0 features/ftp_server/features.feature
ftpd-0.14.0 features/ftp_server/features.feature
ftpd-0.13.0 features/ftp_server/features.feature
ftpd-0.12.0 features/ftp_server/features.feature
ftpd-0.11.0 features/ftp_server/features.feature