X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/5bf94d55b564bfbd052a61ab8219aa063b2a80c6..edcdf0ae72c56bf4aa05f93ed2877faa3a5e75c4:/services/workbench2/src/views/process-panel/process-io-card.test.tsx?ds=inline diff --git a/services/workbench2/src/views/process-panel/process-io-card.test.tsx b/services/workbench2/src/views/process-panel/process-io-card.test.tsx index c0feead398..33dea66e46 100644 --- a/services/workbench2/src/views/process-panel/process-io-card.test.tsx +++ b/services/workbench2/src/views/process-panel/process-io-card.test.tsx @@ -14,11 +14,15 @@ import { DefaultView } from "components/default-view/default-view"; import { DefaultVirtualCodeSnippet } from "components/default-code-snippet/default-virtual-code-snippet"; import { ProcessOutputCollectionFiles } from './process-output-collection-files'; import { MemoryRouter } from 'react-router-dom'; +import { CopyIcon } from 'components/icon/icon'; +import copy from 'copy-to-clipboard'; // Mock collection files component since it just needs to exist jest.mock('views/process-panel/process-output-collection-files'); // Mock autosizer for the io panel virtual list jest.mock('react-virtualized-auto-sizer', () => ({ children }: any) => children({ height: 600, width: 600 })); +// Mock copy to clipboard +jest.mock('copy-to-clipboard'); configure({ adapter: new Adapter() }); @@ -92,7 +96,7 @@ describe('renderers', () => { expect(panel.find(DefaultView).text()).toEqual('No parameters found'); }); - it('shows main process with raw', () => { + it('shows main process with raw and allows copying json', () => { // when const raw = {some: 'data'}; let panel = mount( @@ -112,6 +116,10 @@ describe('renderers', () => { expect(panel.find(CircularProgress).exists()).toBeFalsy(); expect(panel.find(Tab).length).toBe(1); expect(panel.find(DefaultVirtualCodeSnippet).text()).toContain(JSON.stringify(raw, null, 2).replace(/\n/g, '')); + + // when + panel.find(CopyIcon).simulate('click'); + expect(copy).toHaveBeenCalledWith(JSON.stringify(raw, null, 2), undefined); }); it('shows main process with params', () => { @@ -138,6 +146,36 @@ describe('renderers', () => { expect(panel.find(TableBody).text()).toContain('someValue'); }); + it('shows main process with output collection', () => { + // when + const outputCollection = '987654321'; + const parameters = [{id: 'someId', label: 'someLabel', value: {display: 'someValue'}}]; + let panel = mount( + + + + + + ); + + // then + expect(panel.find(CircularProgress).exists()).toBeFalsy(); + expect(panel.find(Tab).length).toBe(3); // Empty raw is shown if parameters are present + expect(panel.find(TableBody).text()).toContain('someId'); + expect(panel.find(TableBody).text()).toContain('someLabel'); + expect(panel.find(TableBody).text()).toContain('someValue'); + + // Visit output tab + panel.find(Tab).at(2).simulate('click'); + expect(panel.find(ProcessOutputCollectionFiles).prop('currentItemUuid')).toBe(outputCollection); + }); + // Subprocess it('shows subprocess loading', () => {