Sha256: 3d4d4189eab79f46c58e047d19c39ff4a167114a428f2680a3ae359f786aeb5a

Contents?: true

Size: 1.99 KB

Versions: 49

Compression:

Stored size: 1.99 KB

Contents

require File.expand_path('../../../../spec_helper', __FILE__)
require 'net/ftp'
require File.expand_path('../fixtures/server', __FILE__)

describe "Net::FTP#acct" do
  before(:each) do
    @server = NetFTPSpecs::DummyFTP.new
    @server.serve_once

    @ftp = Net::FTP.new
    @ftp.connect("127.0.0.1", 9876)
  end

  after(:each) do
    @ftp.quit rescue nil
    @ftp.close
    @server.stop
  end

  it "writes the ACCT command to the server" do
    @ftp.acct("my_account")
    @ftp.last_response.should == "230 User 'my_account' logged in, proceed. (ACCT)\n"
  end

  it "returns nil" do
    @ftp.acct("my_account").should == nil
  end

  it "does not raise any error when the response code is 230" do
    @server.should_receive(:acct).and_respond("230 User logged in, proceed.")
    lambda { @ftp.acct("my_account") }.should_not raise_error
  end

  it "raises a Net::FTPPermError when the response code is 530" do
    @server.should_receive(:acct).and_respond("530 Not logged in.")
    lambda { @ftp.acct("my_account") }.should raise_error(Net::FTPPermError)
  end

  it "raises a Net::FTPPermError when the response code is 500" do
    @server.should_receive(:acct).and_respond("500 Syntax error, command unrecognized.")
    lambda { @ftp.acct("my_account") }.should raise_error(Net::FTPPermError)
  end

  it "raises a Net::FTPPermError when the response code is 501" do
    @server.should_receive(:acct).and_respond("501 Syntax error in parameters or arguments.")
    lambda { @ftp.acct("my_account") }.should raise_error(Net::FTPPermError)
  end

  it "raises a Net::FTPPermError when the response code is 503" do
    @server.should_receive(:acct).and_respond("503 Bad sequence of commands.")
    lambda { @ftp.acct("my_account") }.should raise_error(Net::FTPPermError)
  end

  it "raises a Net::FTPTempError when the response code is 421" do
    @server.should_receive(:acct).and_respond("421 Service not available, closing control connection.")
    lambda { @ftp.acct("my_account") }.should raise_error(Net::FTPTempError)
  end
end

Version data entries

49 entries across 49 versions & 2 rubygems

Version Path
rhodes-7.6.0 spec/framework_spec/app/spec/library/net/ftp/acct_spec.rb
rhodes-7.5.1 spec/framework_spec/app/spec/library/net/ftp/acct_spec.rb
rhodes-7.4.1 spec/framework_spec/app/spec/library/net/ftp/acct_spec.rb
rhodes-7.1.17 spec/framework_spec/app/spec/library/net/ftp/acct_spec.rb
rhodes-6.2.0 spec/framework_spec/app/spec/library/net/ftp/acct_spec.rb
rhodes-6.0.11 spec/framework_spec/app/spec/library/net/ftp/acct_spec.rb
rhodes-5.5.18 spec/framework_spec/app/spec/library/net/ftp/acct_spec.rb
rhodes-5.5.17 spec/framework_spec/app/spec/library/net/ftp/acct_spec.rb
rhodes-5.5.15 spec/framework_spec/app/spec/library/net/ftp/acct_spec.rb
rhodes-5.5.0.22 spec/framework_spec/app/spec/library/net/ftp/acct_spec.rb
rhodes-5.5.2 spec/framework_spec/app/spec/library/net/ftp/acct_spec.rb
rhodes-5.5.0.7 spec/framework_spec/app/spec/library/net/ftp/acct_spec.rb
rhodes-5.5.0.3 spec/framework_spec/app/spec/library/net/ftp/acct_spec.rb
rhodes-5.5.0 spec/framework_spec/app/spec/library/net/ftp/acct_spec.rb
tauplatform-1.0.3 spec/framework_spec/app/spec/library/net/ftp/acct_spec.rb
tauplatform-1.0.2 spec/framework_spec/app/spec/library/net/ftp/acct_spec.rb
tauplatform-1.0.1 spec/framework_spec/app/spec/library/net/ftp/acct_spec.rb
rhodes-3.5.1.12 spec/framework_spec/app/spec/library/net/ftp/acct_spec.rb
rhodes-3.3.5 spec/framework_spec/app/spec/library/net/ftp/acct_spec.rb
rhodes-3.4.2 spec/framework_spec/app/spec/library/net/ftp/acct_spec.rb