Sha256: 93d3ac9a0e9d60d3e5154b63136b628c3b3b5ab2c92c053c95a4efcaa8db6280

Contents?: true

Size: 2 KB

Versions: 2

Compression:

Stored size: 2 KB

Contents

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

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

    @ftp = Net::FTP.new
    @ftp.connect("localhost", 9921)
  end

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

  it "sends the RMD command with the passed pathname to the server" do
    @ftp.rmdir("test.folder")
    @ftp.last_response.should == "250 Requested file action okay, completed. (RMD test.folder)\n"
  end

  it "returns nil" do
    @ftp.rmdir("test.folder").should be_nil
  end

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

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

  it "raises a Net::FTPPermError when the response code is 502" do
    @server.should_receive(:rmd).and_respond("502 Command not implemented.")
    lambda { @ftp.rmdir("test.folder") }.should raise_error(Net::FTPPermError)
  end

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

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

  it "raises a Net::FTPPermError when the response code is 550" do
    @server.should_receive(:rmd).and_respond("550 Requested action not taken.")
    lambda { @ftp.rmdir("test.folder") }.should raise_error(Net::FTPPermError)
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rubysl-net-ftp-2.0.1 spec/rmdir_spec.rb
rubysl-net-ftp-1.0.0 spec/rmdir_spec.rb