1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
# frozen_string_literal: true
RSpec.describe TTY::Prompt::Question, "#multiline" do
subject(:prompt) { TTY::Prompt::Test.new }
it "reads no lines" do
prompt.input << "\C-d"
prompt.input.rewind
answer = prompt.multiline("Description?")
expect(answer).to eq([])
expect(prompt.output.string).to eq([
"Description? \e[90m(Press Ctrl+D or Ctrl+Z to finish)\e[0m\n",
"\e[2K\e[1G\e[1A\e[2K\e[1G",
"Description? \n"
].join)
end
it "uses defualt when no input" do
prompt.input << "\C-d"
prompt.input.rewind
answer = prompt.multiline("Description?", default: "A super sweet prompt")
expect(answer).to eq("A super sweet prompt")
expect(prompt.output.string).to eq([
"Description? \e[90m(Press Ctrl+D or Ctrl+Z to finish)\e[0m\n",
"\e[2K\e[1G\e[1A\e[2K\e[1G",
"Description? \e[32mA super sweet prompt\e[0m\n"
].join)
end
it "changes help text" do
prompt.input << "\C-d"
prompt.input.rewind
answer = prompt.multiline("Description?") do |q|
q.default "A super sweet prompt"
q.help "(Press thy ctrl-d to end)"
end
expect(answer).to eq("A super sweet prompt")
expect(prompt.output.string).to eq([
"Description? \e[90m(Press thy ctrl-d to end)\e[0m\n",
"\e[2K\e[1G\e[1A\e[2K\e[1G",
"Description? \e[32mA super sweet prompt\e[0m\n"
].join)
end
it "sets quiet mode" do
prompt = TTY::Prompt::Test.new(quiet: true)
prompt.input << "\C-d"
prompt.input.rewind
answer = prompt.multiline("Description?", default: "A super sweet prompt")
expect(answer).to eq("A super sweet prompt")
expect(prompt.output.string).to eq([
"Description? \e[90m(Press Ctrl+D or Ctrl+Z to finish)\e[0m\n",
"\e[2K\e[1G\e[1A\e[2K\e[1G"
].join)
end
it "reads multiple lines with empty lines" do
prompt.input << "aa\n\nbb\n\n\ncc\C-d"
prompt.input.rewind
answer = prompt.multiline("Description?")
expect(answer).to eq(%W[aa\n bb\n cc])
expect(prompt.output.string).to eq([
"Description? \e[90m(Press Ctrl+D or Ctrl+Z to finish)\e[0m\n",
"\e[2K\e[1Ga",
"\e[2K\e[1Gaa",
"\e[2K\e[1Gaa\n",
"\e[2K\e[1G\n",
"\e[2K\e[1Gb",
"\e[2K\e[1Gbb",
"\e[2K\e[1Gbb\n",
"\e[2K\e[1G\n",
"\e[2K\e[1G\n",
"\e[2K\e[1Gc",
"\e[2K\e[1Gcc",
"\e[2K\e[1G\e[1A" * 6,
"\e[2K\e[1G",
"Description? \e[32maa ...\e[0m\n"
].join)
end
end
|