Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/ci/job_details/store/actions.js')
-rw-r--r--app/assets/javascripts/ci/job_details/store/actions.js24
1 files changed, 23 insertions, 1 deletions
diff --git a/app/assets/javascripts/ci/job_details/store/actions.js b/app/assets/javascripts/ci/job_details/store/actions.js
index 6f538e3b3d4..adcba0f2409 100644
--- a/app/assets/javascripts/ci/job_details/store/actions.js
+++ b/app/assets/javascripts/ci/job_details/store/actions.js
@@ -15,10 +15,11 @@ import { __ } from '~/locale';
import { reportToSentry } from '~/ci/utils';
import * as types from './mutation_types';
-export const init = ({ dispatch }, { endpoint, pagePath }) => {
+export const init = ({ dispatch }, { endpoint, pagePath, testReportSummaryUrl }) => {
dispatch('setJobLogOptions', {
endpoint,
pagePath,
+ testReportSummaryUrl,
});
return dispatch('fetchJob');
@@ -170,6 +171,7 @@ export const fetchJobLog = ({ dispatch, state }) =>
if (data.complete) {
dispatch('stopPollingJobLog');
+ dispatch('requestTestSummary');
} else if (!state.jobLogTimeout) {
dispatch('startPollingJobLog');
}
@@ -273,3 +275,23 @@ export const triggerManualJob = ({ state }, variables) => {
}),
);
};
+
+export const requestTestSummary = ({ state, commit, dispatch }) => {
+ if (!state.testSummaryComplete) {
+ axios
+ .get(state.testReportSummaryUrl)
+ .then(({ data }) => {
+ dispatch('receiveTestSummarySuccess', data);
+ })
+ .catch((e) => {
+ reportToSentry('job_test_summary_report', e);
+ })
+ .finally(() => {
+ commit(types.RECEIVE_TEST_SUMMARY_COMPLETE);
+ });
+ }
+};
+
+export const receiveTestSummarySuccess = ({ commit }, data) => {
+ commit(types.RECEIVE_TEST_SUMMARY_SUCCESS, data);
+};