| 
									
										
										
										
											2017-03-05 19:26:56 +01:00
										 |  |  | describe Hbc::Artifact::Suite, :cask do | 
					
						
							| 
									
										
										
										
											2017-10-07 15:58:49 +02:00
										 |  |  |   let(:cask) { Hbc::CaskLoader.load(cask_path("with-suite")) } | 
					
						
							| 
									
										
										
										
											2016-10-19 16:42:31 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-06 00:33:31 +02:00
										 |  |  |   let(:install_phase) { | 
					
						
							| 
									
										
										
										
											2017-10-04 17:54:52 +02:00
										 |  |  |     lambda do | 
					
						
							|  |  |  |       cask.artifacts.select { |a| a.is_a?(described_class) }.each do |artifact| | 
					
						
							|  |  |  |         artifact.install_phase(command: Hbc::NeverSudoSystemCommand, force: false) | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2017-04-06 00:33:31 +02:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2016-10-19 16:42:31 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |   let(:target_path) { Hbc.appdir.join("Caffeine") } | 
					
						
							| 
									
										
										
										
											2016-08-20 05:08:16 +02:00
										 |  |  |   let(:source_path) { cask.staged_path.join("Caffeine") } | 
					
						
							| 
									
										
										
										
											2016-08-18 22:11:42 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-09 03:19:24 +01:00
										 |  |  |   before(:each) do | 
					
						
							|  |  |  |     InstallHelper.install_without_artifacts(cask) | 
					
						
							| 
									
										
										
										
											2016-10-19 16:42:31 -04:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-18 22:11:42 +03:00
										 |  |  |   it "creates a suite containing the expected app" do | 
					
						
							| 
									
										
										
										
											2017-07-29 19:55:05 +02:00
										 |  |  |     install_phase.call | 
					
						
							| 
									
										
										
										
											2016-08-18 22:11:42 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-09 03:19:24 +01:00
										 |  |  |     expect(target_path.join("Caffeine.app")).to exist | 
					
						
							| 
									
										
										
										
											2016-08-18 22:11:42 +03:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   it "avoids clobbering an existing suite by moving over it" do | 
					
						
							| 
									
										
										
										
											2016-10-19 16:42:31 -04:00
										 |  |  |     target_path.mkpath | 
					
						
							| 
									
										
										
										
											2016-08-18 22:11:42 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-09 03:19:24 +01:00
										 |  |  |     expect { | 
					
						
							| 
									
										
										
										
											2017-07-29 19:55:05 +02:00
										 |  |  |       install_phase.call | 
					
						
							| 
									
										
										
										
											2017-02-09 03:19:24 +01:00
										 |  |  |     }.to raise_error(Hbc::CaskError) | 
					
						
							| 
									
										
										
										
											2016-08-18 22:11:42 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-09 03:19:24 +01:00
										 |  |  |     expect(source_path).to be_a_directory | 
					
						
							|  |  |  |     expect(target_path).to be_a_directory | 
					
						
							|  |  |  |     expect(File.identical?(source_path, target_path)).to be false | 
					
						
							| 
									
										
										
										
											2016-08-18 22:11:42 +03:00
										 |  |  |   end | 
					
						
							|  |  |  | end |