# frozen_string_literal: true class FileList def initialize(lines) @lines = lines end def filenames @lines.map(&:split).map(&:last) end def long_form? @lines.all? do |line| line =~ /^[rwxSst-]{10}/ end end def short_form? !long_form? end def eplf_format? @lines.all? do |line| line =~ /^\+.*\t.*$/ end end def empty? @lines.empty? end end When /^the client successfully lists the directory(?: "(.*?)")?$/ do |directory| @list = FileList.new(client.ls(*[directory].compact)) end When /^the client lists the directory( "(?:.*?)")?$/ do |directory| capture_error do step "the client successfully lists the directory#{directory}" end end When /^the client successfully name-lists the directory(?: "(.*?)")?$/ do |directory| @list = FileList.new(client.nlst(*[directory].compact)) end When /^the client name-lists the directory( "(?:.*?)")?$/ do |directory| capture_error do step "the client successfully name-lists the directory#{directory}" end end Then /^the file list should( not)? contain "(.*?)"$/ do |neg, filename| verb = if neg :to_not else :to end expect(@list.filenames).send(verb, include(filename)) end Then /^the file list should be in (long|short) form$/ do |form| expect(@list).to send("be_#{form}_form") end Then /^the file list should be empty$/ do expect(@list).to be_empty end Then /^the list should be in EPLF format$/ do expect(@list).to be_eplf_format end