| 
									
										
										
										
											2014-04-06 19:21:22 +02:00
										 |  |  | package common | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2018-01-22 16:03:49 -08:00
										 |  |  | 	"context" | 
					
						
							| 
									
										
										
										
											2014-04-06 19:21:22 +02:00
										 |  |  | 	"io/ioutil" | 
					
						
							|  |  |  | 	"os" | 
					
						
							|  |  |  | 	"testing" | 
					
						
							| 
									
										
										
										
											2016-12-11 21:13:37 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-19 16:18:44 -08:00
										 |  |  | 	"github.com/hashicorp/packer/helper/multistep" | 
					
						
							| 
									
										
										
										
											2014-04-06 19:21:22 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func testStepOutputDir(t *testing.T) *StepOutputDir { | 
					
						
							|  |  |  | 	td, err := ioutil.TempDir("", "packer") | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatalf("err: %s", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if err := os.RemoveAll(td); err != nil { | 
					
						
							|  |  |  | 		t.Fatalf("err: %s", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return &StepOutputDir{Force: false, Path: td} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestStepOutputDir_impl(t *testing.T) { | 
					
						
							|  |  |  | 	var _ multistep.Step = new(StepOutputDir) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestStepOutputDir(t *testing.T) { | 
					
						
							|  |  |  | 	state := testState(t) | 
					
						
							|  |  |  | 	step := testStepOutputDir(t) | 
					
						
							| 
									
										
										
										
											2018-04-25 14:59:44 +01:00
										 |  |  | 	// Delete the test output directory when done | 
					
						
							|  |  |  | 	defer os.RemoveAll(step.Path) | 
					
						
							| 
									
										
										
										
											2014-04-06 19:21:22 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Test the run | 
					
						
							| 
									
										
										
										
											2018-01-22 16:03:49 -08:00
										 |  |  | 	if action := step.Run(context.Background(), state); action != multistep.ActionContinue { | 
					
						
							| 
									
										
										
										
											2014-04-06 19:21:22 +02:00
										 |  |  | 		t.Fatalf("bad action: %#v", action) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if _, ok := state.GetOk("error"); ok { | 
					
						
							|  |  |  | 		t.Fatal("should NOT have error") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if _, err := os.Stat(step.Path); err != nil { | 
					
						
							|  |  |  | 		t.Fatalf("err: %s", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Test the cleanup | 
					
						
							|  |  |  | 	step.Cleanup(state) | 
					
						
							|  |  |  | 	if _, err := os.Stat(step.Path); err != nil { | 
					
						
							|  |  |  | 		t.Fatalf("err: %s", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestStepOutputDir_cancelled(t *testing.T) { | 
					
						
							|  |  |  | 	state := testState(t) | 
					
						
							|  |  |  | 	step := testStepOutputDir(t) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Test the run | 
					
						
							| 
									
										
										
										
											2018-01-22 16:03:49 -08:00
										 |  |  | 	if action := step.Run(context.Background(), state); action != multistep.ActionContinue { | 
					
						
							| 
									
										
										
										
											2014-04-06 19:21:22 +02:00
										 |  |  | 		t.Fatalf("bad action: %#v", action) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if _, ok := state.GetOk("error"); ok { | 
					
						
							|  |  |  | 		t.Fatal("should NOT have error") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if _, err := os.Stat(step.Path); err != nil { | 
					
						
							|  |  |  | 		t.Fatalf("err: %s", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Mark | 
					
						
							|  |  |  | 	state.Put(multistep.StateCancelled, true) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Test the cleanup | 
					
						
							|  |  |  | 	step.Cleanup(state) | 
					
						
							|  |  |  | 	if _, err := os.Stat(step.Path); err == nil { | 
					
						
							|  |  |  | 		t.Fatal("should not exist") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestStepOutputDir_halted(t *testing.T) { | 
					
						
							|  |  |  | 	state := testState(t) | 
					
						
							|  |  |  | 	step := testStepOutputDir(t) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Test the run | 
					
						
							| 
									
										
										
										
											2018-01-22 16:03:49 -08:00
										 |  |  | 	if action := step.Run(context.Background(), state); action != multistep.ActionContinue { | 
					
						
							| 
									
										
										
										
											2014-04-06 19:21:22 +02:00
										 |  |  | 		t.Fatalf("bad action: %#v", action) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if _, ok := state.GetOk("error"); ok { | 
					
						
							|  |  |  | 		t.Fatal("should NOT have error") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if _, err := os.Stat(step.Path); err != nil { | 
					
						
							|  |  |  | 		t.Fatalf("err: %s", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Mark | 
					
						
							|  |  |  | 	state.Put(multistep.StateHalted, true) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Test the cleanup | 
					
						
							|  |  |  | 	step.Cleanup(state) | 
					
						
							|  |  |  | 	if _, err := os.Stat(step.Path); err == nil { | 
					
						
							|  |  |  | 		t.Fatal("should not exist") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } |