diff options
Diffstat (limited to 'tests/spec/owner_spec.rb')
-rw-r--r-- | tests/spec/owner_spec.rb | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/spec/owner_spec.rb b/tests/spec/owner_spec.rb new file mode 100644 index 0000000..32719ec --- /dev/null +++ b/tests/spec/owner_spec.rb @@ -0,0 +1,26 @@ +require 'spec_helper' + +RSpec.describe 'HorizonScript Owner Print Utility', :type => :aruba do + context "argument passing" do + it "requires an path to be specified" do + run_command 'hscript-printowner' + expect(last_command_started).to have_output(/requires a path or file/) + end + it "requires exactly one path to be specified" do + run_command 'hscript-printowner a b c' + expect(last_command_started).to have_output(/requires a path or file/) + end + end + it "handles inaccessible paths correctly" do + run_command 'hscript-printowner /root/foo' + expect(last_command_started.stderr).to include("Permission denied") + end + it "handles nonexistent paths correctly" do + run_command 'hscript-printowner /nonexistent' + expect(last_command_started.stderr).to include("No such file or directory") + end + it "handles normal paths correctly" do + run_command 'hscript-printowner /' + expect(last_command_started.stdout).to eq("0\n") + end +end |