4
4
import com .capgemini .mrchecker .test .core .logger .BFLogger ;
5
5
import io .qameta .allure .Allure ;
6
6
import io .qameta .allure .AllureLifecycle ;
7
- import io .qameta .allure .Attachment ;
8
7
import io .qameta .allure .Step ;
9
- import io .qameta .allure .model .Link ;
10
8
import io .qameta .allure .model .Status ;
11
9
import io .qameta .allure .model .StepResult ;
12
- import io .qameta .allure .util .ResultsUtils ;
13
10
import org .openqa .selenium .By ;
14
11
import org .openqa .selenium .WebElement ;
15
12
16
- import java .io .File ;
17
- import java .io .FileInputStream ;
18
- import java .io .FileOutputStream ;
19
- import java .io .IOException ;
20
- import java .nio .file .Files ;
21
- import java .nio .file .Paths ;
22
- import java .text .MessageFormat ;
23
- import java .util .List ;
24
13
import java .util .NoSuchElementException ;
25
14
import java .util .UUID ;
26
- import java .util .zip .ZipEntry ;
27
- import java .util .zip .ZipOutputStream ;
28
-
29
- import static java .nio .file .StandardOpenOption .APPEND ;
30
-
31
- public class StepLogger {
32
- private StepLogger () {
33
- }
34
-
35
- public static void step (String step ) {
36
- BFLogger .logInfo (step );
37
- Allure .step (step );
38
- }
39
-
40
- public static void step (String step , Status status ) {
41
- BFLogger .logInfo (step );
42
- Allure .step (step , status );
43
- }
44
-
45
- public static void info (String info ) {
46
- step ("[INFO] " + info );
47
- }
48
15
16
+ public class StepLogger extends com .capgemini .mrchecker .test .core .utils .StepLogger {
49
17
public static void error (String error , boolean makeScreenShot ) {
50
18
String message = "[ERROR] " + error ;
51
19
String uuid = UUID .randomUUID ().toString ();
@@ -62,41 +30,6 @@ public static void error(String error, boolean makeScreenShot) {
62
30
}
63
31
}
64
32
65
- public static void error (String error ) {
66
- error (error , true );
67
- }
68
-
69
- public static void issue (String name , String url ) {
70
- link (ResultsUtils .ISSUE_LINK_TYPE , name , url );
71
- }
72
-
73
- public static void tmsLink (String name , String url ) {
74
- link (ResultsUtils .TMS_LINK_TYPE , name , url );
75
- }
76
-
77
- private static void link (String type , String name , String url ) {
78
- try {
79
- Allure .addLinks (new Link ().setType (type ).setName (name ).setUrl (url ));
80
- } catch (NullPointerException e ) {
81
- // Catch when no allure report
82
- step (MessageFormat .format ("[{0}][{1}] {2}" , type , name , url ));
83
- }
84
- }
85
-
86
- @ Step ("{step}" )
87
- public static void stepsTree (String step , List <String > subSteps ) {
88
- for (String s : subSteps ) {
89
- step (s );
90
- }
91
- }
92
-
93
- @ Step ("{step}" )
94
- public static void stepsTree (String step , List <String > subSteps , Status status ) {
95
- for (String s : subSteps ) {
96
- step (s , status );
97
- }
98
- }
99
-
100
33
@ Step ("--Screenshot--" )
101
34
public static void makeScreenShot () {
102
35
BasePage .makeScreenShot ("Screenshot" );
@@ -111,89 +44,4 @@ public static void makeScreenShot(WebElement element, String elementName) {
111
44
public static void makeScreenShot (By selector , String elementName ) {
112
45
BasePage .makeScreenShot (elementName + " Screenshot" , selector );
113
46
}
114
-
115
- @ Attachment (value = "{attachName}" , type = "text/plain" )
116
- public static String saveTextAttachmentToLog (String attachName , String message ) {
117
- BFLogger .logInfo ("Saved attachment: " + attachName );
118
- return message ;
119
- }
120
-
121
- @ Attachment (value = "{name}" , type = "text/csv" )
122
- private static byte [] attachCSVFile (File file , String name ) throws IOException {
123
- return Files .readAllBytes (Paths .get (file .getAbsolutePath ()));
124
- }
125
-
126
- @ Attachment (value = "{name}" , type = "text/plain" )
127
- private static byte [] attachTXTFile (File file , String name ) throws IOException {
128
- return Files .readAllBytes (Paths .get (file .getAbsolutePath ()));
129
- }
130
-
131
- @ Attachment ("Zipped [{name}]" )
132
- private static byte [] attachZippedFile (File fileToAttach , String name ) throws IOException {
133
- String tempPath = System .getProperty ("java.io.tmpdir" );
134
- String zipFileName = "attachement.zip" ;
135
- File zipFile = new File (tempPath , zipFileName );
136
- byte [] buffer = new byte [1024 ];
137
- try (FileOutputStream fos = new FileOutputStream (zipFile ); ZipOutputStream zos = new ZipOutputStream (
138
- fos ); FileInputStream fis = new FileInputStream (fileToAttach )) {
139
- zos .putNextEntry (new ZipEntry (fileToAttach .getName ()));
140
- int length ;
141
- while ((length = fis .read (buffer )) > 0 ) {
142
- zos .write (buffer , 0 , length );
143
- }
144
- zos .closeEntry ();
145
- }
146
- return Files .readAllBytes (Paths .get (zipFile .getAbsolutePath ()));
147
- }
148
-
149
- @ Attachment (value = "{name}" , type = "application/pdf" )
150
- private static byte [] attachPDFFile (File file , String name ) throws IOException {
151
- return Files .readAllBytes (Paths .get (file .getAbsolutePath ()));
152
- }
153
-
154
- @ Attachment (value = "{name}" , type = "image/png" )
155
- private static byte [] attachPNGFile (File file , String name ) throws IOException {
156
- return Files .readAllBytes (Paths .get (file .getAbsolutePath ()));
157
- }
158
-
159
- @ Attachment (value = "{name}" , type = "application/zip" )
160
- private static byte [] attachZIPFile (File file , String name ) throws IOException {
161
- return Files .readAllBytes (Paths .get (file .getAbsolutePath ()));
162
- }
163
-
164
- public static void attachFile (File file , String name ) throws IOException {
165
- String fileName = file .getName ();
166
- String extension = fileName .substring (fileName .lastIndexOf ("." ) + 1 );
167
- if (file .length () == 0 ) {
168
- Files .write (Paths .get (file .toURI ()), " " .getBytes (), APPEND );
169
- }
170
- switch (extension .toLowerCase ()) {
171
- case "pdf" : {
172
- attachPDFFile (file , name );
173
- break ;
174
- }
175
- case "xlsx" : {
176
- attachZippedFile (file , name );
177
- break ;
178
- }
179
- case "csv" : {
180
- attachCSVFile (file , name );
181
- break ;
182
- }
183
- case "png" : {
184
- attachPNGFile (file , name );
185
- break ;
186
- }
187
- case "zip" : {
188
- attachZIPFile (file , name );
189
- break ;
190
- }
191
- case "txt" : {
192
- attachTXTFile (file , name );
193
- break ;
194
- }
195
- default :
196
- error ("Couldn't attach file with extension: " + extension );
197
- }
198
- }
199
47
}
0 commit comments