foreman_inventory_upload 0.0.1.dev1 → 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/Rakefile +1 -1
- data/app/controllers/foreman_inventory_upload/accounts_controller.rb +39 -0
- data/app/controllers/foreman_inventory_upload/reports_controller.rb +13 -6
- data/app/controllers/foreman_inventory_upload/uploads_controller.rb +4 -4
- data/app/helpers/foreman_inventory_upload_helper.rb +1 -1
- data/app/views/scripts/uploader.sh.erb +21 -10
- data/config/routes.rb +5 -5
- data/lib/foreman_inventory_upload/async/generate_all_reports_job.rb +19 -0
- data/lib/foreman_inventory_upload/async/generate_report_job.rb +13 -9
- data/lib/foreman_inventory_upload/async/progress_output.rb +1 -1
- data/lib/foreman_inventory_upload/async/queue_for_upload_job.rb +12 -17
- data/lib/foreman_inventory_upload/async/shell_process.rb +2 -1
- data/lib/foreman_inventory_upload/async/upload_report_job.rb +22 -17
- data/lib/foreman_inventory_upload/engine.rb +11 -1
- data/lib/foreman_inventory_upload/generators/archived_report.rb +2 -2
- data/lib/foreman_inventory_upload/generators/queries.rb +20 -11
- data/lib/foreman_inventory_upload/generators/slice.rb +26 -5
- data/lib/foreman_inventory_upload/version.rb +1 -1
- data/lib/foreman_inventory_upload.rb +15 -10
- data/lib/tasks/generator.rake +19 -5
- data/package.json +125 -0
- data/test/controllers/{statuses_controller_test.rb → accounts_controller_test.rb} +6 -7
- data/test/controllers/reports_controller_test.rb +3 -3
- data/test/controllers/uploads_controller_test.rb +3 -3
- data/test/unit/archived_report_generator_test.rb +4 -4
- data/test/unit/slice_generator_test.rb +75 -1
- data/webpack/ForemanInventoryUpload/Components/AccountList/AccountList.fixtures.js +37 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/AccountList.js +74 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/AccountList.stories.js +18 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/AccountListActions.js +65 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/AccountListConstants.js +9 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/AccountListHelper.js +0 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/AccountListReducer.js +55 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/AccountListSelectors.js +8 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/EmptyState/EmptyState.fixtures.js +0 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/EmptyState/EmptyState.js +16 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/EmptyState/EmptyStateHelper.js +0 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/EmptyState/__tests__/EmptyState.test.js +13 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/EmptyState/__tests__/__snapshots__/EmptyState.test.js.snap +26 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/EmptyState/emptyState.scss +7 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/EmptyState/index.js +1 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/ErrorState/ErrorState.fixtures.js +0 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/ErrorState/ErrorState.js +23 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/ErrorState/ErrorStateHelper.js +0 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/ErrorState/__tests__/ErrorState.test.js +13 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/ErrorState/__tests__/__snapshots__/ErrorState.test.js.snap +20 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/ErrorState/errorState.scss +18 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/ErrorState/index.js +1 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/ListItem/ListItem.fixtures.js +1 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/ListItem/ListItem.js +41 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/ListItem/ListItemHelper.js +0 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/ListItem/__tests__/ListItem.test.js +13 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/ListItem/__tests__/__snapshots__/ListItem.test.js.snap +50 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/ListItem/index.js +1 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/ListItem/listItem.scss +0 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/ListItemStatus/ListItemStatus.fixtures.js +7 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/ListItemStatus/ListItemStatus.js +43 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/ListItemStatus/ListItemStatusHelper.js +29 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/ListItemStatus/__tests__/ListItemStatus.test.js +14 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/ListItemStatus/__tests__/__snapshots__/ListItemStatus.test.js.snap +78 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/ListItemStatus/index.js +1 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/ListItemStatus/listItemStatus.scss +16 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/AccountList.test.js +13 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/AccountListActions.test.js +20 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/AccountListIntegration.test.js +14 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/AccountListReducer.test.js +60 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/AccountListSelectors.test.js +26 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/__snapshots__/AccountList.test.js.snap +44 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/__snapshots__/AccountListActions.test.js.snap +47 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/__snapshots__/AccountListReducer.test.js.snap +69 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/__snapshots__/AccountListSelectors.test.js.snap +46 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/accountList.scss +9 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/index.js +27 -0
- data/webpack/ForemanInventoryUpload/Components/Dashboard/Dashboard.fixtures.js +50 -0
- data/webpack/ForemanInventoryUpload/Components/Dashboard/Dashboard.js +146 -0
- data/webpack/ForemanInventoryUpload/Components/Dashboard/Dashboard.stories.js +19 -0
- data/webpack/ForemanInventoryUpload/Components/Dashboard/DashboardActions.js +87 -0
- data/webpack/ForemanInventoryUpload/Components/Dashboard/DashboardConstants.js +9 -0
- data/webpack/ForemanInventoryUpload/Components/Dashboard/DashboardHelper.js +0 -0
- data/webpack/ForemanInventoryUpload/Components/Dashboard/DashboardReducer.js +68 -0
- data/webpack/ForemanInventoryUpload/Components/Dashboard/DashboardSelectors.js +17 -0
- data/webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/Dashboard.test.js +25 -0
- data/webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/DashboardActions.test.js +39 -0
- data/webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/DashboardIntegration.test.js +16 -0
- data/webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/DashboardReducer.test.js +64 -0
- data/webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/DashboardSelectors.test.js +45 -0
- data/webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/__snapshots__/Dashboard.test.js.snap +36 -0
- data/webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/__snapshots__/DashboardActions.test.js.snap +76 -0
- data/webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/__snapshots__/DashboardReducer.test.js.snap +44 -0
- data/webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/__snapshots__/DashboardSelectors.test.js.snap +42 -0
- data/webpack/ForemanInventoryUpload/Components/Dashboard/dashboard.scss +0 -0
- data/webpack/ForemanInventoryUpload/Components/Dashboard/index.js +34 -0
- data/webpack/ForemanInventoryUpload/Components/FileDownload/FileDownload.fixtures.js +0 -0
- data/webpack/ForemanInventoryUpload/Components/FileDownload/FileDownload.js +22 -0
- data/webpack/ForemanInventoryUpload/Components/FileDownload/FileDownloadHelper.js +0 -0
- data/webpack/ForemanInventoryUpload/Components/FileDownload/__tests__/FileDownload.test.js +13 -0
- data/webpack/ForemanInventoryUpload/Components/FileDownload/__tests__/__snapshots__/FileDownload.test.js.snap +25 -0
- data/webpack/ForemanInventoryUpload/Components/FileDownload/fileDownload.scss +3 -0
- data/webpack/ForemanInventoryUpload/Components/FileDownload/index.js +1 -0
- data/webpack/ForemanInventoryUpload/Components/FullScreenModal/FullScreenModal.fixtures.js +0 -0
- data/webpack/ForemanInventoryUpload/Components/FullScreenModal/FullScreenModal.js +50 -0
- data/webpack/ForemanInventoryUpload/Components/FullScreenModal/FullScreenModalHelper.js +0 -0
- data/webpack/ForemanInventoryUpload/Components/FullScreenModal/__tests__/FullScreenModal.test.js +13 -0
- data/webpack/ForemanInventoryUpload/Components/FullScreenModal/__tests__/__snapshots__/FullScreenModal.test.js.snap +64 -0
- data/webpack/ForemanInventoryUpload/Components/FullScreenModal/fullScreenModal.scss +10 -0
- data/webpack/ForemanInventoryUpload/Components/FullScreenModal/index.js +1 -0
- data/webpack/ForemanInventoryUpload/Components/NavContainer/NavContainer.fixtures.js +10 -0
- data/webpack/ForemanInventoryUpload/Components/NavContainer/NavContainer.js +83 -0
- data/webpack/ForemanInventoryUpload/Components/NavContainer/NavContainerHelper.js +0 -0
- data/webpack/ForemanInventoryUpload/Components/NavContainer/__tests__/NavContainer.test.js +26 -0
- data/webpack/ForemanInventoryUpload/Components/NavContainer/__tests__/__snapshots__/NavContainer.test.js.snap +89 -0
- data/webpack/ForemanInventoryUpload/Components/NavContainer/index.js +1 -0
- data/webpack/ForemanInventoryUpload/Components/NavContainer/navContainer.scss +7 -0
- data/webpack/ForemanInventoryUpload/Components/ReportGenerate/ReportGenerate.fixtures.js +16 -0
- data/webpack/ForemanInventoryUpload/Components/ReportGenerate/ReportGenerate.js +57 -0
- data/webpack/ForemanInventoryUpload/Components/ReportGenerate/ReportGenerateHelper.js +0 -0
- data/webpack/ForemanInventoryUpload/Components/ReportGenerate/__tests__/ReportGenerate.test.js +14 -0
- data/webpack/ForemanInventoryUpload/Components/ReportGenerate/__tests__/__snapshots__/ReportGenerate.test.js.snap +45 -0
- data/webpack/ForemanInventoryUpload/Components/ReportGenerate/index.js +1 -0
- data/webpack/ForemanInventoryUpload/Components/ReportGenerate/reportGenerate.scss +0 -0
- data/webpack/ForemanInventoryUpload/Components/ReportUpload/ReportUpload.fixtures.js +18 -0
- data/webpack/ForemanInventoryUpload/Components/ReportUpload/ReportUpload.js +57 -0
- data/webpack/ForemanInventoryUpload/Components/ReportUpload/ReportUploadHelper.js +0 -0
- data/webpack/ForemanInventoryUpload/Components/ReportUpload/__tests__/ReportUpload.test.js +14 -0
- data/webpack/ForemanInventoryUpload/Components/ReportUpload/__tests__/__snapshots__/ReportUpload.test.js.snap +45 -0
- data/webpack/ForemanInventoryUpload/Components/ReportUpload/index.js +1 -0
- data/webpack/ForemanInventoryUpload/Components/ReportUpload/reportUpload.scss +0 -0
- data/webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRun.fixtures.js +3 -0
- data/webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRun.js +27 -0
- data/webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRunHelper.js +0 -0
- data/webpack/ForemanInventoryUpload/Components/ScheduledRun/__tests__/ScheduledRun.test.js +14 -0
- data/webpack/ForemanInventoryUpload/Components/ScheduledRun/__tests__/__snapshots__/ScheduledRun.test.js.snap +25 -0
- data/webpack/ForemanInventoryUpload/Components/ScheduledRun/index.js +1 -0
- data/webpack/ForemanInventoryUpload/Components/ScheduledRun/scheduledRun.scss +11 -0
- data/webpack/ForemanInventoryUpload/Components/StatusChart/StatusChart.fixtures.js +0 -0
- data/webpack/ForemanInventoryUpload/Components/StatusChart/StatusChart.js +56 -0
- data/webpack/ForemanInventoryUpload/Components/StatusChart/StatusChartHelper.js +0 -0
- data/webpack/ForemanInventoryUpload/Components/StatusChart/__tests__/StatusChart.test.js +13 -0
- data/webpack/ForemanInventoryUpload/Components/StatusChart/__tests__/__snapshots__/StatusChart.test.js.snap +74 -0
- data/webpack/ForemanInventoryUpload/Components/StatusChart/index.js +1 -0
- data/webpack/ForemanInventoryUpload/Components/StatusChart/statusChart.scss +8 -0
- data/webpack/ForemanInventoryUpload/Components/TabBody/TabBody.fixtures.js +0 -0
- data/webpack/ForemanInventoryUpload/Components/TabBody/TabBody.js +31 -0
- data/webpack/ForemanInventoryUpload/Components/TabBody/TabBodyHelper.js +0 -0
- data/webpack/ForemanInventoryUpload/Components/TabBody/__tests__/TabBody.test.js +13 -0
- data/webpack/ForemanInventoryUpload/Components/TabBody/__tests__/__snapshots__/TabBody.test.js.snap +19 -0
- data/webpack/ForemanInventoryUpload/Components/TabBody/index.js +1 -0
- data/webpack/ForemanInventoryUpload/Components/TabBody/tabBody.scss +3 -0
- data/webpack/ForemanInventoryUpload/Components/TabContainer/TabContainer.fixtures.js +0 -0
- data/webpack/ForemanInventoryUpload/Components/TabContainer/TabContainer.js +24 -0
- data/webpack/ForemanInventoryUpload/Components/TabContainer/TabContainerHelper.js +0 -0
- data/webpack/ForemanInventoryUpload/Components/TabContainer/__tests__/TabContainer.test.js +13 -0
- data/webpack/ForemanInventoryUpload/Components/TabContainer/__tests__/__snapshots__/TabContainer.test.js.snap +18 -0
- data/webpack/ForemanInventoryUpload/Components/TabContainer/index.js +1 -0
- data/webpack/ForemanInventoryUpload/Components/TabContainer/tabContainer.scss +8 -0
- data/webpack/ForemanInventoryUpload/Components/TabFooter/TabFooter.fixtures.js +0 -0
- data/webpack/ForemanInventoryUpload/Components/TabFooter/TabFooter.js +19 -0
- data/webpack/ForemanInventoryUpload/Components/TabFooter/TabFooterHelper.js +0 -0
- data/webpack/ForemanInventoryUpload/Components/TabFooter/__tests__/TabFooter.test.js +13 -0
- data/webpack/ForemanInventoryUpload/Components/TabFooter/__tests__/__snapshots__/TabFooter.test.js.snap +12 -0
- data/webpack/ForemanInventoryUpload/Components/TabFooter/index.js +1 -0
- data/webpack/ForemanInventoryUpload/Components/TabFooter/tabFooter.scss +0 -0
- data/webpack/ForemanInventoryUpload/Components/TabHeader/TabHeader.fixtures.js +0 -0
- data/webpack/ForemanInventoryUpload/Components/TabHeader/TabHeader.js +45 -0
- data/webpack/ForemanInventoryUpload/Components/TabHeader/TabHeaderHelper.js +0 -0
- data/webpack/ForemanInventoryUpload/Components/TabHeader/__tests__/TabHeader.test.js +13 -0
- data/webpack/ForemanInventoryUpload/Components/TabHeader/__tests__/__snapshots__/TabHeader.test.js.snap +53 -0
- data/webpack/ForemanInventoryUpload/Components/TabHeader/index.js +1 -0
- data/webpack/ForemanInventoryUpload/Components/TabHeader/tabHeader.scss +21 -0
- data/webpack/ForemanInventoryUpload/Components/Terminal/Terminal.fixtures.js +10 -0
- data/webpack/ForemanInventoryUpload/Components/Terminal/Terminal.js +112 -0
- data/webpack/ForemanInventoryUpload/Components/Terminal/TerminalHelper.js +6 -0
- data/webpack/ForemanInventoryUpload/Components/Terminal/__tests__/Terminal.test.js +35 -0
- data/webpack/ForemanInventoryUpload/Components/Terminal/__tests__/__snapshots__/Terminal.test.js.snap +98 -0
- data/webpack/ForemanInventoryUpload/Components/Terminal/index.js +1 -0
- data/webpack/ForemanInventoryUpload/Components/Terminal/terminal.scss +31 -0
- data/webpack/ForemanInventoryUpload/ForemanInventoryUpload.js +15 -0
- data/webpack/ForemanInventoryUpload/ForemanInventoryUpload.test.js +10 -0
- data/webpack/ForemanInventoryUpload/ForemanInventoryUploadReducers.js +12 -0
- data/webpack/ForemanInventoryUpload/ForemanInventoryUploadSelectors.js +4 -0
- data/webpack/ForemanInventoryUpload/__snapshots__/ForemanInventoryUpload.test.js.snap +16 -0
- data/webpack/ForemanInventoryUpload/index.js +1 -0
- data/webpack/__mocks__/foremanReact/API.js +7 -0
- data/webpack/__mocks__/foremanReact/common/I18n.js +5 -0
- data/webpack/__mocks__/foremanReact/common/helpers.js +3 -0
- data/webpack/index.js +18 -0
- data/webpack/stories/ForemanInventoryUploadReducers.js +3 -0
- data/webpack/stories/configureStore.js +15 -0
- data/webpack/stories/decorators/index.js +1 -0
- data/webpack/stories/decorators/withCardsDecorator.js +14 -0
- data/webpack/stories/index.js +10 -0
- data/webpack/stories/index.scss +7 -0
- data/webpack/test_setup.js +6 -0
- metadata +205 -9
- data/app/controllers/foreman_inventory_upload/statuses_controller.rb +0 -41
@@ -0,0 +1,31 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import PropTypes from 'prop-types';
|
3
|
+
import { Grid } from 'patternfly-react';
|
4
|
+
import Terminal from '../Terminal';
|
5
|
+
import ScheduledRun from '../ScheduledRun';
|
6
|
+
import './tabBody.scss';
|
7
|
+
|
8
|
+
const TabBody = ({ exitCode, logs, error, scheduled }) => (
|
9
|
+
<Grid.Row className="tab_body">
|
10
|
+
<Terminal logs={logs} exitCode={exitCode} error={error} />
|
11
|
+
<ScheduledRun date={scheduled} />
|
12
|
+
</Grid.Row>
|
13
|
+
);
|
14
|
+
|
15
|
+
TabBody.propTypes = {
|
16
|
+
exitCode: PropTypes.string,
|
17
|
+
logs: PropTypes.oneOfType([
|
18
|
+
PropTypes.arrayOf(PropTypes.string),
|
19
|
+
PropTypes.string,
|
20
|
+
]),
|
21
|
+
error: PropTypes.string,
|
22
|
+
scheduled: PropTypes.string,
|
23
|
+
};
|
24
|
+
|
25
|
+
TabBody.defaultProps = {
|
26
|
+
exitCode: '',
|
27
|
+
logs: null,
|
28
|
+
error: null,
|
29
|
+
scheduled: null,
|
30
|
+
};
|
31
|
+
export default TabBody;
|
File without changes
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { testComponentSnapshotsWithFixtures } from 'react-redux-test-utils';
|
2
|
+
|
3
|
+
import TabBody from '../TabBody';
|
4
|
+
|
5
|
+
const fixtures = {
|
6
|
+
'render without Props': {},
|
7
|
+
/** fixtures, props for the component */
|
8
|
+
};
|
9
|
+
|
10
|
+
describe('TabBody', () => {
|
11
|
+
describe('rendering', () =>
|
12
|
+
testComponentSnapshotsWithFixtures(TabBody, fixtures));
|
13
|
+
});
|
data/webpack/ForemanInventoryUpload/Components/TabBody/__tests__/__snapshots__/TabBody.test.js.snap
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
2
|
+
|
3
|
+
exports[`TabBody rendering render without Props 1`] = `
|
4
|
+
<Row
|
5
|
+
bsClass="row"
|
6
|
+
className="tab_body"
|
7
|
+
componentClass="div"
|
8
|
+
>
|
9
|
+
<Terminal
|
10
|
+
autoScroll={true}
|
11
|
+
error={null}
|
12
|
+
exitCode=""
|
13
|
+
logs={null}
|
14
|
+
/>
|
15
|
+
<ScheduledRun
|
16
|
+
date={null}
|
17
|
+
/>
|
18
|
+
</Row>
|
19
|
+
`;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default } from './TabBody';
|
File without changes
|
@@ -0,0 +1,24 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import PropTypes from 'prop-types';
|
3
|
+
import { Grid } from 'patternfly-react';
|
4
|
+
import './tabContainer.scss';
|
5
|
+
|
6
|
+
const TabContainer = ({ children, className }) => (
|
7
|
+
<div className={className}>
|
8
|
+
<Grid>
|
9
|
+
<Grid.Col>{children}</Grid.Col>
|
10
|
+
</Grid>
|
11
|
+
</div>
|
12
|
+
);
|
13
|
+
|
14
|
+
TabContainer.propTypes = {
|
15
|
+
children: PropTypes.node,
|
16
|
+
className: PropTypes.string,
|
17
|
+
};
|
18
|
+
|
19
|
+
TabContainer.defaultProps = {
|
20
|
+
children: null,
|
21
|
+
className: '',
|
22
|
+
};
|
23
|
+
|
24
|
+
export default TabContainer;
|
File without changes
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { testComponentSnapshotsWithFixtures } from 'react-redux-test-utils';
|
2
|
+
|
3
|
+
import TabContainer from '../TabContainer';
|
4
|
+
|
5
|
+
const fixtures = {
|
6
|
+
'render without Props': {},
|
7
|
+
/** fixtures, props for the component */
|
8
|
+
};
|
9
|
+
|
10
|
+
describe('TabContainer', () => {
|
11
|
+
describe('rendering', () =>
|
12
|
+
testComponentSnapshotsWithFixtures(TabContainer, fixtures));
|
13
|
+
});
|
@@ -0,0 +1,18 @@
|
|
1
|
+
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
2
|
+
|
3
|
+
exports[`TabContainer rendering render without Props 1`] = `
|
4
|
+
<div
|
5
|
+
className=""
|
6
|
+
>
|
7
|
+
<Grid
|
8
|
+
bsClass="container"
|
9
|
+
componentClass="div"
|
10
|
+
fluid={false}
|
11
|
+
>
|
12
|
+
<Col
|
13
|
+
bsClass="col"
|
14
|
+
componentClass="div"
|
15
|
+
/>
|
16
|
+
</Grid>
|
17
|
+
</div>
|
18
|
+
`;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default } from './TabContainer';
|
File without changes
|
@@ -0,0 +1,19 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import PropTypes from 'prop-types';
|
3
|
+
import { Grid } from 'patternfly-react';
|
4
|
+
|
5
|
+
const TabFooter = ({ children }) => (
|
6
|
+
<Grid.Row>
|
7
|
+
<div className="tab-footer">{children}</div>
|
8
|
+
</Grid.Row>
|
9
|
+
);
|
10
|
+
|
11
|
+
TabFooter.propTypes = {
|
12
|
+
children: PropTypes.node,
|
13
|
+
};
|
14
|
+
|
15
|
+
TabFooter.defaultProps = {
|
16
|
+
children: null,
|
17
|
+
};
|
18
|
+
|
19
|
+
export default TabFooter;
|
File without changes
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { testComponentSnapshotsWithFixtures } from 'react-redux-test-utils';
|
2
|
+
|
3
|
+
import TabFooter from '../TabFooter';
|
4
|
+
|
5
|
+
const fixtures = {
|
6
|
+
'render without Props': {},
|
7
|
+
/** fixtures, props for the component */
|
8
|
+
};
|
9
|
+
|
10
|
+
describe('TabFooter', () => {
|
11
|
+
describe('rendering', () =>
|
12
|
+
testComponentSnapshotsWithFixtures(TabFooter, fixtures));
|
13
|
+
});
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default } from './TabFooter';
|
File without changes
|
File without changes
|
@@ -0,0 +1,45 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import PropTypes from 'prop-types';
|
3
|
+
import { noop, Grid, Button, Icon } from 'patternfly-react';
|
4
|
+
import { sprintf, translate as __ } from 'foremanReact/common/I18n';
|
5
|
+
import './tabHeader.scss';
|
6
|
+
|
7
|
+
const TabHeader = ({ exitCode, onRestart, onDownload, toggleFullScreen }) => (
|
8
|
+
<Grid.Row className="tab-header">
|
9
|
+
<Grid.Col sm={6}>
|
10
|
+
<p>{sprintf(__('Exit Code: %s'), exitCode)}</p>
|
11
|
+
</Grid.Col>
|
12
|
+
<Grid.Col sm={6}>
|
13
|
+
<div className="tab-action-buttons">
|
14
|
+
<Button bsStyle="primary" onClick={onRestart}>
|
15
|
+
{__('Restart')}
|
16
|
+
</Button>
|
17
|
+
{onDownload ? (
|
18
|
+
<Button onClick={onDownload}>
|
19
|
+
{__('Download Report')} <Icon name="download" />
|
20
|
+
</Button>
|
21
|
+
) : null}
|
22
|
+
<Button onClick={toggleFullScreen}>
|
23
|
+
{__('Full Screen')}
|
24
|
+
<Icon name="arrows-alt" />
|
25
|
+
</Button>
|
26
|
+
</div>
|
27
|
+
</Grid.Col>
|
28
|
+
</Grid.Row>
|
29
|
+
);
|
30
|
+
|
31
|
+
TabHeader.propTypes = {
|
32
|
+
onRestart: PropTypes.func,
|
33
|
+
onDownload: PropTypes.func,
|
34
|
+
exitCode: PropTypes.string,
|
35
|
+
toggleFullScreen: PropTypes.func,
|
36
|
+
};
|
37
|
+
|
38
|
+
TabHeader.defaultProps = {
|
39
|
+
onRestart: noop,
|
40
|
+
exitCode: '',
|
41
|
+
onDownload: null,
|
42
|
+
toggleFullScreen: noop,
|
43
|
+
};
|
44
|
+
|
45
|
+
export default TabHeader;
|
File without changes
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { testComponentSnapshotsWithFixtures } from 'react-redux-test-utils';
|
2
|
+
|
3
|
+
import TabHeader from '../TabHeader';
|
4
|
+
|
5
|
+
const fixtures = {
|
6
|
+
'render without Props': {},
|
7
|
+
/** fixtures, props for the component */
|
8
|
+
};
|
9
|
+
|
10
|
+
describe('TabHeader', () => {
|
11
|
+
describe('rendering', () =>
|
12
|
+
testComponentSnapshotsWithFixtures(TabHeader, fixtures));
|
13
|
+
});
|
@@ -0,0 +1,53 @@
|
|
1
|
+
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
2
|
+
|
3
|
+
exports[`TabHeader rendering render without Props 1`] = `
|
4
|
+
<Row
|
5
|
+
bsClass="row"
|
6
|
+
className="tab-header"
|
7
|
+
componentClass="div"
|
8
|
+
>
|
9
|
+
<Col
|
10
|
+
bsClass="col"
|
11
|
+
componentClass="div"
|
12
|
+
sm={6}
|
13
|
+
>
|
14
|
+
<p>
|
15
|
+
Exit Code:
|
16
|
+
</p>
|
17
|
+
</Col>
|
18
|
+
<Col
|
19
|
+
bsClass="col"
|
20
|
+
componentClass="div"
|
21
|
+
sm={6}
|
22
|
+
>
|
23
|
+
<div
|
24
|
+
className="tab-action-buttons"
|
25
|
+
>
|
26
|
+
<Button
|
27
|
+
active={false}
|
28
|
+
block={false}
|
29
|
+
bsClass="btn"
|
30
|
+
bsStyle="primary"
|
31
|
+
disabled={false}
|
32
|
+
onClick={[Function]}
|
33
|
+
>
|
34
|
+
Restart
|
35
|
+
</Button>
|
36
|
+
<Button
|
37
|
+
active={false}
|
38
|
+
block={false}
|
39
|
+
bsClass="btn"
|
40
|
+
bsStyle="default"
|
41
|
+
disabled={false}
|
42
|
+
onClick={[Function]}
|
43
|
+
>
|
44
|
+
Full Screen
|
45
|
+
<Icon
|
46
|
+
name="arrows-alt"
|
47
|
+
type="fa"
|
48
|
+
/>
|
49
|
+
</Button>
|
50
|
+
</div>
|
51
|
+
</Col>
|
52
|
+
</Row>
|
53
|
+
`;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default } from './TabHeader';
|
@@ -0,0 +1,112 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import PropTypes from 'prop-types';
|
3
|
+
import { Grid, Spinner } from 'patternfly-react';
|
4
|
+
import isEqual from 'lodash/isEqual';
|
5
|
+
import './terminal.scss';
|
6
|
+
import { isTerminalScrolledDown } from './TerminalHelper';
|
7
|
+
|
8
|
+
class Terminal extends React.Component {
|
9
|
+
constructor(props) {
|
10
|
+
super(props);
|
11
|
+
this.terminal = React.createRef();
|
12
|
+
this.state = {
|
13
|
+
didUserScroll: false,
|
14
|
+
};
|
15
|
+
}
|
16
|
+
|
17
|
+
componentDidMount() {
|
18
|
+
this.scrollBottom();
|
19
|
+
}
|
20
|
+
|
21
|
+
componentDidUpdate({ logs: prevLogs }) {
|
22
|
+
const { logs: currentLogs, autoScroll } = this.props;
|
23
|
+
const { didUserScroll } = this.state;
|
24
|
+
if (autoScroll && !didUserScroll && !isEqual(prevLogs, currentLogs)) {
|
25
|
+
this.scrollBottom();
|
26
|
+
}
|
27
|
+
}
|
28
|
+
|
29
|
+
handleScroll = e => {
|
30
|
+
const { scrollTop, scrollHeight, offsetHeight } = e.target;
|
31
|
+
const didUserScroll = isTerminalScrolledDown(
|
32
|
+
scrollHeight,
|
33
|
+
scrollTop,
|
34
|
+
offsetHeight,
|
35
|
+
100
|
36
|
+
);
|
37
|
+
this.setState({
|
38
|
+
didUserScroll,
|
39
|
+
});
|
40
|
+
};
|
41
|
+
|
42
|
+
scrollBottom = () => {
|
43
|
+
const element = this.terminal.current;
|
44
|
+
if (!element) {
|
45
|
+
return;
|
46
|
+
}
|
47
|
+
const setHeightToBottom = () => {
|
48
|
+
element.scrollTop = element.scrollHeight;
|
49
|
+
};
|
50
|
+
/** happens on tab switching when the terminal wasn't visible yet
|
51
|
+
* and there was nothing to scroll, 250ms is enough to wait for the terminal to appear.
|
52
|
+
*/
|
53
|
+
if (element.scrollHeight === 0) {
|
54
|
+
setTimeout(setHeightToBottom, 250);
|
55
|
+
} else {
|
56
|
+
setHeightToBottom();
|
57
|
+
}
|
58
|
+
};
|
59
|
+
|
60
|
+
render() {
|
61
|
+
const { logs, error, exitCode } = this.props;
|
62
|
+
let modifiedLogs = null;
|
63
|
+
if (error !== null) {
|
64
|
+
modifiedLogs = <p className="terminal_error">{error}</p>;
|
65
|
+
} else if (Array.isArray(logs)) {
|
66
|
+
modifiedLogs = logs.map((log, index) => <p key={index}>{log}</p>);
|
67
|
+
} else {
|
68
|
+
modifiedLogs = <p>{logs}</p>;
|
69
|
+
}
|
70
|
+
const exitCodeLowerCase = exitCode.toLowerCase();
|
71
|
+
const loading =
|
72
|
+
exitCodeLowerCase.indexOf('running') !== -1 ||
|
73
|
+
exitCodeLowerCase.indexOf('restarting') !== -1;
|
74
|
+
return (
|
75
|
+
<Grid.Col sm={12}>
|
76
|
+
<div
|
77
|
+
className="terminal"
|
78
|
+
ref={this.terminal}
|
79
|
+
onScroll={this.handleScroll}
|
80
|
+
>
|
81
|
+
<Grid fluid>
|
82
|
+
<Grid.Row>
|
83
|
+
<Grid.Col sm={12}>
|
84
|
+
{modifiedLogs}
|
85
|
+
<Spinner loading={loading} inverse inline size="xs" />
|
86
|
+
</Grid.Col>
|
87
|
+
</Grid.Row>
|
88
|
+
</Grid>
|
89
|
+
</div>
|
90
|
+
</Grid.Col>
|
91
|
+
);
|
92
|
+
}
|
93
|
+
}
|
94
|
+
|
95
|
+
Terminal.propTypes = {
|
96
|
+
logs: PropTypes.oneOfType([
|
97
|
+
PropTypes.arrayOf(PropTypes.string),
|
98
|
+
PropTypes.string,
|
99
|
+
]),
|
100
|
+
error: PropTypes.string,
|
101
|
+
exitCode: PropTypes.string,
|
102
|
+
autoScroll: PropTypes.bool,
|
103
|
+
};
|
104
|
+
|
105
|
+
Terminal.defaultProps = {
|
106
|
+
logs: null,
|
107
|
+
error: null,
|
108
|
+
exitCode: '',
|
109
|
+
autoScroll: true,
|
110
|
+
};
|
111
|
+
|
112
|
+
export default Terminal;
|
@@ -0,0 +1,35 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import { testComponentSnapshotsWithFixtures } from 'react-redux-test-utils';
|
3
|
+
import { mount } from 'enzyme';
|
4
|
+
import Terminal from '../Terminal';
|
5
|
+
import { props, logs } from '../Terminal.fixtures';
|
6
|
+
|
7
|
+
const fixtures = {
|
8
|
+
'render without Props': {},
|
9
|
+
'render with props': props,
|
10
|
+
};
|
11
|
+
|
12
|
+
describe('Terminal', () => {
|
13
|
+
describe('rendering', () =>
|
14
|
+
testComponentSnapshotsWithFixtures(Terminal, fixtures));
|
15
|
+
|
16
|
+
it('handles terminal scroll on componentDidUpdate', () => {
|
17
|
+
const wrapper = mount(<Terminal {...props} />);
|
18
|
+
jest.spyOn(wrapper.instance(), 'scrollBottom');
|
19
|
+
wrapper.setProps({ logs: [...logs, 'new-log'] });
|
20
|
+
expect(wrapper.instance().scrollBottom).toBeCalled();
|
21
|
+
});
|
22
|
+
|
23
|
+
it('error should be displayed in terminal', () => {
|
24
|
+
const modifiedProps = { ...props, error: 'some-error' };
|
25
|
+
const wrapper = mount(<Terminal {...modifiedProps} />);
|
26
|
+
expect(wrapper.find('p.terminal_error').exists()).toBeTruthy();
|
27
|
+
});
|
28
|
+
|
29
|
+
it('logs as a string instead of an array should be displayed', () => {
|
30
|
+
const text = 'some-string-log';
|
31
|
+
const modifiedProps = { ...props, logs: text };
|
32
|
+
const wrapper = mount(<Terminal {...modifiedProps} />);
|
33
|
+
expect(wrapper.find('.terminal p').text()).toEqual(text);
|
34
|
+
});
|
35
|
+
});
|
@@ -0,0 +1,98 @@
|
|
1
|
+
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
2
|
+
|
3
|
+
exports[`Terminal rendering render with props 1`] = `
|
4
|
+
<Col
|
5
|
+
bsClass="col"
|
6
|
+
componentClass="div"
|
7
|
+
sm={12}
|
8
|
+
>
|
9
|
+
<div
|
10
|
+
className="terminal"
|
11
|
+
onScroll={[Function]}
|
12
|
+
>
|
13
|
+
<Grid
|
14
|
+
bsClass="container"
|
15
|
+
componentClass="div"
|
16
|
+
fluid={true}
|
17
|
+
>
|
18
|
+
<Row
|
19
|
+
bsClass="row"
|
20
|
+
componentClass="div"
|
21
|
+
>
|
22
|
+
<Col
|
23
|
+
bsClass="col"
|
24
|
+
componentClass="div"
|
25
|
+
sm={12}
|
26
|
+
>
|
27
|
+
<p
|
28
|
+
key="0"
|
29
|
+
>
|
30
|
+
Generating...
|
31
|
+
</p>
|
32
|
+
<p
|
33
|
+
key="1"
|
34
|
+
>
|
35
|
+
Hosts: 1000
|
36
|
+
</p>
|
37
|
+
<p
|
38
|
+
key="2"
|
39
|
+
>
|
40
|
+
writing host 1/1000
|
41
|
+
</p>
|
42
|
+
<p
|
43
|
+
key="3"
|
44
|
+
>
|
45
|
+
writing host 2/1000
|
46
|
+
</p>
|
47
|
+
<Spinner
|
48
|
+
className=""
|
49
|
+
inline={true}
|
50
|
+
inverse={true}
|
51
|
+
loading={true}
|
52
|
+
size="xs"
|
53
|
+
/>
|
54
|
+
</Col>
|
55
|
+
</Row>
|
56
|
+
</Grid>
|
57
|
+
</div>
|
58
|
+
</Col>
|
59
|
+
`;
|
60
|
+
|
61
|
+
exports[`Terminal rendering render without Props 1`] = `
|
62
|
+
<Col
|
63
|
+
bsClass="col"
|
64
|
+
componentClass="div"
|
65
|
+
sm={12}
|
66
|
+
>
|
67
|
+
<div
|
68
|
+
className="terminal"
|
69
|
+
onScroll={[Function]}
|
70
|
+
>
|
71
|
+
<Grid
|
72
|
+
bsClass="container"
|
73
|
+
componentClass="div"
|
74
|
+
fluid={true}
|
75
|
+
>
|
76
|
+
<Row
|
77
|
+
bsClass="row"
|
78
|
+
componentClass="div"
|
79
|
+
>
|
80
|
+
<Col
|
81
|
+
bsClass="col"
|
82
|
+
componentClass="div"
|
83
|
+
sm={12}
|
84
|
+
>
|
85
|
+
<p />
|
86
|
+
<Spinner
|
87
|
+
className=""
|
88
|
+
inline={true}
|
89
|
+
inverse={true}
|
90
|
+
loading={false}
|
91
|
+
size="xs"
|
92
|
+
/>
|
93
|
+
</Col>
|
94
|
+
</Row>
|
95
|
+
</Grid>
|
96
|
+
</div>
|
97
|
+
</Col>
|
98
|
+
`;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default } from './Terminal';
|
@@ -0,0 +1,31 @@
|
|
1
|
+
.terminal {
|
2
|
+
height: 200px;
|
3
|
+
background-color: #222;
|
4
|
+
padding: 10px 0;
|
5
|
+
margin-bottom: 20px;
|
6
|
+
overflow-y: scroll;
|
7
|
+
overflow-x: hidden;
|
8
|
+
|
9
|
+
p {
|
10
|
+
font-family: monospace;
|
11
|
+
font-size: 16px;
|
12
|
+
color: #22da26;
|
13
|
+
|
14
|
+
&.terminal_error {
|
15
|
+
color: #f00;
|
16
|
+
}
|
17
|
+
}
|
18
|
+
|
19
|
+
&::-webkit-scrollbar {
|
20
|
+
width: 12px;
|
21
|
+
height: 12px;
|
22
|
+
background: #aaa;
|
23
|
+
}
|
24
|
+
|
25
|
+
&::-webkit-scrollbar-thumb {
|
26
|
+
background: #222;
|
27
|
+
border-radius: 6px;
|
28
|
+
border: 3px solid transparent;
|
29
|
+
background-clip: content-box;
|
30
|
+
}
|
31
|
+
}
|
@@ -0,0 +1,15 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import { IntlProvider } from 'react-intl';
|
3
|
+
import { translate as __ } from 'foremanReact/common/I18n';
|
4
|
+
import AccountList from './Components/AccountList';
|
5
|
+
|
6
|
+
const ForemanInventoryUpload = () => (
|
7
|
+
<IntlProvider locale={navigator.language}>
|
8
|
+
<div className="inventory-upload">
|
9
|
+
<h1>{__('Red Hat Inventory Uploads')}</h1>
|
10
|
+
<AccountList />
|
11
|
+
</div>
|
12
|
+
</IntlProvider>
|
13
|
+
);
|
14
|
+
|
15
|
+
export default ForemanInventoryUpload;
|