mirror of https://github.com/portainer/portainer
				
				
				
			
		
			
				
	
	
		
			30 lines
		
	
	
		
			591 B
		
	
	
	
		
			Go
		
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			591 B
		
	
	
	
		
			Go
		
	
	
| package archive
 | |
| 
 | |
| import (
 | |
| 	"path/filepath"
 | |
| 	"testing"
 | |
| 
 | |
| 	"github.com/stretchr/testify/assert"
 | |
| )
 | |
| 
 | |
| func TestUnzipFile(t *testing.T) {
 | |
| 	dir := t.TempDir()
 | |
| 	/*
 | |
| 		Archive structure.
 | |
| 		├── 0
 | |
| 		│	├── 1
 | |
| 		│	│	└── 2.txt
 | |
| 		│	└── 1.txt
 | |
| 		└── 0.txt
 | |
| 	*/
 | |
| 
 | |
| 	err := UnzipFile("./testdata/sample_archive.zip", dir)
 | |
| 
 | |
| 	assert.NoError(t, err)
 | |
| 	archiveDir := dir + "/sample_archive"
 | |
| 	assert.FileExists(t, filepath.Join(archiveDir, "0.txt"))
 | |
| 	assert.FileExists(t, filepath.Join(archiveDir, "0", "1.txt"))
 | |
| 	assert.FileExists(t, filepath.Join(archiveDir, "0", "1", "2.txt"))
 | |
| 
 | |
| }
 |