foreman_rh_cloud 1.0.4 → 2.0.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +8 -0
- data/app/controllers/foreman_inventory_upload/accounts_controller.rb +1 -0
- data/app/controllers/foreman_inventory_upload/uploads_controller.rb +14 -7
- data/app/models/setting/rh_cloud.rb +13 -0
- data/config/routes.rb +1 -0
- data/lib/foreman_inventory_upload.rb +12 -0
- data/lib/foreman_inventory_upload/async/async_helpers.rb +13 -0
- data/lib/foreman_inventory_upload/async/generate_all_reports_job.rb +8 -0
- data/lib/foreman_inventory_upload/async/shell_process.rb +3 -1
- data/lib/foreman_inventory_upload/async/upload_report_job.rb +1 -5
- data/lib/foreman_inventory_upload/generators/archived_report.rb +6 -3
- data/lib/foreman_inventory_upload/generators/fact_helpers.rb +13 -0
- data/lib/foreman_inventory_upload/generators/queries.rb +2 -0
- data/lib/foreman_inventory_upload/generators/slice.rb +31 -11
- data/lib/foreman_rh_cloud/engine.rb +5 -1
- data/lib/foreman_rh_cloud/version.rb +1 -1
- data/package.json +20 -100
- data/test/controllers/accounts_controller_test.rb +8 -3
- data/test/controllers/uploads_controller_test.rb +13 -0
- data/test/factories/inventory_upload_factories.rb +13 -13
- data/test/unit/archived_report_generator_test.rb +1 -0
- data/test/unit/fact_helpers_test.rb +29 -0
- data/test/unit/slice_generator_test.rb +112 -15
- data/test/unit/slice_generator_test.rb.orig +280 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/AccountList.fixtures.js +2 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/AccountList.stories.js +5 -14
- data/webpack/ForemanInventoryUpload/Components/AccountList/AccountListActions.js +2 -1
- data/webpack/ForemanInventoryUpload/Components/AccountList/AccountListReducer.js +8 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/AccountListSelectors.js +2 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/EmptyState/__tests__/EmptyState.test.js +1 -1
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/ErrorState/__tests__/ErrorState.test.js +1 -1
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/ListItem/__tests__/ListItem.test.js +1 -1
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/ListItemStatus/__tests__/ListItemStatus.test.js +1 -1
- data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/AccountList.test.js +1 -1
- data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/AccountListActions.test.js +1 -1
- data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/AccountListIntegration.test.js +1 -1
- data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/AccountListReducer.test.js +12 -1
- data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/AccountListSelectors.test.js +10 -2
- data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/__snapshots__/AccountListReducer.test.js.snap +10 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/__snapshots__/AccountListSelectors.test.js.snap +5 -2
- data/webpack/ForemanInventoryUpload/Components/AutoUploadSwitcher/AutoUploadSwitcher.fixtures.js +1 -0
- data/webpack/ForemanInventoryUpload/Components/AutoUploadSwitcher/AutoUploadSwitcher.js +32 -0
- data/webpack/ForemanInventoryUpload/Components/AutoUploadSwitcher/AutoUploadSwitcherActions.js +27 -0
- data/webpack/ForemanInventoryUpload/Components/AutoUploadSwitcher/AutoUploadSwitcherConstants.js +2 -0
- data/webpack/ForemanInventoryUpload/Components/AutoUploadSwitcher/__tests__/AutoUploadSwitcher.test.js +14 -0
- data/webpack/ForemanInventoryUpload/Components/AutoUploadSwitcher/__tests__/AutoUploadSwitcherActions.test.js +14 -0
- data/webpack/ForemanInventoryUpload/Components/AutoUploadSwitcher/__tests__/__snapshots__/AutoUploadSwitcher.test.js.snap +38 -0
- data/webpack/ForemanInventoryUpload/Components/AutoUploadSwitcher/__tests__/__snapshots__/AutoUploadSwitcherActions.test.js.snap +14 -0
- data/webpack/ForemanInventoryUpload/Components/AutoUploadSwitcher/autoUploadSwitcher.scss +3 -0
- data/webpack/ForemanInventoryUpload/Components/AutoUploadSwitcher/index.js +17 -0
- data/webpack/ForemanInventoryUpload/Components/Dashboard/Dashboard.fixtures.js +13 -9
- data/webpack/ForemanInventoryUpload/Components/Dashboard/Dashboard.stories.js +5 -15
- data/webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/Dashboard.test.js +1 -2
- data/webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/DashboardActions.test.js +15 -2
- data/webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/DashboardIntegration.test.js +3 -2
- data/webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/DashboardReducer.test.js +1 -1
- data/webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/DashboardSelectors.test.js +1 -1
- data/webpack/ForemanInventoryUpload/Components/FileDownload/__tests__/FileDownload.test.js +1 -1
- data/webpack/ForemanInventoryUpload/Components/FullScreenModal/__tests__/FullScreenModal.test.js +1 -1
- data/webpack/ForemanInventoryUpload/Components/NavContainer/NavContainer.fixtures.js +5 -2
- data/webpack/ForemanInventoryUpload/Components/NavContainer/__tests__/NavContainer.test.js +1 -2
- data/webpack/ForemanInventoryUpload/Components/NavContainer/__tests__/__snapshots__/NavContainer.test.js.snap +1 -1
- data/webpack/ForemanInventoryUpload/Components/PageHeader/PageHeader.js +21 -0
- data/webpack/ForemanInventoryUpload/Components/PageHeader/__tests__/PageHeader.test.js +13 -0
- data/webpack/ForemanInventoryUpload/Components/PageHeader/__tests__/__snapshots__/PageHeader.test.js.snap +33 -0
- data/webpack/ForemanInventoryUpload/Components/PageHeader/index.js +1 -0
- data/webpack/ForemanInventoryUpload/Components/ReportGenerate/__tests__/ReportGenerate.test.js +1 -1
- data/webpack/ForemanInventoryUpload/Components/ReportUpload/__tests__/ReportUpload.test.js +1 -1
- data/webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRun.fixtures.js +1 -0
- data/webpack/ForemanInventoryUpload/Components/ScheduledRun/ScheduledRun.js +4 -2
- data/webpack/ForemanInventoryUpload/Components/ScheduledRun/__tests__/ScheduledRun.test.js +1 -2
- data/webpack/ForemanInventoryUpload/Components/ScheduledRun/__tests__/__snapshots__/ScheduledRun.test.js.snap +0 -2
- data/webpack/ForemanInventoryUpload/Components/ScheduledRun/index.js +12 -1
- data/webpack/ForemanInventoryUpload/Components/StatusChart/__tests__/StatusChart.test.js +1 -1
- data/webpack/ForemanInventoryUpload/Components/TabBody/__tests__/TabBody.test.js +1 -1
- data/webpack/ForemanInventoryUpload/Components/TabBody/__tests__/__snapshots__/TabBody.test.js.snap +1 -1
- data/webpack/ForemanInventoryUpload/Components/TabContainer/__tests__/TabContainer.test.js +1 -1
- data/webpack/ForemanInventoryUpload/Components/TabFooter/__tests__/TabFooter.test.js +1 -1
- data/webpack/ForemanInventoryUpload/Components/TabHeader/__tests__/TabHeader.test.js +1 -1
- data/webpack/ForemanInventoryUpload/Components/Terminal/Terminal.js +1 -1
- data/webpack/ForemanInventoryUpload/Components/Terminal/__tests__/Terminal.test.js +1 -2
- data/webpack/ForemanInventoryUpload/ForemanInventoryUpload.js +5 -4
- data/webpack/ForemanInventoryUpload/ForemanInventoryUpload.test.js +1 -1
- data/webpack/ForemanInventoryUpload/__snapshots__/ForemanInventoryUpload.test.js.snap +6 -5
- metadata +22 -9
- data/webpack/stories/ForemanInventoryUploadReducers.js +0 -3
- data/webpack/stories/configureStore.js +0 -15
- data/webpack/stories/decorators/index.js +0 -1
- data/webpack/stories/decorators/withCardsDecorator.js +0 -14
- data/webpack/stories/index.js +0 -10
- data/webpack/stories/index.scss +0 -7
- data/webpack/test_setup.js +0 -6
@@ -1,19 +1,9 @@
|
|
1
1
|
import React from 'react';
|
2
|
-
import { storiesOf } from '@storybook/react';
|
3
|
-
import { withKnobs } from '@storybook/addon-knobs';
|
4
|
-
import { Provider } from 'react-redux';
|
5
|
-
import configureStore from '../../../stories/configureStore';
|
6
2
|
import Dashboard from './index';
|
7
|
-
import { generating, uploading } from './Dashboard.fixtures';
|
8
3
|
|
9
|
-
|
4
|
+
export default {
|
5
|
+
title: 'Dashboard',
|
6
|
+
component: Dashboard,
|
7
|
+
};
|
10
8
|
|
11
|
-
|
12
|
-
.addDecorator(withKnobs)
|
13
|
-
.add('Dashboard', () => (
|
14
|
-
<div style={{ margin: '20px' }}>
|
15
|
-
<Provider store={store}>
|
16
|
-
<Dashboard generating={generating} uploading={uploading} />
|
17
|
-
</Provider>
|
18
|
-
</div>
|
19
|
-
));
|
9
|
+
export const Basic = () => <Dashboard />;
|
@@ -1,6 +1,5 @@
|
|
1
1
|
import React from 'react';
|
2
|
-
import { shallow } from '
|
3
|
-
import { testComponentSnapshotsWithFixtures } from 'react-redux-test-utils';
|
2
|
+
import { shallow, testComponentSnapshotsWithFixtures } from '@theforeman/test';
|
4
3
|
import Dashboard from '../Dashboard';
|
5
4
|
import { props } from '../Dashboard.fixtures';
|
6
5
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { testActionSnapshotWithFixtures } from '
|
1
|
+
import { testActionSnapshotWithFixtures } from '@theforeman/test';
|
2
2
|
import API from 'foremanReact/API';
|
3
3
|
import {
|
4
4
|
startPolling,
|
@@ -36,4 +36,17 @@ const fixtures = {
|
|
36
36
|
runWithGetState({ activeTab: 'reports' }, toggleFullScreen, accountID),
|
37
37
|
};
|
38
38
|
|
39
|
-
describe('Dashboard actions', () =>
|
39
|
+
describe('Dashboard actions', () => {
|
40
|
+
const { location } = window;
|
41
|
+
|
42
|
+
beforeAll(() => {
|
43
|
+
delete window.location;
|
44
|
+
window.location = { href: jest.fn() };
|
45
|
+
});
|
46
|
+
|
47
|
+
afterAll(() => {
|
48
|
+
window.location = location;
|
49
|
+
});
|
50
|
+
|
51
|
+
return testActionSnapshotWithFixtures(fixtures);
|
52
|
+
});
|
data/webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/DashboardIntegration.test.js
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
import React from 'react';
|
2
|
-
import { IntegrationTestHelper } from '
|
2
|
+
import { IntegrationTestHelper } from '@theforeman/test';
|
3
3
|
|
4
|
-
import Dashboard
|
4
|
+
import Dashboard from '../Dashboard';
|
5
|
+
import reducers from '../../../ForemanInventoryUploadReducers';
|
5
6
|
import { accountID } from '../Dashboard.fixtures';
|
6
7
|
|
7
8
|
describe('Dashboard integration test', () => {
|
@@ -1,10 +1,13 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import { noop } from 'patternfly-react';
|
3
|
+
|
1
4
|
export const props = {
|
2
5
|
items: [
|
3
6
|
{
|
4
7
|
icon: 'some-icon',
|
5
8
|
name: 'some-name',
|
6
|
-
component:
|
7
|
-
onClick:
|
9
|
+
component: () => <p>test</p>,
|
10
|
+
onClick: noop,
|
8
11
|
},
|
9
12
|
],
|
10
13
|
};
|
@@ -1,6 +1,5 @@
|
|
1
1
|
import React from 'react';
|
2
|
-
import { mount } from '
|
3
|
-
import { testComponentSnapshotsWithFixtures } from 'react-redux-test-utils';
|
2
|
+
import { mount, testComponentSnapshotsWithFixtures } from '@theforeman/test';
|
4
3
|
import NavContainer from '../NavContainer';
|
5
4
|
import { props } from '../NavContainer.fixtures';
|
6
5
|
|
@@ -0,0 +1,21 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import { Grid } from 'patternfly-react';
|
3
|
+
import { translate as __ } from 'foremanReact/common/I18n';
|
4
|
+
import AutoUploadSwitcher from '../AutoUploadSwitcher';
|
5
|
+
|
6
|
+
const PageHeader = () => (
|
7
|
+
<React.Fragment>
|
8
|
+
<Grid.Row>
|
9
|
+
<Grid.Col xs={12}>
|
10
|
+
<h1>{__('Red Hat Inventory Uploads')}</h1>
|
11
|
+
</Grid.Col>
|
12
|
+
</Grid.Row>
|
13
|
+
<Grid.Row>
|
14
|
+
<Grid.Col xs={4} xsOffset={8}>
|
15
|
+
<AutoUploadSwitcher />
|
16
|
+
</Grid.Col>
|
17
|
+
</Grid.Row>
|
18
|
+
</React.Fragment>
|
19
|
+
);
|
20
|
+
|
21
|
+
export default PageHeader;
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { testComponentSnapshotsWithFixtures } from '@theforeman/test';
|
2
|
+
|
3
|
+
import PageHeader from '../PageHeader';
|
4
|
+
|
5
|
+
const fixtures = {
|
6
|
+
'render without Props': {},
|
7
|
+
/** fixtures, props for the component */
|
8
|
+
};
|
9
|
+
|
10
|
+
describe('PageHeader', () => {
|
11
|
+
describe('rendering', () =>
|
12
|
+
testComponentSnapshotsWithFixtures(PageHeader, fixtures));
|
13
|
+
});
|
@@ -0,0 +1,33 @@
|
|
1
|
+
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
2
|
+
|
3
|
+
exports[`PageHeader rendering render without Props 1`] = `
|
4
|
+
<Fragment>
|
5
|
+
<Row
|
6
|
+
bsClass="row"
|
7
|
+
componentClass="div"
|
8
|
+
>
|
9
|
+
<Col
|
10
|
+
bsClass="col"
|
11
|
+
componentClass="div"
|
12
|
+
xs={12}
|
13
|
+
>
|
14
|
+
<h1>
|
15
|
+
Red Hat Inventory Uploads
|
16
|
+
</h1>
|
17
|
+
</Col>
|
18
|
+
</Row>
|
19
|
+
<Row
|
20
|
+
bsClass="row"
|
21
|
+
componentClass="div"
|
22
|
+
>
|
23
|
+
<Col
|
24
|
+
bsClass="col"
|
25
|
+
componentClass="div"
|
26
|
+
xs={4}
|
27
|
+
xsOffset={8}
|
28
|
+
>
|
29
|
+
<Connect(AutoUploadSwitcher) />
|
30
|
+
</Col>
|
31
|
+
</Row>
|
32
|
+
</Fragment>
|
33
|
+
`;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default } from './PageHeader';
|
@@ -5,8 +5,8 @@ import { FormattedRelative } from 'react-intl';
|
|
5
5
|
import { translate as __ } from 'foremanReact/common/I18n';
|
6
6
|
import './scheduledRun.scss';
|
7
7
|
|
8
|
-
const ScheduledRun = ({ date }) =>
|
9
|
-
date ? (
|
8
|
+
const ScheduledRun = ({ date, autoUploadEnabled }) =>
|
9
|
+
autoUploadEnabled && date ? (
|
10
10
|
<Grid.Col sm={12} className="scheduled_run">
|
11
11
|
<p>
|
12
12
|
<Icon name="calendar" />
|
@@ -18,10 +18,12 @@ const ScheduledRun = ({ date }) =>
|
|
18
18
|
|
19
19
|
ScheduledRun.propTypes = {
|
20
20
|
date: PropTypes.string,
|
21
|
+
autoUploadEnabled: PropTypes.bool,
|
21
22
|
};
|
22
23
|
|
23
24
|
ScheduledRun.defaultProps = {
|
24
25
|
date: null,
|
26
|
+
autoUploadEnabled: true,
|
25
27
|
};
|
26
28
|
|
27
29
|
export default ScheduledRun;
|
@@ -1,10 +1,9 @@
|
|
1
|
-
import { testComponentSnapshotsWithFixtures } from '
|
1
|
+
import { testComponentSnapshotsWithFixtures } from '@theforeman/test';
|
2
2
|
|
3
3
|
import ScheduledRun from '../ScheduledRun';
|
4
4
|
import { props } from '../ScheduledRun.fixtures';
|
5
5
|
|
6
6
|
const fixtures = {
|
7
|
-
'render without Props': {},
|
8
7
|
'render with Props': props,
|
9
8
|
};
|
10
9
|
|
@@ -1 +1,12 @@
|
|
1
|
-
|
1
|
+
import { connect } from 'react-redux';
|
2
|
+
|
3
|
+
import ScheduledRun from './ScheduledRun';
|
4
|
+
import { selectAutoUploadEnabled } from '../AccountList/AccountListSelectors';
|
5
|
+
|
6
|
+
// map state to props
|
7
|
+
const mapStateToProps = state => ({
|
8
|
+
autoUploadEnabled: selectAutoUploadEnabled(state),
|
9
|
+
});
|
10
|
+
|
11
|
+
// export connected component
|
12
|
+
export default connect(mapStateToProps)(ScheduledRun);
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import React from 'react';
|
2
2
|
import PropTypes from 'prop-types';
|
3
3
|
import { Grid, Spinner } from 'patternfly-react';
|
4
|
-
import isEqual from 'lodash
|
4
|
+
import { isEqual } from 'lodash';
|
5
5
|
import './terminal.scss';
|
6
6
|
import { isTerminalScrolledDown } from './TerminalHelper';
|
7
7
|
|
@@ -1,6 +1,5 @@
|
|
1
1
|
import React from 'react';
|
2
|
-
import { testComponentSnapshotsWithFixtures } from '
|
3
|
-
import { mount } from 'enzyme';
|
2
|
+
import { mount, testComponentSnapshotsWithFixtures } from '@theforeman/test';
|
4
3
|
import Terminal from '../Terminal';
|
5
4
|
import { props, logs } from '../Terminal.fixtures';
|
6
5
|
|
@@ -1,14 +1,15 @@
|
|
1
1
|
import React from 'react';
|
2
2
|
import { IntlProvider } from 'react-intl';
|
3
|
-
import {
|
3
|
+
import { Grid } from 'patternfly-react';
|
4
4
|
import AccountList from './Components/AccountList';
|
5
|
+
import PageHeader from './Components/PageHeader';
|
5
6
|
|
6
7
|
const ForemanInventoryUpload = () => (
|
7
8
|
<IntlProvider locale={navigator.language}>
|
8
|
-
<
|
9
|
-
<
|
9
|
+
<Grid fluid className="inventory-upload">
|
10
|
+
<PageHeader />
|
10
11
|
<AccountList />
|
11
|
-
</
|
12
|
+
</Grid>
|
12
13
|
</IntlProvider>
|
13
14
|
);
|
14
15
|
|
@@ -4,13 +4,14 @@ exports[`ForemanInventoryUpload render without Props 1`] = `
|
|
4
4
|
<IntlProvider
|
5
5
|
locale="en-US"
|
6
6
|
>
|
7
|
-
<
|
7
|
+
<Grid
|
8
|
+
bsClass="container"
|
8
9
|
className="inventory-upload"
|
10
|
+
componentClass="div"
|
11
|
+
fluid={true}
|
9
12
|
>
|
10
|
-
<
|
11
|
-
Red Hat Inventory Uploads
|
12
|
-
</h1>
|
13
|
+
<PageHeader />
|
13
14
|
<Connect(AccountList) />
|
14
|
-
</
|
15
|
+
</Grid>
|
15
16
|
</IntlProvider>
|
16
17
|
`;
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: foreman_rh_cloud
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Foreman Red Hat Cloud team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-04-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: katello
|
@@ -109,9 +109,11 @@ files:
|
|
109
109
|
- app/controllers/foreman_inventory_upload/reports_controller.rb
|
110
110
|
- app/controllers/foreman_inventory_upload/uploads_controller.rb
|
111
111
|
- app/helpers/foreman_inventory_upload_helper.rb
|
112
|
+
- app/models/setting/rh_cloud.rb
|
112
113
|
- app/views/foreman_inventory_upload/layouts/react.html.erb
|
113
114
|
- config/routes.rb
|
114
115
|
- lib/foreman_inventory_upload.rb
|
116
|
+
- lib/foreman_inventory_upload/async/async_helpers.rb
|
115
117
|
- lib/foreman_inventory_upload/async/generate_all_reports_job.rb
|
116
118
|
- lib/foreman_inventory_upload/async/generate_report_job.rb
|
117
119
|
- lib/foreman_inventory_upload/async/progress_output.rb
|
@@ -141,9 +143,11 @@ files:
|
|
141
143
|
- test/factories/inventory_upload_factories.rb
|
142
144
|
- test/test_plugin_helper.rb
|
143
145
|
- test/unit/archived_report_generator_test.rb
|
146
|
+
- test/unit/fact_helpers_test.rb
|
144
147
|
- test/unit/metadata_generator_test.rb
|
145
148
|
- test/unit/shell_process_job_test.rb
|
146
149
|
- test/unit/slice_generator_test.rb
|
150
|
+
- test/unit/slice_generator_test.rb.orig
|
147
151
|
- webpack/ForemanInventoryUpload/Components/AccountList/AccountList.fixtures.js
|
148
152
|
- webpack/ForemanInventoryUpload/Components/AccountList/AccountList.js
|
149
153
|
- webpack/ForemanInventoryUpload/Components/AccountList/AccountList.stories.js
|
@@ -191,6 +195,16 @@ files:
|
|
191
195
|
- webpack/ForemanInventoryUpload/Components/AccountList/__tests__/__snapshots__/AccountListSelectors.test.js.snap
|
192
196
|
- webpack/ForemanInventoryUpload/Components/AccountList/accountList.scss
|
193
197
|
- webpack/ForemanInventoryUpload/Components/AccountList/index.js
|
198
|
+
- webpack/ForemanInventoryUpload/Components/AutoUploadSwitcher/AutoUploadSwitcher.fixtures.js
|
199
|
+
- webpack/ForemanInventoryUpload/Components/AutoUploadSwitcher/AutoUploadSwitcher.js
|
200
|
+
- webpack/ForemanInventoryUpload/Components/AutoUploadSwitcher/AutoUploadSwitcherActions.js
|
201
|
+
- webpack/ForemanInventoryUpload/Components/AutoUploadSwitcher/AutoUploadSwitcherConstants.js
|
202
|
+
- webpack/ForemanInventoryUpload/Components/AutoUploadSwitcher/__tests__/AutoUploadSwitcher.test.js
|
203
|
+
- webpack/ForemanInventoryUpload/Components/AutoUploadSwitcher/__tests__/AutoUploadSwitcherActions.test.js
|
204
|
+
- webpack/ForemanInventoryUpload/Components/AutoUploadSwitcher/__tests__/__snapshots__/AutoUploadSwitcher.test.js.snap
|
205
|
+
- webpack/ForemanInventoryUpload/Components/AutoUploadSwitcher/__tests__/__snapshots__/AutoUploadSwitcherActions.test.js.snap
|
206
|
+
- webpack/ForemanInventoryUpload/Components/AutoUploadSwitcher/autoUploadSwitcher.scss
|
207
|
+
- webpack/ForemanInventoryUpload/Components/AutoUploadSwitcher/index.js
|
194
208
|
- webpack/ForemanInventoryUpload/Components/Dashboard/Dashboard.fixtures.js
|
195
209
|
- webpack/ForemanInventoryUpload/Components/Dashboard/Dashboard.js
|
196
210
|
- webpack/ForemanInventoryUpload/Components/Dashboard/Dashboard.stories.js
|
@@ -231,6 +245,10 @@ files:
|
|
231
245
|
- webpack/ForemanInventoryUpload/Components/NavContainer/__tests__/__snapshots__/NavContainer.test.js.snap
|
232
246
|
- webpack/ForemanInventoryUpload/Components/NavContainer/index.js
|
233
247
|
- webpack/ForemanInventoryUpload/Components/NavContainer/navContainer.scss
|
248
|
+
- webpack/ForemanInventoryUpload/Components/PageHeader/PageHeader.js
|
249
|
+
- webpack/ForemanInventoryUpload/Components/PageHeader/__tests__/PageHeader.test.js
|
250
|
+
- webpack/ForemanInventoryUpload/Components/PageHeader/__tests__/__snapshots__/PageHeader.test.js.snap
|
251
|
+
- webpack/ForemanInventoryUpload/Components/PageHeader/index.js
|
234
252
|
- webpack/ForemanInventoryUpload/Components/ReportGenerate/ReportGenerate.fixtures.js
|
235
253
|
- webpack/ForemanInventoryUpload/Components/ReportGenerate/ReportGenerate.js
|
236
254
|
- webpack/ForemanInventoryUpload/Components/ReportGenerate/ReportGenerateHelper.js
|
@@ -304,13 +322,6 @@ files:
|
|
304
322
|
- webpack/__mocks__/foremanReact/common/I18n.js
|
305
323
|
- webpack/__mocks__/foremanReact/common/helpers.js
|
306
324
|
- webpack/index.js
|
307
|
-
- webpack/stories/ForemanInventoryUploadReducers.js
|
308
|
-
- webpack/stories/configureStore.js
|
309
|
-
- webpack/stories/decorators/index.js
|
310
|
-
- webpack/stories/decorators/withCardsDecorator.js
|
311
|
-
- webpack/stories/index.js
|
312
|
-
- webpack/stories/index.scss
|
313
|
-
- webpack/test_setup.js
|
314
325
|
homepage: https://github.com/theforeman/foreman_rh_cloud
|
315
326
|
licenses:
|
316
327
|
- GPL-3.0
|
@@ -342,5 +353,7 @@ test_files:
|
|
342
353
|
- test/factories/inventory_upload_factories.rb
|
343
354
|
- test/unit/shell_process_job_test.rb
|
344
355
|
- test/unit/metadata_generator_test.rb
|
356
|
+
- test/unit/slice_generator_test.rb.orig
|
357
|
+
- test/unit/fact_helpers_test.rb
|
345
358
|
- test/unit/archived_report_generator_test.rb
|
346
359
|
- test/unit/slice_generator_test.rb
|