@@ -73,15 +73,29 @@ describe(["@tier2"], "Test secure and insecure svn repository analysis", () => {
7373 application . verifyAnalysisStatus ( AnalysisStatuses . completed ) ;
7474 } ) ;
7575
76- it ( "Analysis on insecure SVN Repository(http) when not allowed" , function ( ) {
77- subversionConfiguration . disableInsecureSubversionRepositories ( ) ;
76+ it ( "Analysis on SVN Repository(http) when filenames have special characters" , function ( ) {
77+ const application = new Analysis (
78+ getRandomApplicationData ( "Insecure svn when filenames have special characters" , {
79+ sourceData : this . appData [ "bookserver-svn-branch" ] ,
80+ } ) ,
81+ getRandomAnalysisData ( this . analysisData [ "source_analysis_on_bookserverapp" ] )
82+ ) ;
83+ application . create ( ) ;
84+ applicationsList . push ( application ) ;
85+ cy . wait ( "@getApplication" ) ;
86+ application . manageCredentials ( sourceCredential . name , null ) ;
87+ application . analyze ( ) ;
88+ application . verifyAnalysisStatus ( AnalysisStatuses . completed ) ;
89+ } ) ;
7890
91+ it ( "Analysis on insecure SVN Repository(http) when not allowed" , function ( ) {
7992 const application = new Analysis (
8093 getRandomApplicationData ( "Insecure svn disabled bookserver app" , {
8194 sourceData : this . appData [ "bookserver-svn-insecure" ] ,
8295 } ) ,
8396 getRandomAnalysisData ( this . analysisData [ "source_analysis_on_bookserverapp" ] )
8497 ) ;
98+ subversionConfiguration . disableInsecureSubversionRepositories ( ) ;
8599 application . create ( ) ;
86100 applicationsList . push ( application ) ;
87101 cy . wait ( "@getApplication" ) ;
0 commit comments