File tree 6 files changed +11
-35
lines changed
6 files changed +11
-35
lines changed Original file line number Diff line number Diff line change @@ -223,7 +223,9 @@ def sync
223
223
newparam ( :path ) do
224
224
desc "The search path used for command execution.
225
225
Commands must be fully qualified if no path is specified. Paths
226
- can be specified as an array or as a '#{ File ::PATH_SEPARATOR } ' separated list."
226
+ can be specified as an array or as a '#{ File ::PATH_SEPARATOR } ' separated list. Defaults to the `path` fact."
227
+
228
+ defaultto Puppet . runtime [ :facter ] . value ( 'path' )
227
229
228
230
# Support both arrays and colon-separated fields.
229
231
def value = ( *values )
Original file line number Diff line number Diff line change @@ -650,10 +650,10 @@ def with_another_agent_running(&block)
650
650
. and output ( /No more routes to fileserver/ ) . to_stderr
651
651
end
652
652
653
- it 'preserves the old cached catalog if validation fails with the old one ' do
653
+ it 'Updates the old cached catalog if a resource failed to apply ' do
654
654
catalog_handler = -> ( req , res ) {
655
655
catalog = compile_to_catalog ( <<-MANIFEST , node )
656
- exec { 'unqualified_command': }
656
+ exec { 'unqualified_command': path => '' }
657
657
MANIFEST
658
658
659
659
res . body = formatter . render ( catalog )
@@ -665,14 +665,14 @@ def with_another_agent_running(&block)
665
665
expect {
666
666
agent . command_line . args << '--test'
667
667
agent . run
668
- } . to exit_with ( 1 )
668
+ } . to exit_with ( 4 )
669
669
. and output ( %r{Retrieving plugin} ) . to_stdout
670
- . and output ( %r{Validation of Exec \[ unqualified_command \] failed: 'unqualified_command' is not qualified and no path was specified } ) . to_stderr
670
+ . and output ( %r{Error: Could not find command 'unqualified_command' } ) . to_stderr
671
671
end
672
672
673
- # cached catalog should not be updated
673
+ # cached catalog should be updated
674
674
cached_catalog = "#{ File . join ( Puppet [ :client_datadir ] , 'catalog' , Puppet [ :certname ] ) } .json"
675
- expect ( File ) . to_not be_exist ( cached_catalog )
675
+ expect ( File ) . to be_exist ( cached_catalog )
676
676
end
677
677
end
678
678
Original file line number Diff line number Diff line change @@ -15,13 +15,6 @@ def make_exe
15
15
let ( :provider ) { described_class . new ( resource ) }
16
16
17
17
describe "#validatecmd" do
18
- it "should fail if no path is specified and the command is not fully qualified" do
19
- expect { provider . validatecmd ( "foo" ) } . to raise_error (
20
- Puppet ::Error ,
21
- "'foo' is not qualified and no path was specified. Please qualify the command or specify a path."
22
- )
23
- end
24
-
25
18
it "should pass if a path is given" do
26
19
provider . resource [ :path ] = [ '/bogus/bin' ]
27
20
provider . validatecmd ( "../foo" )
Original file line number Diff line number Diff line change 88
88
end
89
89
90
90
describe "#validatecmd" do
91
- it "should fail if the command isn't absolute and there is no path" do
92
- expect { provider . validatecmd ( 'foo' ) } . to raise_error ( Puppet :: Error , /'foo' is not qualified and no path was specified/ )
91
+ it "should not fail if the command isn't absolute and there is no path" do
92
+ expect ( provider . validatecmd ( 'foo' ) ) . to eq ( nil )
93
93
end
94
94
95
95
it "should not fail if the command is absolute and there is no path" do
Original file line number Diff line number Diff line change @@ -73,20 +73,6 @@ def echo_from_ruby_exit_1(message)
73
73
end
74
74
75
75
context "when validating the command" do
76
- it "redacts the arguments if the command is relative" do
77
- expect {
78
- apply_compiled_manifest ( <<-MANIFEST )
79
- exec { 'echo':
80
- command => Sensitive.new('echo #{ supersecret } ')
81
- }
82
- MANIFEST
83
- } . to raise_error do |err |
84
- expect ( err ) . to be_a ( Puppet ::Error )
85
- expect ( err . message ) . to match ( /'echo' is not qualified and no path was specified. Please qualify the command or specify a path./ )
86
- expect ( err . message ) . to_not match ( /#{ supersecret } / )
87
- end
88
- end
89
-
90
76
it "redacts the arguments if the command is a directory" do
91
77
dir = tmpdir ( 'exec' )
92
78
apply_compiled_manifest ( <<-MANIFEST )
Original file line number Diff line number Diff line change @@ -910,11 +910,6 @@ def instance(path)
910
910
let :abs do make_absolute ( '/bin/echo' ) end
911
911
let :path do make_absolute ( '/bin' ) end
912
912
913
- it "should fail with relative command and no path" do
914
- expect { type . new ( :command => rel ) } .
915
- to raise_error Puppet ::Error , /no path was specified/
916
- end
917
-
918
913
it "should accept a relative command with a path" do
919
914
expect ( type . new ( :command => rel , :path => path ) ) . to be
920
915
end
You can’t perform that action at this time.
0 commit comments