forked from LambdaTest/lambdatest-cypress-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerate_reports.js
223 lines (213 loc) · 6.3 KB
/
generate_reports.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
const request = require("request");
const constants = require("./utils/constants.js");
const process = require("process");
const build_stats = require("./utils/poller/build_stats.js");
const { access } = require("fs");
var fs = require("fs");
const StreamZip = require("node-stream-zip");
const path = require("path");
function download_artefact(
username,
access_key,
env,
test_id,
file_path,
rejectUnauthorized
) {
return new Promise(function (resolve, reject) {
let response_code;
if (!fs.existsSync(file_path)) {
fs.mkdirSync(file_path, { recursive: true });
}
let old_path = file_path;
//Create an empty file
file_path = path.join(file_path, "artefacts.zip");
const stream = fs.createWriteStream(file_path);
stream.end();
let options = {
url: constants[env].REPORT_URL + test_id,
auth: {
username: username,
password: access_key,
},
gzip: true,
timeout: 120000,
};
if (rejectUnauthorized == false) {
options["rejectUnauthorized"] = false;
console.log("Setting rejectUnauthorized to false for web requests");
}
request(options, (err, res, body) => {
if (err) {
reject(err);
}
response_code = res.statusCode;
}).pipe(
fs
.createWriteStream(file_path, {
overwrite: true,
})
.on("finish", function () {
if (response_code == 200) {
const zip = new StreamZip({ file: file_path });
zip.on("ready", () => {
zip.extract(null, old_path, (err, count) => {
zip.close();
fs.unlinkSync(file_path);
resolve(
err
? "Extract error for " + test_id
: `Extracted ${count} entries for ` + test_id
);
});
});
} else {
fs.unlinkSync(file_path);
reject("Could not download artefacts for test id " + test_id);
}
})
);
});
}
function generate_report(args) {
return new Promise(function (resolve, reject) {
var username = "";
var access_key = "";
//Check for username
if ("user" in args) {
username = args.user;
} else if (process.env.LT_USERNAME) {
console.log("Setting Username from ENV", process.env.LT_USERNAME);
username = process.env.LT_USERNAME;
} else {
reject("Username not provided");
}
//Check for access key
if ("access_key" in args) {
access_key = args.access_key;
} else if (process.env.LT_ACCESS_KEY) {
console.log("Setting Access Key from ENV");
access_key = process.env.LT_ACCESS_KEY;
} else {
reject("Access Key not provided");
}
//Check for session id
if (
!("session_id" in args) ||
args["session_id"] == "" ||
args["session_id"] == undefined
) {
const file_path = "lambdatest_run.json";
if (fs.existsSync(file_path)) {
let lambda_run = fs.readFileSync(file_path);
try {
let lambda_run_obj = JSON.parse(lambda_run);
if (!("session_id" in lambda_run_obj)) {
throw new Error("session_id is missing from the file");
}
args.session_id = lambda_run_obj.session_id;
} catch (e) {
reject(
"Error!! lambdatest_run.json file is tampered Err: " + e.message
);
}
} else {
reject(
"Error!! Last session details not found, lambdatest_run.json file not present!!"
);
}
}
//set working enviornment
var env = "prod";
if ("env" in args) {
if (constants.ENVS.includes(args["env"])) {
env = args["env"];
} else {
console.log(
"Environment can be stage,stage_new, beta or prod, setting Env to prod"
);
}
}
//paylaod required for authentication
build_payload = {
lambdatest_auth: {
username: username,
access_key: access_key,
},
run_settings: {
reject_unauthorized: true,
},
};
if ("reject_unauthorized" in args) {
if (
args["reject_unauthorized"] != "false" &&
args["reject_unauthorized"] != "true" &&
args["reject_unauthorized"] != true &&
args["reject_unauthorized"] != false
) {
console.log("reject_unauthorized has to boolean");
return;
} else {
if (args["reject_unauthorized"] == "false") {
build_payload["run_settings"]["reject_unauthorized"] = false;
console.log("Setting rejectUnauthorized to false for web requests");
}
}
}
build_stats
.get_completed_build_info(build_payload, args["session_id"], env)
.then(function (build_info) {
if (!build_info || build_info.data == null) {
reject("Session not found");
return;
}
let directory = path.join(
".",
"lambdatest-artefacts",
args["session_id"]
);
//Reject if there are no tests in sessions
if (build_info["data"].length == 0) {
reject("No tests in this session");
}
console.log("Creating directories");
if (!fs.existsSync(directory)) {
fs.mkdirSync(directory, { recursive: true });
console.log("Directory created ", directory);
}
for (i = 0; i < build_info["data"].length; i++) {
download_artefact(
username,
access_key,
env,
build_info["data"][i]["test_id"],
path.join(
directory,
build_info["data"][i]["browser"],
build_info["data"][i]["version"],
build_info["data"][i]["test_id"]
),
build_payload["run_settings"]["reject_unauthorized"]
)
.then(function (resp) {
//Files downloaded
console.log(resp);
})
.catch(function (err) {
console.log(err);
});
}
resolve("Done");
})
.catch(function (err) {
console.log("Error occured while getting the build response", err);
});
});
}
module.exports = function (args) {
generate_report(args)
.then(function (resp) {})
.catch(function (err) {
console.log("ERR:", err);
});
};