150 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			150 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			Go
		
	
	
	
| /*
 | |
| Copyright 2018 Google LLC
 | |
| 
 | |
| Licensed under the Apache License, Version 2.0 (the "License");
 | |
| you may not use this file except in compliance with the License.
 | |
| You may obtain a copy of the License at
 | |
| 
 | |
|     http://www.apache.org/licenses/LICENSE-2.0
 | |
| 
 | |
| Unless required by applicable law or agreed to in writing, software
 | |
| distributed under the License is distributed on an "AS IS" BASIS,
 | |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | |
| See the License for the specific language governing permissions and
 | |
| limitations under the License.
 | |
| */
 | |
| package snapshot
 | |
| 
 | |
| import (
 | |
| 	"archive/tar"
 | |
| 	"bytes"
 | |
| 	"github.com/GoogleCloudPlatform/k8s-container-builder/pkg/util"
 | |
| 	"github.com/GoogleCloudPlatform/k8s-container-builder/testutil"
 | |
| 	"github.com/pkg/errors"
 | |
| 	"io"
 | |
| 	"io/ioutil"
 | |
| 	"os"
 | |
| 	"path/filepath"
 | |
| 	"testing"
 | |
| )
 | |
| 
 | |
| func TestSnapshotFileChange(t *testing.T) {
 | |
| 
 | |
| 	testDir, snapshotter, err := setUpTestDir()
 | |
| 	defer os.RemoveAll(testDir)
 | |
| 	if err != nil {
 | |
| 		t.Fatal(err)
 | |
| 	}
 | |
| 	// Make some changes to the filesystem
 | |
| 	newFiles := map[string]string{
 | |
| 		"foo":           "newbaz1",
 | |
| 		"workspace/bat": "bat",
 | |
| 	}
 | |
| 	if err := testutil.SetupFiles(testDir, newFiles); err != nil {
 | |
| 		t.Fatalf("Error setting up fs: %s", err)
 | |
| 	}
 | |
| 	// Take another snapshot
 | |
| 	contents, err := snapshotter.TakeSnapshot()
 | |
| 	if err != nil {
 | |
| 		t.Fatalf("Error taking snapshot of fs: %s", err)
 | |
| 	}
 | |
| 	// Check contents of the snapshot, make sure contents is equivalent to snapshotFiles
 | |
| 	reader := bytes.NewReader(contents)
 | |
| 	tr := tar.NewReader(reader)
 | |
| 	fooPath := filepath.Join(testDir, "foo")
 | |
| 	snapshotFiles := map[string]string{
 | |
| 		fooPath: "newbaz1",
 | |
| 	}
 | |
| 	for {
 | |
| 		hdr, err := tr.Next()
 | |
| 		if err == io.EOF {
 | |
| 			break
 | |
| 		}
 | |
| 		if _, isFile := snapshotFiles[hdr.Name]; !isFile {
 | |
| 			t.Fatalf("File %s unexpectedly in tar", hdr.Name)
 | |
| 		}
 | |
| 		contents, _ := ioutil.ReadAll(tr)
 | |
| 		if string(contents) != snapshotFiles[hdr.Name] {
 | |
| 			t.Fatalf("Contents of %s incorrect, expected: %s, actual: %s", hdr.Name, snapshotFiles[hdr.Name], string(contents))
 | |
| 		}
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestSnapshotChangePermissions(t *testing.T) {
 | |
| 	testDir, snapshotter, err := setUpTestDir()
 | |
| 	defer os.RemoveAll(testDir)
 | |
| 	if err != nil {
 | |
| 		t.Fatal(err)
 | |
| 	}
 | |
| 	// Change permissions on a file
 | |
| 	batPath := filepath.Join(testDir, "bar/bat")
 | |
| 	if err := os.Chmod(batPath, 0600); err != nil {
 | |
| 		t.Fatalf("Error changing permissions on %s: %v", batPath, err)
 | |
| 	}
 | |
| 	// Take another snapshot
 | |
| 	contents, err := snapshotter.TakeSnapshot()
 | |
| 	if err != nil {
 | |
| 		t.Fatalf("Error taking snapshot of fs: %s", err)
 | |
| 	}
 | |
| 	// Check contents of the snapshot, make sure contents is equivalent to snapshotFiles
 | |
| 	reader := bytes.NewReader(contents)
 | |
| 	tr := tar.NewReader(reader)
 | |
| 	snapshotFiles := map[string]string{
 | |
| 		batPath: "baz2",
 | |
| 	}
 | |
| 	for {
 | |
| 		hdr, err := tr.Next()
 | |
| 		if err == io.EOF {
 | |
| 			break
 | |
| 		}
 | |
| 		if _, isFile := snapshotFiles[hdr.Name]; !isFile {
 | |
| 			t.Fatalf("File %s unexpectedly in tar", hdr.Name)
 | |
| 		}
 | |
| 		contents, _ := ioutil.ReadAll(tr)
 | |
| 		if string(contents) != snapshotFiles[hdr.Name] {
 | |
| 			t.Fatalf("Contents of %s incorrect, expected: %s, actual: %s", hdr.Name, snapshotFiles[hdr.Name], string(contents))
 | |
| 		}
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestEmptySnapshot(t *testing.T) {
 | |
| 	testDir, snapshotter, err := setUpTestDir()
 | |
| 	defer os.RemoveAll(testDir)
 | |
| 	if err != nil {
 | |
| 		t.Fatal(err)
 | |
| 	}
 | |
| 	// Take snapshot with no changes
 | |
| 	contents, err := snapshotter.TakeSnapshot()
 | |
| 	if err != nil {
 | |
| 		t.Fatalf("Error taking snapshot of fs: %s", err)
 | |
| 	}
 | |
| 	// Since we took a snapshot with no changes, contents should be nil
 | |
| 	if contents != nil {
 | |
| 		t.Fatal("Contents should be nil, since no changes to the filesystem were made.")
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func setUpTestDir() (string, *Snapshotter, error) {
 | |
| 	testDir, err := ioutil.TempDir("", "")
 | |
| 	if err != nil {
 | |
| 		return testDir, nil, errors.Wrap(err, "setting up temp dir")
 | |
| 	}
 | |
| 	files := map[string]string{
 | |
| 		"foo":            "baz1",
 | |
| 		"bar/bat":        "baz2",
 | |
| 		"workspace/file": "file",
 | |
| 	}
 | |
| 	// Set up initial files
 | |
| 	if err := testutil.SetupFiles(testDir, files); err != nil {
 | |
| 		return testDir, nil, errors.Wrap(err, "setting up file system")
 | |
| 	}
 | |
| 
 | |
| 	// Take the initial snapshot
 | |
| 	l := NewLayeredMap(util.Hasher())
 | |
| 	snapshotter := NewSnapshotter(l, testDir)
 | |
| 	if err := snapshotter.Init(); err != nil {
 | |
| 		return testDir, nil, errors.Wrap(err, "initializing snapshotter")
 | |
| 	}
 | |
| 	return testDir, snapshotter, nil
 | |
| }
 |