@@ -649,31 +649,28 @@ def with_another_agent_running(&block)
649
649
) ) . to_stdout
650
650
. and output ( /No more routes to fileserver/ ) . to_stderr
651
651
end
652
-
653
652
it 'preserves the old cached catalog if validation fails with the old one' do
654
653
catalog_handler = -> ( req , res ) {
655
- catalog = compile_to_catalog ( <<-MANIFEST , node )
656
- exec { 'unqualified_command': }
657
- MANIFEST
658
-
659
- res . body = formatter . render ( catalog )
660
- res [ 'Content-Type' ] = formatter . mime
661
- }
662
-
663
- server . start_server ( mounts : { catalog : catalog_handler } ) do |port |
664
- Puppet [ :serverport ] = port
665
- expect {
666
- agent . command_line . args << '--test'
667
- agent . run
668
- } . to exit_with ( 1 )
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
671
- end
672
-
673
- # cached catalog should not be updated
674
- cached_catalog = "#{ File . join ( Puppet [ :client_datadir ] , 'catalog' , Puppet [ :certname ] ) } .json"
675
- expect ( File ) . to_not be_exist ( cached_catalog )
676
- end
654
+  catalog = compile_to_catalog ( "{'unqualified_command': path => ''}" , node )
655
+ 
656
+  res . body = formatter . render ( catalog )
657
+  res [ 'Content-Type' ] = formatter . mime
658
+  }
659
+ 
660
+  server . start_server ( mounts : { catalog : catalog_handler } ) do |port |
661
+  Puppet [ :serverport ] = port
662
+  expect {
663
+  agent . command_line . args << '--test'
664
+  agent . run
665
+  } . to exit_with ( 1 )
666
+  . and output ( %r{Retrieving plugin} ) . to_stdout
667
+  . and output ( %r{Validation of Exec\[ unqualified_command\] failed: 'unqualified_command' is not qualified and no path was specified} ) . to_stderr
668
+  end
669
+ 
670
+  # cached catalog should not be updated
671
+  cached_catalog = "#{ File . join ( Puppet [ :client_datadir ] , 'catalog' , Puppet [ :certname ] ) } .json"
672
+  expect ( File ) . to_not be_exist ( cached_catalog )
673
+  end
677
674
end
678
675
679
676
context "reporting" do
0 commit comments