@@ -3,6 +3,7 @@ package main
3
3
4
4
import (
5
5
"bytes"
6
+ "errors"
6
7
"os"
7
8
"path/filepath"
8
9
"reflect"
@@ -817,6 +818,91 @@ func TestRun_Docker(t *testing.T) {
817
818
}
818
819
}
819
820
821
+ func TestRun_OCIImage (t * testing.T ) {
822
+ t .Parallel ()
823
+
824
+ testutility .SkipIfNotAcceptanceTesting (t , "Not consistent on MacOS/Windows" )
825
+
826
+ tests := []cliTestCase {
827
+ {
828
+ name : "Invalid path" ,
829
+ args : []string {"" , "scan" , "image" , "--archive" , "./fixtures/oci-image/no-file-here.tar" },
830
+ exit : 127 ,
831
+ },
832
+ {
833
+ name : "Alpine 3.10 image tar with 3.18 version file" ,
834
+ args : []string {"" , "scan" , "image" , "--archive" , "../../internal/image/fixtures/test-alpine.tar" },
835
+ exit : 1 ,
836
+ },
837
+ {
838
+ name : "Scanning python image with some packages" ,
839
+ args : []string {"" , "scan" , "image" , "--archive" , "../../internal/image/fixtures/test-python-full.tar" },
840
+ exit : 1 ,
841
+ },
842
+ {
843
+ name : "Scanning python image with no packages" ,
844
+ args : []string {"" , "scan" , "image" , "--archive" , "../../internal/image/fixtures/test-python-empty.tar" },
845
+ exit : 1 ,
846
+ },
847
+ {
848
+ name : "Scanning java image with some packages" ,
849
+ args : []string {"" , "scan" , "image" , "--archive" , "../../internal/image/fixtures/test-java-full.tar" },
850
+ exit : 1 ,
851
+ },
852
+ {
853
+ name : "scanning node_modules using npm with no packages" ,
854
+ args : []string {"" , "scan" , "image" , "--archive" , "../../internal/image/fixtures/test-node_modules-npm-empty.tar" },
855
+ exit : 1 ,
856
+ },
857
+ {
858
+ name : "scanning node_modules using npm with some packages" ,
859
+ args : []string {"" , "scan" , "image" , "--archive" , "../../internal/image/fixtures/test-node_modules-npm-full.tar" },
860
+ exit : 1 ,
861
+ },
862
+ {
863
+ name : "scanning node_modules using yarn with no packages" ,
864
+ args : []string {"" , "scan" , "image" , "--archive" , "../../internal/image/fixtures/test-node_modules-yarn-empty.tar" },
865
+ exit : 1 ,
866
+ },
867
+ {
868
+ name : "scanning node_modules using yarn with some packages" ,
869
+ args : []string {"" , "scan" , "image" , "--archive" , "../../internal/image/fixtures/test-node_modules-yarn-full.tar" },
870
+ exit : 1 ,
871
+ },
872
+ {
873
+ name : "scanning node_modules using pnpm with no packages" ,
874
+ args : []string {"" , "scan" , "image" , "--archive" , "../../internal/image/fixtures/test-node_modules-pnpm-empty.tar" },
875
+ exit : 1 ,
876
+ },
877
+ {
878
+ name : "scanning node_modules using pnpm with some packages" ,
879
+ args : []string {"" , "scan" , "image" , "--archive" , "../../internal/image/fixtures/test-node_modules-pnpm-full.tar" },
880
+ exit : 1 ,
881
+ },
882
+ {
883
+ name : "scanning image with go binary" ,
884
+ args : []string {"" , "scan" , "image" , "--archive" , "../../internal/image/fixtures/test-package-tracing.tar" },
885
+ exit : 1 ,
886
+ },
887
+ }
888
+ for _ , tt := range tests {
889
+ t .Run (tt .name , func (t * testing.T ) {
890
+ t .Parallel ()
891
+
892
+ // point out that we need the images to be built and saved separately
893
+ for _ , arg := range tt .args {
894
+ if strings .HasPrefix (arg , "../../internal/image/fixtures/" ) && strings .HasSuffix (arg , ".tar" ) {
895
+ if _ , err := os .Stat (arg ); errors .Is (err , os .ErrNotExist ) {
896
+ t .Fatalf ("%s does not exist - have you run scripts/build_test_images.sh?" , arg )
897
+ }
898
+ }
899
+ }
900
+
901
+ testCli (t , tt )
902
+ })
903
+ }
904
+ }
905
+
820
906
// Tests all subcommands here.
821
907
func TestRun_SubCommands (t * testing.T ) {
822
908
t .Parallel ()
0 commit comments