foreman_rh_cloud 0.9.4.1 → 0.9.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/controllers/foreman_inventory_upload/accounts_controller.rb +4 -6
- data/app/controllers/foreman_inventory_upload/uploads_controller.rb +33 -7
- data/app/controllers/foreman_rh_cloud/react_controller.rb +11 -0
- data/app/controllers/insights_cloud/tasks_controller.rb +8 -0
- data/app/helpers/foreman_inventory_upload_host_helper.rb +11 -0
- data/app/models/insights_facet.rb +3 -0
- data/app/models/insights_hit.rb +6 -0
- data/app/models/setting/rh_cloud.rb +20 -0
- data/app/overrides/hosts_list.rb +13 -0
- data/app/views/foreman_rh_cloud/react/insights_cloud.html.erb +6 -0
- data/app/views/foreman_rh_cloud/react/inventory_upload.html.erb +1 -0
- data/app/views/{foreman_inventory_upload/layouts/react.html.erb → layouts/foreman_rh_cloud/application.html.erb} +2 -2
- data/config/routes.rb +12 -1
- data/db/migrate/20191215104806_create_insights_hits.foreman_inventory_upload.rb +14 -0
- data/db/migrate/20191216062008_create_insights_facets.foreman_inventory_upload.rb +7 -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/generators/archived_report.rb +6 -3
- data/lib/foreman_inventory_upload/generators/fact_helpers.rb +56 -0
- data/lib/foreman_inventory_upload/generators/json_stream.rb +10 -0
- data/lib/foreman_inventory_upload/generators/queries.rb +7 -0
- data/lib/foreman_inventory_upload/generators/slice.rb +47 -21
- data/lib/foreman_inventory_upload/notifications/manifest_import_success_notification_override.rb +19 -0
- data/lib/foreman_rh_cloud/engine.rb +31 -6
- data/lib/foreman_rh_cloud/version.rb +1 -1
- data/lib/insights_cloud.rb +15 -0
- data/lib/insights_cloud/async/insights_full_sync.rb +96 -0
- data/test/controllers/accounts_controller_test.rb +8 -3
- data/test/controllers/uploads_controller_test.rb +13 -0
- data/test/jobs/insights_full_sync_test.rb +92 -0
- 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 +274 -12
- data/webpack/ForemanInventoryUpload/Components/AccountList/AccountList.fixtures.js +14 -2
- data/webpack/ForemanInventoryUpload/Components/AccountList/AccountList.js +13 -10
- data/webpack/ForemanInventoryUpload/Components/AccountList/AccountListActions.js +6 -3
- data/webpack/ForemanInventoryUpload/Components/AccountList/AccountListHelper.js +10 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/AccountListReducer.js +16 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/AccountListSelectors.js +10 -1
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/EmptyResults/EmptyResults.js +15 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/EmptyResults/__tests__/EmptyResults.test.js +13 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/EmptyResults/__tests__/__snapshots__/EmptyResults.test.js.snap +18 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/EmptyResults/emptyResults.scss +7 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/EmptyResults/index.js +1 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/ListItem/ListItem.js +1 -4
- data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/AccountList.test.js +1 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/AccountListActions.test.js +8 -1
- data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/AccountListHelper.test.js +12 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/AccountListIntegration.test.js +1 -1
- data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/AccountListReducer.test.js +22 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/AccountListSelectors.test.js +20 -8
- data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/__snapshots__/AccountList.test.js.snap +2 -3
- data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/__snapshots__/AccountListActions.test.js.snap +20 -2
- data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/__snapshots__/AccountListReducer.test.js.snap +20 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/__snapshots__/AccountListSelectors.test.js.snap +8 -2
- data/webpack/ForemanInventoryUpload/Components/AccountList/index.js +2 -0
- 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 +30 -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/DashboardActions.js +4 -3
- data/webpack/ForemanInventoryUpload/Components/Dashboard/DashboardSelectors.js +1 -1
- data/webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/DashboardActions.test.js +2 -3
- data/webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/DashboardIntegration.test.js +2 -1
- data/webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/DashboardSelectors.test.js +3 -2
- data/webpack/ForemanInventoryUpload/Components/HostObfuscationSwitcher/HostObfuscationSwitcher.fixtures.js +1 -0
- data/webpack/ForemanInventoryUpload/Components/HostObfuscationSwitcher/HostObfuscationSwitcher.js +29 -0
- data/webpack/ForemanInventoryUpload/Components/HostObfuscationSwitcher/HostObfuscationSwitcherActions.js +30 -0
- data/webpack/ForemanInventoryUpload/Components/HostObfuscationSwitcher/HostObfuscationSwitcherConstants.js +3 -0
- data/webpack/ForemanInventoryUpload/Components/HostObfuscationSwitcher/__tests__/HostObfuscationSwitcher.test.js +14 -0
- data/webpack/ForemanInventoryUpload/Components/HostObfuscationSwitcher/__tests__/HostObfuscationSwitcherActions.test.js +14 -0
- data/webpack/ForemanInventoryUpload/Components/HostObfuscationSwitcher/__tests__/__snapshots__/HostObfuscationSwitcher.test.js.snap +38 -0
- data/webpack/ForemanInventoryUpload/Components/HostObfuscationSwitcher/__tests__/__snapshots__/HostObfuscationSwitcherActions.test.js.snap +14 -0
- data/webpack/ForemanInventoryUpload/Components/HostObfuscationSwitcher/hostObfuscationSwitcher.scss +0 -0
- data/webpack/ForemanInventoryUpload/Components/HostObfuscationSwitcher/index.js +20 -0
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/Components/ClearButton/ClearButton.js +26 -0
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/Components/ClearButton/index.js +1 -0
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/InventoryFilter.fixtures.js +2 -0
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/InventoryFilter.js +39 -0
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/InventoryFilterActions.js +16 -0
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/InventoryFilterConstants.js +3 -0
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/InventoryFilterReducer.js +36 -0
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/InventoryFilterSelectors.js +7 -0
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/InventoryFilter.test.js +14 -0
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/InventoryFilterActions.test.js +14 -0
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/InventoryFilterReducer.test.js +35 -0
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/InventoryFilterSelectors.test.js +21 -0
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/__snapshots__/InventoryFilter.test.js.snap +25 -0
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/__snapshots__/InventoryFilterActions.test.js.snap +17 -0
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/__snapshots__/InventoryFilterReducer.test.js.snap +25 -0
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/__snapshots__/InventoryFilterSelectors.test.js.snap +9 -0
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/__snapshots__/integration.test.js.snap +31 -0
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/integration.test.js +18 -0
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/index.js +17 -0
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/inventoryFilter.scss +28 -0
- data/webpack/ForemanInventoryUpload/Components/InventorySettings/InventorySettings.js +15 -0
- data/webpack/ForemanInventoryUpload/Components/InventorySettings/__tests__/InventorySettings.test.js +13 -0
- data/webpack/ForemanInventoryUpload/Components/InventorySettings/__tests__/__snapshots__/InventorySettings.test.js.snap +13 -0
- data/webpack/ForemanInventoryUpload/Components/InventorySettings/index.js +1 -0
- data/webpack/ForemanInventoryUpload/Components/InventorySettings/inventorySettings.scss +15 -0
- data/webpack/ForemanInventoryUpload/Components/PageHeader/PageHeader.js +40 -0
- data/webpack/ForemanInventoryUpload/Components/PageHeader/__tests__/PageHeader.test.js +13 -0
- data/webpack/ForemanInventoryUpload/Components/PageHeader/__tests__/__snapshots__/PageHeader.test.js.snap +61 -0
- data/webpack/ForemanInventoryUpload/Components/PageHeader/components/DocsButton/DocsButton.js +17 -0
- data/webpack/ForemanInventoryUpload/Components/PageHeader/components/DocsButton/__tests__/DocsButton.test.js +13 -0
- data/webpack/ForemanInventoryUpload/Components/PageHeader/components/DocsButton/__tests__/__snapshots__/DocsButton.test.js.snap +20 -0
- data/webpack/ForemanInventoryUpload/Components/PageHeader/components/DocsButton/index.js +1 -0
- data/webpack/ForemanInventoryUpload/Components/PageHeader/components/HistoryButton/HistoryButton.js +18 -0
- data/webpack/ForemanInventoryUpload/Components/PageHeader/components/HistoryButton/__tests__/HistoryButton.test.js +14 -0
- data/webpack/ForemanInventoryUpload/Components/PageHeader/components/HistoryButton/__tests__/__snapshots__/HistoryButton.test.js.snap +21 -0
- data/webpack/ForemanInventoryUpload/Components/PageHeader/components/HistoryButton/index.js +1 -0
- data/webpack/ForemanInventoryUpload/Components/PageHeader/components/PageDescription/PageDescription.js +24 -0
- data/webpack/ForemanInventoryUpload/Components/PageHeader/components/PageDescription/__tests__/PageDescription.test.js +11 -0
- data/webpack/ForemanInventoryUpload/Components/PageHeader/components/PageDescription/__tests__/__snapshots__/PageDescription.test.js.snap +17 -0
- data/webpack/ForemanInventoryUpload/Components/PageHeader/components/PageDescription/index.js +1 -0
- data/webpack/ForemanInventoryUpload/Components/PageHeader/components/ToolbarButtons/ToolbarButtons.js +13 -0
- data/webpack/ForemanInventoryUpload/Components/PageHeader/components/ToolbarButtons/__tests__/ToolbarButtons.test.js +12 -0
- data/webpack/ForemanInventoryUpload/Components/PageHeader/components/ToolbarButtons/__tests__/__snapshots__/ToolbarButtons.test.js.snap +10 -0
- data/webpack/ForemanInventoryUpload/Components/PageHeader/components/ToolbarButtons/index.js +1 -0
- data/webpack/ForemanInventoryUpload/Components/PageHeader/components/ToolbarButtons/toolbarButtons.scss +7 -0
- data/webpack/ForemanInventoryUpload/Components/PageHeader/index.js +1 -0
- data/webpack/ForemanInventoryUpload/Components/PageHeader/pageHeader.scss +3 -0
- 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 +0 -1
- 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/TabBody/__tests__/__snapshots__/TabBody.test.js.snap +1 -1
- data/webpack/ForemanInventoryUpload/ForemanInventoryConstants.js +7 -0
- data/webpack/ForemanInventoryUpload/ForemanInventoryHelpers.js +12 -0
- data/webpack/ForemanInventoryUpload/ForemanInventoryUpload.js +18 -9
- data/webpack/ForemanInventoryUpload/ForemanInventoryUploadReducers.js +4 -4
- data/webpack/ForemanInventoryUpload/SubscriptionsPageExtension/SubscriptionsPageExtensionActions.js +34 -0
- data/webpack/ForemanInventoryUpload/__tests__/ForemanInventoryHelpers.test.js +12 -0
- data/webpack/ForemanInventoryUpload/{ForemanInventoryUpload.test.js → __tests__/ForemanInventoryUpload.test.js} +1 -1
- data/webpack/ForemanInventoryUpload/__tests__/__snapshots__/ForemanInventoryHelpers.test.js.snap +5 -0
- data/webpack/ForemanInventoryUpload/{__snapshots__ → __tests__/__snapshots__}/ForemanInventoryUpload.test.js.snap +6 -5
- data/webpack/ForemanRhCloudHelpers.js +6 -0
- data/webpack/ForemanRhCloudReducers.js +10 -0
- data/webpack/ForemanRhCloudSelectors.js +5 -0
- data/webpack/ForemanRhCloudTestHelpers.js +6 -0
- data/webpack/InsightsCloudSync/InsightsCloudSync.js +55 -0
- data/webpack/InsightsCloudSync/InsightsCloudSync.test.js +16 -0
- data/webpack/InsightsCloudSync/InsightsCloudSyncActions.js +23 -0
- data/webpack/InsightsCloudSync/InsightsCloudSyncConstants.js +6 -0
- data/webpack/InsightsCloudSync/InsightsCloudSyncHelpers.js +3 -0
- data/webpack/InsightsCloudSync/InsightsCloudSyncReducers.js +3 -0
- data/webpack/InsightsCloudSync/__snapshots__/InsightsCloudSync.test.js.snap +60 -0
- data/webpack/InsightsCloudSync/__tests__/InsightsCloudSyncHelpers.test.js +11 -0
- data/webpack/InsightsCloudSync/__tests__/__snapshots__/InsightsCloudSyncHelpers.test.js.snap +3 -0
- data/webpack/InsightsCloudSync/index.js +17 -0
- data/webpack/__mocks__/foremanReact/components/Layout/LayoutConstants.js +1 -0
- data/webpack/__tests__/ForemanRhCloudHelpers.test.js +11 -0
- data/webpack/__tests__/ForemanRhCloudSelectors.test.js +19 -0
- data/webpack/__tests__/ForemanRhCloudTestHelpers.test.js +10 -0
- data/webpack/__tests__/__snapshots__/ForemanRhCloudHelpers.test.js.snap +3 -0
- data/webpack/__tests__/__snapshots__/ForemanRhCloudSelectors.test.js.snap +24 -0
- data/webpack/__tests__/__snapshots__/ForemanRhCloudTestHelpers.test.js.snap +14 -0
- data/webpack/index.js +8 -1
- data/webpack/subscriptions_extension_index.js +8 -0
- metadata +124 -7
- data/app/controllers/foreman_inventory_upload/react_controller.rb +0 -7
- data/webpack/ForemanInventoryUpload/ForemanInventoryUploadSelectors.js +0 -4
@@ -0,0 +1,11 @@
|
|
1
|
+
import { testSelectorsSnapshotWithFixtures } from 'react-redux-test-utils';
|
2
|
+
import { insightsCloudUrl } from '../InsightsCloudSyncHelpers';
|
3
|
+
|
4
|
+
global.URL_PREFIX = '';
|
5
|
+
|
6
|
+
const fixtures = {
|
7
|
+
'should return insights cloud Url': () => insightsCloudUrl('test_path'),
|
8
|
+
};
|
9
|
+
|
10
|
+
describe('InsightsCloudSync helpers', () =>
|
11
|
+
testSelectorsSnapshotWithFixtures(fixtures));
|
@@ -0,0 +1,17 @@
|
|
1
|
+
import { bindActionCreators } from 'redux';
|
2
|
+
import { connect } from 'react-redux';
|
3
|
+
|
4
|
+
import * as actions from './InsightsCloudSyncActions';
|
5
|
+
import InsightsCloudSync from './InsightsCloudSync';
|
6
|
+
|
7
|
+
// map state to props
|
8
|
+
const mapStateToProps = state => ({});
|
9
|
+
|
10
|
+
// map action dispatchers to props
|
11
|
+
const mapDispatchToProps = dispatch => bindActionCreators(actions, dispatch);
|
12
|
+
|
13
|
+
// export reducers
|
14
|
+
export const reducers = {};
|
15
|
+
|
16
|
+
// export connected component
|
17
|
+
export default connect(mapStateToProps, mapDispatchToProps)(InsightsCloudSync);
|
@@ -0,0 +1 @@
|
|
1
|
+
export const LAYOUT_CHANGE_ORG = 'LAYOUT_CHANGE_ORG';
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import { testSelectorsSnapshotWithFixtures } from 'react-redux-test-utils';
|
2
|
+
import { foremanUrl } from '../ForemanRhCloudHelpers';
|
3
|
+
|
4
|
+
global.URL_PREFIX = 'MY_TEST_URL_PREFIX.example.com';
|
5
|
+
|
6
|
+
const fixtures = {
|
7
|
+
'should return foreman Url': () => foremanUrl('/test_path'),
|
8
|
+
};
|
9
|
+
|
10
|
+
describe('ForemanRhCloud helpers', () =>
|
11
|
+
testSelectorsSnapshotWithFixtures(fixtures));
|
@@ -0,0 +1,19 @@
|
|
1
|
+
import { testSelectorsSnapshotWithFixtures } from 'react-redux-test-utils';
|
2
|
+
import { rhCloudStateWrapper } from '../ForemanRhCloudTestHelpers';
|
3
|
+
import {
|
4
|
+
selectForemanRhCloud,
|
5
|
+
selectForemanInventoryUpload,
|
6
|
+
selectInsightsCloudSync,
|
7
|
+
} from '../ForemanRhCloudSelectors';
|
8
|
+
|
9
|
+
const state = rhCloudStateWrapper({ inventoryReducersNamespaces: {} });
|
10
|
+
|
11
|
+
const fixtures = {
|
12
|
+
'should return ForemanRhCloud': () => selectForemanRhCloud(state),
|
13
|
+
'should return ForemanInventoryUpload': () =>
|
14
|
+
selectForemanInventoryUpload(state),
|
15
|
+
'should return InsightsCloudSync': () => selectInsightsCloudSync(state),
|
16
|
+
};
|
17
|
+
|
18
|
+
describe('ForemanRhCloud selectors', () =>
|
19
|
+
testSelectorsSnapshotWithFixtures(fixtures));
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { testSelectorsSnapshotWithFixtures } from 'react-redux-test-utils';
|
2
|
+
import { rhCloudStateWrapper } from '../ForemanRhCloudTestHelpers';
|
3
|
+
|
4
|
+
const fixtures = {
|
5
|
+
'should return inventory wrapper': () =>
|
6
|
+
rhCloudStateWrapper({ inventoryChildren: null }),
|
7
|
+
};
|
8
|
+
|
9
|
+
describe('ForemanRhCloud helpers', () =>
|
10
|
+
testSelectorsSnapshotWithFixtures(fixtures));
|
@@ -0,0 +1,24 @@
|
|
1
|
+
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
2
|
+
|
3
|
+
exports[`ForemanRhCloud selectors should return InsightsCloudSync 1`] = `
|
4
|
+
Object {
|
5
|
+
"inventoryReducersNamespaces": Object {},
|
6
|
+
}
|
7
|
+
`;
|
8
|
+
|
9
|
+
exports[`ForemanRhCloud selectors should return ForemanInventoryUpload 1`] = `
|
10
|
+
Object {
|
11
|
+
"inventoryReducersNamespaces": Object {},
|
12
|
+
}
|
13
|
+
`;
|
14
|
+
|
15
|
+
exports[`ForemanRhCloud selectors should return ForemanRhCloud 1`] = `
|
16
|
+
Object {
|
17
|
+
"InsightsCloudSync": Object {
|
18
|
+
"inventoryReducersNamespaces": Object {},
|
19
|
+
},
|
20
|
+
"inventoryUpload": Object {
|
21
|
+
"inventoryReducersNamespaces": Object {},
|
22
|
+
},
|
23
|
+
}
|
24
|
+
`;
|
@@ -0,0 +1,14 @@
|
|
1
|
+
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
2
|
+
|
3
|
+
exports[`ForemanRhCloud helpers should return inventory wrapper 1`] = `
|
4
|
+
Object {
|
5
|
+
"ForemanRhCloud": Object {
|
6
|
+
"InsightsCloudSync": Object {
|
7
|
+
"inventoryChildren": null,
|
8
|
+
},
|
9
|
+
"inventoryUpload": Object {
|
10
|
+
"inventoryChildren": null,
|
11
|
+
},
|
12
|
+
},
|
13
|
+
}
|
14
|
+
`;
|
data/webpack/index.js
CHANGED
@@ -3,8 +3,9 @@
|
|
3
3
|
/* eslint-disable import/extensions */
|
4
4
|
import componentRegistry from 'foremanReact/components/componentRegistry';
|
5
5
|
import { registerReducer } from 'foremanReact/common/MountingService';
|
6
|
-
import reducers from './
|
6
|
+
import reducers from './ForemanRhCloudReducers';
|
7
7
|
import ForemanInventoryUpload from './ForemanInventoryUpload';
|
8
|
+
import InsightsCloudSync from './InsightsCloudSync';
|
8
9
|
|
9
10
|
// register reducers
|
10
11
|
Object.entries(reducers).forEach(([key, reducer]) =>
|
@@ -16,3 +17,9 @@ componentRegistry.register({
|
|
16
17
|
name: 'ForemanInventoryUpload',
|
17
18
|
type: ForemanInventoryUpload,
|
18
19
|
});
|
20
|
+
|
21
|
+
// register components
|
22
|
+
componentRegistry.register({
|
23
|
+
name: 'InsightsCloudSync',
|
24
|
+
type: InsightsCloudSync,
|
25
|
+
});
|
@@ -0,0 +1,8 @@
|
|
1
|
+
import { subscriptionCountListener } from './ForemanInventoryUpload/SubscriptionsPageExtension/SubscriptionsPageExtensionActions';
|
2
|
+
|
3
|
+
if (window.location.pathname === '/subscriptions') {
|
4
|
+
window.tfm.store.observeStore(
|
5
|
+
'katello.subscriptions.itemCount',
|
6
|
+
subscriptionCountListener
|
7
|
+
);
|
8
|
+
}
|
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: 0.9.
|
4
|
+
version: 0.9.9
|
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-07-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: katello
|
@@ -77,13 +77,24 @@ files:
|
|
77
77
|
- README.md
|
78
78
|
- Rakefile
|
79
79
|
- app/controllers/foreman_inventory_upload/accounts_controller.rb
|
80
|
-
- app/controllers/foreman_inventory_upload/react_controller.rb
|
81
80
|
- app/controllers/foreman_inventory_upload/reports_controller.rb
|
82
81
|
- app/controllers/foreman_inventory_upload/uploads_controller.rb
|
82
|
+
- app/controllers/foreman_rh_cloud/react_controller.rb
|
83
|
+
- app/controllers/insights_cloud/tasks_controller.rb
|
83
84
|
- app/helpers/foreman_inventory_upload_helper.rb
|
84
|
-
- app/
|
85
|
+
- app/helpers/foreman_inventory_upload_host_helper.rb
|
86
|
+
- app/models/insights_facet.rb
|
87
|
+
- app/models/insights_hit.rb
|
88
|
+
- app/models/setting/rh_cloud.rb
|
89
|
+
- app/overrides/hosts_list.rb
|
90
|
+
- app/views/foreman_rh_cloud/react/insights_cloud.html.erb
|
91
|
+
- app/views/foreman_rh_cloud/react/inventory_upload.html.erb
|
92
|
+
- app/views/layouts/foreman_rh_cloud/application.html.erb
|
85
93
|
- config/routes.rb
|
94
|
+
- db/migrate/20191215104806_create_insights_hits.foreman_inventory_upload.rb
|
95
|
+
- db/migrate/20191216062008_create_insights_facets.foreman_inventory_upload.rb
|
86
96
|
- lib/foreman_inventory_upload.rb
|
97
|
+
- lib/foreman_inventory_upload/async/async_helpers.rb
|
87
98
|
- lib/foreman_inventory_upload/async/generate_all_reports_job.rb
|
88
99
|
- lib/foreman_inventory_upload/async/generate_report_job.rb
|
89
100
|
- lib/foreman_inventory_upload/async/progress_output.rb
|
@@ -96,10 +107,13 @@ files:
|
|
96
107
|
- lib/foreman_inventory_upload/generators/metadata.rb
|
97
108
|
- lib/foreman_inventory_upload/generators/queries.rb
|
98
109
|
- lib/foreman_inventory_upload/generators/slice.rb
|
110
|
+
- lib/foreman_inventory_upload/notifications/manifest_import_success_notification_override.rb
|
99
111
|
- lib/foreman_inventory_upload/scripts/uploader.sh.erb
|
100
112
|
- lib/foreman_rh_cloud.rb
|
101
113
|
- lib/foreman_rh_cloud/engine.rb
|
102
114
|
- lib/foreman_rh_cloud/version.rb
|
115
|
+
- lib/insights_cloud.rb
|
116
|
+
- lib/insights_cloud/async/insights_full_sync.rb
|
103
117
|
- lib/tasks/foreman_rh_cloud_tasks.rake
|
104
118
|
- lib/tasks/generator.rake
|
105
119
|
- locale/Makefile
|
@@ -111,8 +125,10 @@ files:
|
|
111
125
|
- test/controllers/reports_controller_test.rb
|
112
126
|
- test/controllers/uploads_controller_test.rb
|
113
127
|
- test/factories/inventory_upload_factories.rb
|
128
|
+
- test/jobs/insights_full_sync_test.rb
|
114
129
|
- test/test_plugin_helper.rb
|
115
130
|
- test/unit/archived_report_generator_test.rb
|
131
|
+
- test/unit/fact_helpers_test.rb
|
116
132
|
- test/unit/metadata_generator_test.rb
|
117
133
|
- test/unit/shell_process_job_test.rb
|
118
134
|
- test/unit/slice_generator_test.rb
|
@@ -124,6 +140,11 @@ files:
|
|
124
140
|
- webpack/ForemanInventoryUpload/Components/AccountList/AccountListHelper.js
|
125
141
|
- webpack/ForemanInventoryUpload/Components/AccountList/AccountListReducer.js
|
126
142
|
- webpack/ForemanInventoryUpload/Components/AccountList/AccountListSelectors.js
|
143
|
+
- webpack/ForemanInventoryUpload/Components/AccountList/Components/EmptyResults/EmptyResults.js
|
144
|
+
- webpack/ForemanInventoryUpload/Components/AccountList/Components/EmptyResults/__tests__/EmptyResults.test.js
|
145
|
+
- webpack/ForemanInventoryUpload/Components/AccountList/Components/EmptyResults/__tests__/__snapshots__/EmptyResults.test.js.snap
|
146
|
+
- webpack/ForemanInventoryUpload/Components/AccountList/Components/EmptyResults/emptyResults.scss
|
147
|
+
- webpack/ForemanInventoryUpload/Components/AccountList/Components/EmptyResults/index.js
|
127
148
|
- webpack/ForemanInventoryUpload/Components/AccountList/Components/EmptyState/EmptyState.fixtures.js
|
128
149
|
- webpack/ForemanInventoryUpload/Components/AccountList/Components/EmptyState/EmptyState.js
|
129
150
|
- webpack/ForemanInventoryUpload/Components/AccountList/Components/EmptyState/EmptyStateHelper.js
|
@@ -154,6 +175,7 @@ files:
|
|
154
175
|
- webpack/ForemanInventoryUpload/Components/AccountList/Components/ListItemStatus/listItemStatus.scss
|
155
176
|
- webpack/ForemanInventoryUpload/Components/AccountList/__tests__/AccountList.test.js
|
156
177
|
- webpack/ForemanInventoryUpload/Components/AccountList/__tests__/AccountListActions.test.js
|
178
|
+
- webpack/ForemanInventoryUpload/Components/AccountList/__tests__/AccountListHelper.test.js
|
157
179
|
- webpack/ForemanInventoryUpload/Components/AccountList/__tests__/AccountListIntegration.test.js
|
158
180
|
- webpack/ForemanInventoryUpload/Components/AccountList/__tests__/AccountListReducer.test.js
|
159
181
|
- webpack/ForemanInventoryUpload/Components/AccountList/__tests__/AccountListSelectors.test.js
|
@@ -163,6 +185,16 @@ files:
|
|
163
185
|
- webpack/ForemanInventoryUpload/Components/AccountList/__tests__/__snapshots__/AccountListSelectors.test.js.snap
|
164
186
|
- webpack/ForemanInventoryUpload/Components/AccountList/accountList.scss
|
165
187
|
- webpack/ForemanInventoryUpload/Components/AccountList/index.js
|
188
|
+
- webpack/ForemanInventoryUpload/Components/AutoUploadSwitcher/AutoUploadSwitcher.fixtures.js
|
189
|
+
- webpack/ForemanInventoryUpload/Components/AutoUploadSwitcher/AutoUploadSwitcher.js
|
190
|
+
- webpack/ForemanInventoryUpload/Components/AutoUploadSwitcher/AutoUploadSwitcherActions.js
|
191
|
+
- webpack/ForemanInventoryUpload/Components/AutoUploadSwitcher/AutoUploadSwitcherConstants.js
|
192
|
+
- webpack/ForemanInventoryUpload/Components/AutoUploadSwitcher/__tests__/AutoUploadSwitcher.test.js
|
193
|
+
- webpack/ForemanInventoryUpload/Components/AutoUploadSwitcher/__tests__/AutoUploadSwitcherActions.test.js
|
194
|
+
- webpack/ForemanInventoryUpload/Components/AutoUploadSwitcher/__tests__/__snapshots__/AutoUploadSwitcher.test.js.snap
|
195
|
+
- webpack/ForemanInventoryUpload/Components/AutoUploadSwitcher/__tests__/__snapshots__/AutoUploadSwitcherActions.test.js.snap
|
196
|
+
- webpack/ForemanInventoryUpload/Components/AutoUploadSwitcher/autoUploadSwitcher.scss
|
197
|
+
- webpack/ForemanInventoryUpload/Components/AutoUploadSwitcher/index.js
|
166
198
|
- webpack/ForemanInventoryUpload/Components/Dashboard/Dashboard.fixtures.js
|
167
199
|
- webpack/ForemanInventoryUpload/Components/Dashboard/Dashboard.js
|
168
200
|
- webpack/ForemanInventoryUpload/Components/Dashboard/Dashboard.stories.js
|
@@ -196,6 +228,41 @@ files:
|
|
196
228
|
- webpack/ForemanInventoryUpload/Components/FullScreenModal/__tests__/__snapshots__/FullScreenModal.test.js.snap
|
197
229
|
- webpack/ForemanInventoryUpload/Components/FullScreenModal/fullScreenModal.scss
|
198
230
|
- webpack/ForemanInventoryUpload/Components/FullScreenModal/index.js
|
231
|
+
- webpack/ForemanInventoryUpload/Components/HostObfuscationSwitcher/HostObfuscationSwitcher.fixtures.js
|
232
|
+
- webpack/ForemanInventoryUpload/Components/HostObfuscationSwitcher/HostObfuscationSwitcher.js
|
233
|
+
- webpack/ForemanInventoryUpload/Components/HostObfuscationSwitcher/HostObfuscationSwitcherActions.js
|
234
|
+
- webpack/ForemanInventoryUpload/Components/HostObfuscationSwitcher/HostObfuscationSwitcherConstants.js
|
235
|
+
- webpack/ForemanInventoryUpload/Components/HostObfuscationSwitcher/__tests__/HostObfuscationSwitcher.test.js
|
236
|
+
- webpack/ForemanInventoryUpload/Components/HostObfuscationSwitcher/__tests__/HostObfuscationSwitcherActions.test.js
|
237
|
+
- webpack/ForemanInventoryUpload/Components/HostObfuscationSwitcher/__tests__/__snapshots__/HostObfuscationSwitcher.test.js.snap
|
238
|
+
- webpack/ForemanInventoryUpload/Components/HostObfuscationSwitcher/__tests__/__snapshots__/HostObfuscationSwitcherActions.test.js.snap
|
239
|
+
- webpack/ForemanInventoryUpload/Components/HostObfuscationSwitcher/hostObfuscationSwitcher.scss
|
240
|
+
- webpack/ForemanInventoryUpload/Components/HostObfuscationSwitcher/index.js
|
241
|
+
- webpack/ForemanInventoryUpload/Components/InventoryFilter/Components/ClearButton/ClearButton.js
|
242
|
+
- webpack/ForemanInventoryUpload/Components/InventoryFilter/Components/ClearButton/index.js
|
243
|
+
- webpack/ForemanInventoryUpload/Components/InventoryFilter/InventoryFilter.fixtures.js
|
244
|
+
- webpack/ForemanInventoryUpload/Components/InventoryFilter/InventoryFilter.js
|
245
|
+
- webpack/ForemanInventoryUpload/Components/InventoryFilter/InventoryFilterActions.js
|
246
|
+
- webpack/ForemanInventoryUpload/Components/InventoryFilter/InventoryFilterConstants.js
|
247
|
+
- webpack/ForemanInventoryUpload/Components/InventoryFilter/InventoryFilterReducer.js
|
248
|
+
- webpack/ForemanInventoryUpload/Components/InventoryFilter/InventoryFilterSelectors.js
|
249
|
+
- webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/InventoryFilter.test.js
|
250
|
+
- webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/InventoryFilterActions.test.js
|
251
|
+
- webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/InventoryFilterReducer.test.js
|
252
|
+
- webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/InventoryFilterSelectors.test.js
|
253
|
+
- webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/__snapshots__/InventoryFilter.test.js.snap
|
254
|
+
- webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/__snapshots__/InventoryFilterActions.test.js.snap
|
255
|
+
- webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/__snapshots__/InventoryFilterReducer.test.js.snap
|
256
|
+
- webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/__snapshots__/InventoryFilterSelectors.test.js.snap
|
257
|
+
- webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/__snapshots__/integration.test.js.snap
|
258
|
+
- webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/integration.test.js
|
259
|
+
- webpack/ForemanInventoryUpload/Components/InventoryFilter/index.js
|
260
|
+
- webpack/ForemanInventoryUpload/Components/InventoryFilter/inventoryFilter.scss
|
261
|
+
- webpack/ForemanInventoryUpload/Components/InventorySettings/InventorySettings.js
|
262
|
+
- webpack/ForemanInventoryUpload/Components/InventorySettings/__tests__/InventorySettings.test.js
|
263
|
+
- webpack/ForemanInventoryUpload/Components/InventorySettings/__tests__/__snapshots__/InventorySettings.test.js.snap
|
264
|
+
- webpack/ForemanInventoryUpload/Components/InventorySettings/index.js
|
265
|
+
- webpack/ForemanInventoryUpload/Components/InventorySettings/inventorySettings.scss
|
199
266
|
- webpack/ForemanInventoryUpload/Components/NavContainer/NavContainer.fixtures.js
|
200
267
|
- webpack/ForemanInventoryUpload/Components/NavContainer/NavContainer.js
|
201
268
|
- webpack/ForemanInventoryUpload/Components/NavContainer/NavContainerHelper.js
|
@@ -203,6 +270,28 @@ files:
|
|
203
270
|
- webpack/ForemanInventoryUpload/Components/NavContainer/__tests__/__snapshots__/NavContainer.test.js.snap
|
204
271
|
- webpack/ForemanInventoryUpload/Components/NavContainer/index.js
|
205
272
|
- webpack/ForemanInventoryUpload/Components/NavContainer/navContainer.scss
|
273
|
+
- webpack/ForemanInventoryUpload/Components/PageHeader/PageHeader.js
|
274
|
+
- webpack/ForemanInventoryUpload/Components/PageHeader/__tests__/PageHeader.test.js
|
275
|
+
- webpack/ForemanInventoryUpload/Components/PageHeader/__tests__/__snapshots__/PageHeader.test.js.snap
|
276
|
+
- webpack/ForemanInventoryUpload/Components/PageHeader/components/DocsButton/DocsButton.js
|
277
|
+
- webpack/ForemanInventoryUpload/Components/PageHeader/components/DocsButton/__tests__/DocsButton.test.js
|
278
|
+
- webpack/ForemanInventoryUpload/Components/PageHeader/components/DocsButton/__tests__/__snapshots__/DocsButton.test.js.snap
|
279
|
+
- webpack/ForemanInventoryUpload/Components/PageHeader/components/DocsButton/index.js
|
280
|
+
- webpack/ForemanInventoryUpload/Components/PageHeader/components/HistoryButton/HistoryButton.js
|
281
|
+
- webpack/ForemanInventoryUpload/Components/PageHeader/components/HistoryButton/__tests__/HistoryButton.test.js
|
282
|
+
- webpack/ForemanInventoryUpload/Components/PageHeader/components/HistoryButton/__tests__/__snapshots__/HistoryButton.test.js.snap
|
283
|
+
- webpack/ForemanInventoryUpload/Components/PageHeader/components/HistoryButton/index.js
|
284
|
+
- webpack/ForemanInventoryUpload/Components/PageHeader/components/PageDescription/PageDescription.js
|
285
|
+
- webpack/ForemanInventoryUpload/Components/PageHeader/components/PageDescription/__tests__/PageDescription.test.js
|
286
|
+
- webpack/ForemanInventoryUpload/Components/PageHeader/components/PageDescription/__tests__/__snapshots__/PageDescription.test.js.snap
|
287
|
+
- webpack/ForemanInventoryUpload/Components/PageHeader/components/PageDescription/index.js
|
288
|
+
- webpack/ForemanInventoryUpload/Components/PageHeader/components/ToolbarButtons/ToolbarButtons.js
|
289
|
+
- webpack/ForemanInventoryUpload/Components/PageHeader/components/ToolbarButtons/__tests__/ToolbarButtons.test.js
|
290
|
+
- webpack/ForemanInventoryUpload/Components/PageHeader/components/ToolbarButtons/__tests__/__snapshots__/ToolbarButtons.test.js.snap
|
291
|
+
- webpack/ForemanInventoryUpload/Components/PageHeader/components/ToolbarButtons/index.js
|
292
|
+
- webpack/ForemanInventoryUpload/Components/PageHeader/components/ToolbarButtons/toolbarButtons.scss
|
293
|
+
- webpack/ForemanInventoryUpload/Components/PageHeader/index.js
|
294
|
+
- webpack/ForemanInventoryUpload/Components/PageHeader/pageHeader.scss
|
206
295
|
- webpack/ForemanInventoryUpload/Components/ReportGenerate/ReportGenerate.fixtures.js
|
207
296
|
- webpack/ForemanInventoryUpload/Components/ReportGenerate/ReportGenerate.js
|
208
297
|
- webpack/ForemanInventoryUpload/Components/ReportGenerate/ReportGenerateHelper.js
|
@@ -266,15 +355,40 @@ files:
|
|
266
355
|
- webpack/ForemanInventoryUpload/Components/Terminal/__tests__/__snapshots__/Terminal.test.js.snap
|
267
356
|
- webpack/ForemanInventoryUpload/Components/Terminal/index.js
|
268
357
|
- webpack/ForemanInventoryUpload/Components/Terminal/terminal.scss
|
358
|
+
- webpack/ForemanInventoryUpload/ForemanInventoryConstants.js
|
359
|
+
- webpack/ForemanInventoryUpload/ForemanInventoryHelpers.js
|
269
360
|
- webpack/ForemanInventoryUpload/ForemanInventoryUpload.js
|
270
|
-
- webpack/ForemanInventoryUpload/ForemanInventoryUpload.test.js
|
271
361
|
- webpack/ForemanInventoryUpload/ForemanInventoryUploadReducers.js
|
272
|
-
- webpack/ForemanInventoryUpload/
|
273
|
-
- webpack/ForemanInventoryUpload/
|
362
|
+
- webpack/ForemanInventoryUpload/SubscriptionsPageExtension/SubscriptionsPageExtensionActions.js
|
363
|
+
- webpack/ForemanInventoryUpload/__tests__/ForemanInventoryHelpers.test.js
|
364
|
+
- webpack/ForemanInventoryUpload/__tests__/ForemanInventoryUpload.test.js
|
365
|
+
- webpack/ForemanInventoryUpload/__tests__/__snapshots__/ForemanInventoryHelpers.test.js.snap
|
366
|
+
- webpack/ForemanInventoryUpload/__tests__/__snapshots__/ForemanInventoryUpload.test.js.snap
|
274
367
|
- webpack/ForemanInventoryUpload/index.js
|
368
|
+
- webpack/ForemanRhCloudHelpers.js
|
369
|
+
- webpack/ForemanRhCloudReducers.js
|
370
|
+
- webpack/ForemanRhCloudSelectors.js
|
371
|
+
- webpack/ForemanRhCloudTestHelpers.js
|
372
|
+
- webpack/InsightsCloudSync/InsightsCloudSync.js
|
373
|
+
- webpack/InsightsCloudSync/InsightsCloudSync.test.js
|
374
|
+
- webpack/InsightsCloudSync/InsightsCloudSyncActions.js
|
375
|
+
- webpack/InsightsCloudSync/InsightsCloudSyncConstants.js
|
376
|
+
- webpack/InsightsCloudSync/InsightsCloudSyncHelpers.js
|
377
|
+
- webpack/InsightsCloudSync/InsightsCloudSyncReducers.js
|
378
|
+
- webpack/InsightsCloudSync/__snapshots__/InsightsCloudSync.test.js.snap
|
379
|
+
- webpack/InsightsCloudSync/__tests__/InsightsCloudSyncHelpers.test.js
|
380
|
+
- webpack/InsightsCloudSync/__tests__/__snapshots__/InsightsCloudSyncHelpers.test.js.snap
|
381
|
+
- webpack/InsightsCloudSync/index.js
|
275
382
|
- webpack/__mocks__/foremanReact/API.js
|
276
383
|
- webpack/__mocks__/foremanReact/common/I18n.js
|
277
384
|
- webpack/__mocks__/foremanReact/common/helpers.js
|
385
|
+
- webpack/__mocks__/foremanReact/components/Layout/LayoutConstants.js
|
386
|
+
- webpack/__tests__/ForemanRhCloudHelpers.test.js
|
387
|
+
- webpack/__tests__/ForemanRhCloudSelectors.test.js
|
388
|
+
- webpack/__tests__/ForemanRhCloudTestHelpers.test.js
|
389
|
+
- webpack/__tests__/__snapshots__/ForemanRhCloudHelpers.test.js.snap
|
390
|
+
- webpack/__tests__/__snapshots__/ForemanRhCloudSelectors.test.js.snap
|
391
|
+
- webpack/__tests__/__snapshots__/ForemanRhCloudTestHelpers.test.js.snap
|
278
392
|
- webpack/index.js
|
279
393
|
- webpack/stories/ForemanInventoryUploadReducers.js
|
280
394
|
- webpack/stories/configureStore.js
|
@@ -282,6 +396,7 @@ files:
|
|
282
396
|
- webpack/stories/decorators/withCardsDecorator.js
|
283
397
|
- webpack/stories/index.js
|
284
398
|
- webpack/stories/index.scss
|
399
|
+
- webpack/subscriptions_extension_index.js
|
285
400
|
- webpack/test_setup.js
|
286
401
|
homepage: https://github.com/theforeman/foreman_rh_cloud
|
287
402
|
licenses:
|
@@ -311,8 +426,10 @@ test_files:
|
|
311
426
|
- test/controllers/accounts_controller_test.rb
|
312
427
|
- test/controllers/reports_controller_test.rb
|
313
428
|
- test/test_plugin_helper.rb
|
429
|
+
- test/jobs/insights_full_sync_test.rb
|
314
430
|
- test/factories/inventory_upload_factories.rb
|
315
431
|
- test/unit/shell_process_job_test.rb
|
316
432
|
- test/unit/metadata_generator_test.rb
|
433
|
+
- test/unit/fact_helpers_test.rb
|
317
434
|
- test/unit/archived_report_generator_test.rb
|
318
435
|
- test/unit/slice_generator_test.rb
|