121 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			121 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
/* Vuls - Vulnerability Scanner
 | 
						|
Copyright (C) 2016  Future Architect, Inc. Japan.
 | 
						|
 | 
						|
This program is free software: you can redistribute it and/or modify
 | 
						|
it under the terms of the GNU General Public License as published by
 | 
						|
the Free Software Foundation, either version 3 of the License, or
 | 
						|
(at your option) any later version.
 | 
						|
 | 
						|
This program is distributed in the hope that it will be useful,
 | 
						|
but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
						|
GNU General Public License for more details.
 | 
						|
 | 
						|
You should have received a copy of the GNU General Public License
 | 
						|
along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
						|
*/
 | 
						|
 | 
						|
package scan
 | 
						|
 | 
						|
import (
 | 
						|
	"reflect"
 | 
						|
	"testing"
 | 
						|
 | 
						|
	"github.com/future-architect/vuls/config"
 | 
						|
)
 | 
						|
 | 
						|
func TestParseDockerPs(t *testing.T) {
 | 
						|
 | 
						|
	var test = struct {
 | 
						|
		in       string
 | 
						|
		expected []config.Container
 | 
						|
	}{
 | 
						|
		`c7ca0992415a romantic_goldberg ubuntu:14.04.5
 | 
						|
f570ae647edc agitated_lovelace centos:latest`,
 | 
						|
		[]config.Container{
 | 
						|
			{
 | 
						|
				ContainerID: "c7ca0992415a",
 | 
						|
				Name:        "romantic_goldberg",
 | 
						|
				Image:       "ubuntu:14.04.5",
 | 
						|
			},
 | 
						|
			{
 | 
						|
				ContainerID: "f570ae647edc",
 | 
						|
				Name:        "agitated_lovelace",
 | 
						|
				Image:       "centos:latest",
 | 
						|
			},
 | 
						|
		},
 | 
						|
	}
 | 
						|
 | 
						|
	r := newRedhat(config.ServerInfo{})
 | 
						|
	actual, err := r.parseDockerPs(test.in)
 | 
						|
	if err != nil {
 | 
						|
		t.Errorf("Error occurred. in: %s, err: %s", test.in, err)
 | 
						|
		return
 | 
						|
	}
 | 
						|
	for i, e := range test.expected {
 | 
						|
		if !reflect.DeepEqual(e, actual[i]) {
 | 
						|
			t.Errorf("expected %v, actual %v", e, actual[i])
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func TestParseLxdPs(t *testing.T) {
 | 
						|
 | 
						|
	var test = struct {
 | 
						|
		in       string
 | 
						|
		expected []config.Container
 | 
						|
	}{
 | 
						|
		`+-------+
 | 
						|
| NAME  |
 | 
						|
+-------+
 | 
						|
| test1 |
 | 
						|
+-------+
 | 
						|
| test2 |
 | 
						|
+-------+`,
 | 
						|
		[]config.Container{
 | 
						|
			{
 | 
						|
				ContainerID: "test1",
 | 
						|
				Name:        "test1",
 | 
						|
			},
 | 
						|
			{
 | 
						|
				ContainerID: "test2",
 | 
						|
				Name:        "test2",
 | 
						|
			},
 | 
						|
		},
 | 
						|
	}
 | 
						|
 | 
						|
	r := newRedhat(config.ServerInfo{})
 | 
						|
	actual, err := r.parseLxdPs(test.in)
 | 
						|
	if err != nil {
 | 
						|
		t.Errorf("Error occurred. in: %s, err: %s", test.in, err)
 | 
						|
		return
 | 
						|
	}
 | 
						|
	for i, e := range test.expected {
 | 
						|
		if !reflect.DeepEqual(e, actual[i]) {
 | 
						|
			t.Errorf("expected %v, actual %v", e, actual[i])
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func TestIsAwsInstanceID(t *testing.T) {
 | 
						|
	var tests = []struct {
 | 
						|
		in       string
 | 
						|
		expected bool
 | 
						|
	}{
 | 
						|
		{"i-1234567a", true},
 | 
						|
		{"i-1234567890abcdef0", true},
 | 
						|
		{"i-1234567890abcdef0000000", true},
 | 
						|
		{"e-1234567890abcdef0", false},
 | 
						|
		{"i-1234567890abcdef0 foo bar", false},
 | 
						|
		{"no data", false},
 | 
						|
	}
 | 
						|
 | 
						|
	r := newRedhat(config.ServerInfo{})
 | 
						|
	for _, tt := range tests {
 | 
						|
		actual := r.isAwsInstanceID(tt.in)
 | 
						|
		if tt.expected != actual {
 | 
						|
			t.Errorf("expected %t, actual %t, str: %s", tt.expected, actual, tt.in)
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 |